Skip to content

Commit

Permalink
Fix creation of libopenlibm.so symlink (JuliaLang#29388)
Browse files Browse the repository at this point in the history
The $libdir/julia/libopenlibm.so symlink wasn't created with USE_SYSTEM_LIBM=0 USE_SYSTEM_OPENLIBM=1.
  • Loading branch information
nalimilan authored and vtjnash committed Oct 13, 2018
1 parent 3e303a5 commit 1a3c2ca
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -247,10 +247,8 @@ ifeq ($(USE_LLVM_SHLIB),1)
JL_PRIVATE_LIBS-$(USE_SYSTEM_LLVM) += libLLVM libLLVM-6
endif

ifeq ($(USE_SYSTEM_OPENLIBM),0)
ifeq ($(USE_SYSTEM_LIBM),0)
JL_PRIVATE_LIBS-0 += $(LIBMNAME)
endif
JL_PRIVATE_LIBS-$(USE_SYSTEM_OPENLIBM) += libopenlibm
endif

JL_PRIVATE_LIBS-$(USE_SYSTEM_BLAS) += $(LIBBLASNAME)
Expand Down

0 comments on commit 1a3c2ca

Please sign in to comment.