Skip to content

Commit

Permalink
Merge pull request #3453 from yhoogstrate/minor_fix_WSL_compilation
Browse files Browse the repository at this point in the history
small fix to PATH exporting in source_me.sh needed to compile at WSL 1.0
  • Loading branch information
adamnovak authored Nov 8, 2021
2 parents 524b407 + fce3378 commit 461ec06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source_me.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export LD_INCLUDE_PATH=`pwd`/include:$LD_INCLUDE_PATH
# We leave the Makefile in charge of finding all the include directories.
export CFLAGS="-I $(pwd)/include ${CFLAGS}"
export CXXFLAGS="-I $(pwd)/include -I$(pwd)/include/dynamic ${CXXFLAGS}"
export PATH=`pwd`/bin:`pwd`/scripts:$PATH
export PATH=`pwd`/bin:`pwd`/scripts:"$PATH"
export CC=$(which gcc)
export CXX=$(which g++)

Expand Down

1 comment on commit 461ec06

@adamnovak
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

vg CI tests complete for merge to master. View the full report here.

16 tests passed, 0 tests failed and 0 tests skipped in 10983 seconds

Please sign in to comment.