Skip to content

Commit

Permalink
bug fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
tmori committed Sep 29, 2024
1 parent 4321e51 commit d696c60
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion installer/common/build.bash
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ then
mkdir -p cmake-build
fi
source setup.bash
echo "DYLD_LIBRARY_PATH: $DYLD_LIBRARY_PATH"
if [ `uname` = "Darwin" ]
then
echo "DYLD_LIBRARY_PATH: $DYLD_LIBRARY_PATH"
else
echo "LD_LIBRARY_PATH: $LD_LIBRARY_PATH"
fi
cd cmake-build
cmake ..
make

0 comments on commit d696c60

Please sign in to comment.