Skip to content

Commit b382e5f

Browse files
committed
Add -lrt to Linux link so it will work with CentOS 6.
1 parent 249f5bd commit b382e5f

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

CMakeLists.txt

+11-2
Original file line numberDiff line numberDiff line change
@@ -180,8 +180,17 @@ if (C_CLANG OR C_GCC)
180180
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wvla -ffast-math -ftree-vectorize -D_GNU_SOURCE ${EXTRA_FLAGS}")
181181
#
182182
#
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()
185194
elseif (C_MSVC)
186195
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -W3 -MP ${EXTRA_FLAGS}")
187196
endif()

0 commit comments

Comments
 (0)