Skip to content

Commit

Permalink
hack around distutils madness
Browse files Browse the repository at this point in the history
  • Loading branch information
isuruf committed Mar 26, 2024
1 parent 239c6c4 commit 10fd0cd
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions recipe/build_openmm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ CMAKE_FLAGS+=" -DSWIG_EXECUTABLE=$(which swig)"
if [[ "$target_platform" == linux-* ]]; then
export LDFLAGS="$LDFLAGS -static-libstdc++ -Wl,--exclude-libs,ALL -Wl,-rpath,$ORIGIN/../OpenMM.libs/lib"
export CXXFLAGS="$CXXFLAGS -D_GLIBCXX_USE_CXX11_ABI=0"
# need this for distutils which uses the C compiler and CFLAGS
export CFLAGS="$CFLAGS -D_GLIBCXX_USE_CXX11_ABI=0"
elif [[ "$target_platform" == osx-* ]]; then
export LDFLAGS="$LDFLAGS -Wl,-rpath,@loader_path/../OpenMM.libs/lib -Wl,-rpath,@loader_path/."
fi
Expand Down

0 comments on commit 10fd0cd

Please sign in to comment.