File tree 1 file changed +11
-2
lines changed
1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -180,8 +180,17 @@ if (C_CLANG OR C_GCC)
180
180
set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wvla -ffast-math -ftree-vectorize -D_GNU_SOURCE ${EXTRA_FLAGS} " )
181
181
#
182
182
#
183
- # for math.h
184
- link_libraries ("-lm" )
183
+ # -lm is needed for functins in math.h
184
+ if (LINUX)
185
+ # We have another problem with CentOS 6. clock_gettime() is in librt so we need -lrt.
186
+ # The clock_* functions were moved into gnu libc for version 2.17.
187
+ # https://sourceware.org/ml/libc-announce/2012/msg00001.html
188
+ # If using gnu libc 2.17, or later, the -lrt is no longer needed but doesn't hurt.
189
+ # I'm making this conditional on LINUX because it is not needed for BSD and MacOSX.
190
+ link_libraries ("-lrt -lm" )
191
+ else ()
192
+ link_libraries ("-lm" )
193
+ endif ()
185
194
elseif (C_MSVC)
186
195
set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -W3 -MP ${EXTRA_FLAGS} " )
187
196
endif ()
You can’t perform that action at this time.
0 commit comments