2009-02-02 14:44:46 +00:00
|
|
|
# define system dependent compiler flags
|
|
|
|
|
|
|
|
include(CheckCCompilerFlag)
|
|
|
|
|
|
|
|
if (UNIX AND NOT WIN32)
|
2009-07-21 11:10:09 +02:00
|
|
|
if (CMAKE_COMPILER_IS_GNUCC)
|
2009-09-01 11:03:48 +02:00
|
|
|
# add -Wconversion ?
|
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=gnu99 -pedantic -Wall -Wextra -Wshadow -Wmissing-prototypes -Wdeclaration-after-statement -Wunused -Wfloat-equal -Wpointer-arith -Wwrite-strings -Wformat-security -Wmissing-format-attribute")
|
2009-02-02 14:44:46 +00:00
|
|
|
|
2009-07-21 11:14:54 +02:00
|
|
|
# with -fPIC
|
|
|
|
check_c_compiler_flag("-fPIC" WITH_FPIC)
|
|
|
|
if (WITH_FPIC)
|
|
|
|
add_definitions(-fPIC)
|
|
|
|
endif (WITH_FPIC)
|
|
|
|
|
|
|
|
check_c_compiler_flag("-fstack-protector" WITH_STACK_PROTECTOR)
|
|
|
|
if (WITH_STACK_PROTECTOR)
|
|
|
|
add_definitions(-fstack-protector)
|
|
|
|
endif (WITH_STACK_PROTECTOR)
|
|
|
|
|
|
|
|
check_c_compiler_flag("-D_FORTIFY_SOURCE=2" WITH_FORTIFY_SOURCE)
|
|
|
|
if (WITH_FORTIFY_SOURCE)
|
|
|
|
add_definitions(-D_FORTIFY_SOURCE=2)
|
|
|
|
endif (WITH_FORTIFY_SOURCE)
|
2009-08-25 15:06:56 +02:00
|
|
|
|
2009-07-21 11:14:54 +02:00
|
|
|
endif (CMAKE_COMPILER_IS_GNUCC)
|
2009-10-02 20:16:17 +02:00
|
|
|
|
|
|
|
if (CMAKE_SIZEOF_VOID_P MATCHES "8")
|
|
|
|
# with large file support
|
|
|
|
execute_process(
|
|
|
|
COMMAND
|
|
|
|
getconf LFS64_CFLAGS
|
|
|
|
OUTPUT_VARIABLE
|
|
|
|
_lfs_CFLAGS
|
|
|
|
ERROR_QUIET
|
|
|
|
OUTPUT_STRIP_TRAILING_WHITESPACE
|
|
|
|
)
|
|
|
|
else (CMAKE_SIZEOF_VOID_P MATCHES "8")
|
|
|
|
# with large file support
|
|
|
|
execute_process(
|
|
|
|
COMMAND
|
|
|
|
getconf LFS_CFLAGS
|
|
|
|
OUTPUT_VARIABLE
|
|
|
|
_lfs_CFLAGS
|
|
|
|
ERROR_QUIET
|
|
|
|
OUTPUT_STRIP_TRAILING_WHITESPACE
|
|
|
|
)
|
|
|
|
endif (CMAKE_SIZEOF_VOID_P MATCHES "8")
|
2009-10-02 20:19:48 +02:00
|
|
|
if (_lfs_CFLAGS)
|
|
|
|
string(REGEX REPLACE "[\r\n]" " " "${_lfs_CFLAGS}" "${${_lfs_CFLAGS}}")
|
|
|
|
add_definitions(${_lfs_CFLAGS})
|
|
|
|
endif (_lfs_CFLAGS)
|
2009-10-02 20:16:17 +02:00
|
|
|
|
2009-02-02 14:44:46 +00:00
|
|
|
endif (UNIX AND NOT WIN32)
|
2009-08-11 15:36:37 +02:00
|
|
|
|
|
|
|
# suppress warning about "deprecated" functions
|
2009-08-25 15:06:56 +02:00
|
|
|
if (MSVC)
|
|
|
|
add_definitions(-D_CRT_SECURE_NO_WARNINGS)
|
|
|
|
endif (MSVC)
|