Compile with -fPIC so we can build shared libdcp with static openjp2.
authorCarl Hetherington <cth@carlh.net>
Fri, 1 Sep 2017 23:22:41 +0000 (19:22 -0400)
committerCarl Hetherington <cth@carlh.net>
Sun, 7 Jun 2020 22:36:06 +0000 (00:36 +0200)
CMakeLists.txt

index 3ea2424a402bf10c0ab98e160905685b5ac9c6e5..6625f217b2a9a076d29700d2c3f2a79d1bbf44e2 100644 (file)
@@ -196,7 +196,7 @@ if(CMAKE_COMPILER_IS_GNUCC)
   # For all builds, make sure openjpeg is std99 compliant:
   # set(CMAKE_C_FLAGS "-Wall -std=c99 ${CMAKE_C_FLAGS}") # FIXME: this setting prevented us from setting a coverage build.
   # Do not use ffast-math for all build, it would produce incorrect results, only set for release:
-  set(OPENJPEG_LIBRARY_COMPILE_OPTIONS ${OPENJPEG_LIBRARY_COMPILE_OPTIONS} "$<$<CONFIG:Release>:-ffast-math>")
+  SET(OPENJPEG_LIBRARY_COMPILE_OPTIONS ${OPENJPEG_LIBRARY_COMPILE_OPTIONS} "$<$<CONFIG:Release>:-ffast-math>" "-fPIC")
   set(OPENJP2_COMPILE_OPTIONS ${OPENJP2_COMPILE_OPTIONS} "$<$<CONFIG:Release>:-ffast-math>" -Wall -Wextra -Wconversion -Wunused-parameter -Wdeclaration-after-statement -Werror=declaration-after-statement)
 endif()