Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
cesar-douady committed Apr 18, 2024
1 parent e5c99d5 commit 061fae2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion _bin/sys_config
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ $CXX -v -o /dev/null -std=c++20 -xc++ -<<< "int main(){}" 2>compiler_info
if [ $CXX_FLAVOR = gcc ] ; then
LLP="$(grep LIBRARY_PATH= compiler_info)" # e.g. : LIBRARY_PATH=/usr/lib/x:/a/b:/c:/a/b/c/..
LLP="${LLP#LIBRARY_PATH=}" # e.g. : /usr/lib/x:/a/b:/c:/a/b/c/..
LLP="$(sed 's/:/ /' -<<< $LLP)" # e.g. : /usr/lib/x /a/b /c /a/b/c/..
LLP="$(sed 's/:/ /g' -<<< $LLP)" # e.g. : /usr/lib/x /a/b /c /a/b/c/..
elif [ $CXX_FLAVOR = clang ] ; then
set $(grep -- -L compiler_info)
while [ $# != 0 ] ; do
Expand Down
2 changes: 1 addition & 1 deletion unit_tests/bench.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import lmake
from lmake.rules import Rule,PyRule

gxx = 'clang'
gxx = os.environ.get('CXX','g++')

lmake.manifest = (
'Lmakefile.py'
Expand Down

0 comments on commit 061fae2

Please sign in to comment.