@@ -151,15 +151,35 @@ endif()
151
151
152
152
if (C_CLANG OR C_GCC)
153
153
# _BSD_SOURCE is deprecated we need to use _DEFAULT_SOURCE.
154
- # That might be the case for a more modern compiler but it is still needed
155
- # for CentOS 6 & 7. Without -D_BSD_SOURCE, we get Warning: Implicit declaration of
154
+ #
155
+ # That works find for more modern compilers but we have issues with:
156
+ # Centos 7, gcc 4.8.5, glibc 2.17
157
+ # Centos 6, gcc 4.4.7, glibc 2.12
158
+ #
159
+ # CentOS 6 & 7: Without -D_BSD_SOURCE, we get Warning: Implicit declaration of
156
160
# functions alloca, cfmakeraw, scandir, setlinebuf, strcasecmp, strncasecmp, and strsep.
157
161
# When a function (like strsep) returns a pointer, the compiler instead assumes a 32 bit
158
162
# int and sign extends it out to be a 64 bit pointer. Use the pointer and Kaboom!
159
163
#
160
- ### Wextra spews out so much noise a serious problem was not noticed.
164
+ # CentOS 6: We have additional problem. Without -D_POSIX_C_SOURCE=199309L, we get
165
+ # implicit declaration of function clock_gettime and the linker can't find it.
166
+ #
167
+ # It turns out that -D_GNU_SOURCE can be used instead of both of those. For more information,
168
+ # see https://www.gnu.org/software/libc/manual/html_node/Feature-Test-Macros.html
169
+ #
170
+ # Why was this not an issue before? If gcc is used without the -std=c99 option,
171
+ # it is perfectly happy with clock_gettime, strsep, etc. but with the c99 option, it no longer
172
+ # recognizes a bunch of commonly used functions. Using _GNU_SOURCE, rather than _DEFAULT_SOURCE
173
+ # solves the problem for CentOS 6 & 7. This also makes -D_XOPEN_SOURCE= unnecessary.
174
+ # I hope it doesn't break with newer versions of glibc.
175
+ #
176
+ # I also took out -Wextra because it spews out so much noise a serious problem was not noticed.
177
+ # It might go back in someday when I have more patience to clean up all the warnings.
178
+ #
161
179
###set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -Wvla -ffast-math -ftree-vectorize -D_XOPEN_SOURCE=600 -D_DEFAULT_SOURCE ${EXTRA_FLAGS}")
162
- set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wvla -ffast-math -ftree-vectorize -D_XOPEN_SOURCE=600 -D_DEFAULT_SOURCE -D_BSD_SOURCE ${EXTRA_FLAGS} " )
180
+ set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wvla -ffast-math -ftree-vectorize -D_GNU_SOURCE ${EXTRA_FLAGS} " )
181
+ #
182
+ #
163
183
# for math.h
164
184
link_libraries ("-lm" )
165
185
elseif (C_MSVC)
0 commit comments