nextcloud-desktop/cmake/Modules/DefineCompilerFlags.cmake

64 lines
2.1 KiB
CMake
Raw Normal View History

2008-02-27 20:56:47 +03:00
# define system dependent compiler flags
2008-06-03 13:00:50 +04:00
include(CheckCCompilerFlag)
2011-10-17 21:07:52 +04:00
include(MacroCheckCCompilerFlagSSP)
2008-02-27 20:56:47 +03:00
if (UNIX AND NOT WIN32)
2011-10-17 21:07:52 +04:00
#
# Define GNUCC compiler flags
#
if (${CMAKE_C_COMPILER_ID} MATCHES GNU)
# add -Wconversion ?
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=gnu99 -pedantic -pedantic-errors")
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -Wshadow -Wmissing-prototypes -Wdeclaration-after-statement")
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wunused -Wfloat-equal -Wpointer-arith -Wwrite-strings -Wformat-security")
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wmissing-format-attribute")
# with -fPIC
check_c_compiler_flag("-fPIC" WITH_FPIC)
if (WITH_FPIC)
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fPIC")
endif (WITH_FPIC)
check_c_compiler_flag_ssp("-fstack-protector" WITH_STACK_PROTECTOR)
if (WITH_STACK_PROTECTOR)
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fstack-protector")
endif (WITH_STACK_PROTECTOR)
check_c_compiler_flag("-D_FORTIFY_SOURCE=2" WITH_FORTIFY_SOURCE)
if (WITH_FORTIFY_SOURCE)
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -D_FORTIFY_SOURCE=2")
endif (WITH_FORTIFY_SOURCE)
endif (${CMAKE_C_COMPILER_ID} MATCHES GNU)
#
# Check for large filesystem support
#
2009-09-12 14:26:09 +04:00
if (CMAKE_SIZEOF_VOID_P MATCHES "8")
2011-10-17 21:07:52 +04:00
# with large file support
execute_process(
COMMAND
getconf LFS64_CFLAGS
OUTPUT_VARIABLE
_lfs_CFLAGS
ERROR_QUIET
OUTPUT_STRIP_TRAILING_WHITESPACE
)
2009-09-12 14:26:09 +04:00
else (CMAKE_SIZEOF_VOID_P MATCHES "8")
2011-10-17 21:07:52 +04:00
# with large file support
execute_process(
COMMAND
getconf LFS_CFLAGS
OUTPUT_VARIABLE
_lfs_CFLAGS
ERROR_QUIET
OUTPUT_STRIP_TRAILING_WHITESPACE
)
2009-09-12 14:26:09 +04:00
endif (CMAKE_SIZEOF_VOID_P MATCHES "8")
2011-10-17 21:07:52 +04:00
if (_lfs_CFLAGS)
string(REGEX REPLACE "[\r\n]" " " "${_lfs_CFLAGS}" "${${_lfs_CFLAGS}}")
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${_lfs_CFLAGS}")
endif (_lfs_CFLAGS)
2009-09-12 14:26:09 +04:00
2008-02-27 20:56:47 +03:00
endif (UNIX AND NOT WIN32)