Cloudy & Associates
Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
cloudy
cloudy
Commits
07b3b2f3
Commit
07b3b2f3
authored
Oct 08, 2022
by
Chatzikos, Marios
Browse files
Merge branch 'programs' into 'master'
Fix bug in run_programs.pl See merge request
!44
parents
59441169
08852ac2
Changes
1
Hide whitespace changes
Inline
Side-by-side
tsuite/programs/run_programs.pl
View file @
07b3b2f3
...
...
@@ -27,9 +27,9 @@ if( ! -d "$DirObject" )
}
# now determine the compiler and flags to use by polling make
$cxx
=
`
cd
$DirObject
; make echo-cxx | egrep -v '^make'
`;
$cxx
=
`
cd
$DirObject
; make echo-cxx | egrep -v '^make'
| tail -n 1
`;
chomp
(
$cxx
);
$cxxflags
=
`
cd
$DirObject
; make echo-cxxflags | egrep -v '^make'
`;
$cxxflags
=
`
cd
$DirObject
; make echo-cxxflags | egrep -v '^make'
| tail -n 1
`;
chomp
(
$cxxflags
);
# escape double quotes
$cxxflags
=~
s/"/\\"/g
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment