We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 917ffaf commit 5d2f65fCopy full SHA for 5d2f65f
1 file changed
src/inserts/generate.cmake
@@ -7,7 +7,9 @@ endif()
7
8
# CPPAN_BUILD_SHARED_LIBS has influence on config vars
9
if (EXECUTABLE)
10
- if (NINJA)
+ # on ninja shared libs do not work (reason is lost)
11
+ # on unix the issue is with wrong RPATH, so executables can not load their dependent .so libs
12
+ if (NINJA OR UNIX)
13
# TODO: try to work 0->1 <- why? maybe left as is?
14
set(CPPAN_BUILD_SHARED_LIBS 0)
15
endif()
0 commit comments