mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-06 13:45:00 +00:00
In order to cover the largest number of glibc and musl libc versions, withouth warnings, the decision here is to use `_GNU_SOURCE`, even if it enables a larger than necessary feature set. A feature macro is needed, because otherwise the `check_c_source_compiles` for `HAVE_SYSCALL_GETRANDOM` fails in cases when for example the default compiler flags include `-std=c99`: ```` src.c:6:13: error: implicit declaration of function ‘syscall’ [-Wimplicit-function-declaration] 6 | syscall(SYS_getrandom, NULL, 0, 0); | ^~~~~~~ ```` But this check should pass, as `SYS_getrandom` is available, only the declaration of `syscall` in `unistd.h` is conditional behind a macro. The exact minimal public macros, for enabling this are in `features.h`, and are version dependent. According to [5.04]( https://mirrors.edge.kernel.org/pub/linux/docs/man-pages/Archive/man-pages-5.04.tar.gz) and older versions of the `man 2 syscall` page, the recommended feature test macro is `_GNU_SOURCE`. Later on in [5.05]( https://mirrors.edge.kernel.org/pub/linux/docs/man-pages/Archive/man-pages-5.05.tar.gz) this statement has changed, to provide a smaller minimal feature set. Namely up to `glibc 2.18` is `_BSD_SOURCE || _SVID_SOURCE`, but after that the `_DEFAULT_SOURCE` is recommended, and `_BSD_SOURCE || _SVID_SOURCE` is deprecated, and emits warning in later versions. Regardless of that the `_GNU_SOURCE` is still fully supported in every version and is suitable for our purposes. The musl libc doesn't use `_SVID_SOURCE` at all, but `_BSD_SOURCE` always works, plus in some newer versions `_DEFAULT_SOURCE` also sets `_BSD_SOURCE`, but `_GNU_SOURCE` covers the largest set of versions and is unlikely to be deprecated in the future. Further info about feature test macros: In glibc: https://www.gnu.org/software/libc/manual/html_node/Feature-Test-Macros.html In musl libc under the `Feature Test Macros Supported by musl` section: https://musl.libc.org/doc/1.1.24/manual.html Signed-off-by: Ferenc Géczi <ferenc.gm@gmail.com>
76 lines
2.3 KiB
CMake
76 lines
2.3 KiB
CMake
include(CheckCCompilerFlag)
|
|
include(CheckCSourceCompiles)
|
|
include(CheckIncludeFile)
|
|
include(CheckIncludeFiles)
|
|
include(CheckLibraryExists)
|
|
include(CheckSymbolExists)
|
|
include(TestBigEndian)
|
|
|
|
check_include_file("dlfcn.h" HAVE_DLFCN_H)
|
|
check_include_file("fcntl.h" HAVE_FCNTL_H)
|
|
check_include_file("inttypes.h" HAVE_INTTYPES_H)
|
|
check_include_file("memory.h" HAVE_MEMORY_H)
|
|
check_include_file("stdint.h" HAVE_STDINT_H)
|
|
check_include_file("stdlib.h" HAVE_STDLIB_H)
|
|
check_include_file("strings.h" HAVE_STRINGS_H)
|
|
check_include_file("string.h" HAVE_STRING_H)
|
|
check_include_file("sys/stat.h" HAVE_SYS_STAT_H)
|
|
check_include_file("sys/types.h" HAVE_SYS_TYPES_H)
|
|
check_include_file("unistd.h" HAVE_UNISTD_H)
|
|
|
|
check_symbol_exists("getpagesize" "unistd.h" HAVE_GETPAGESIZE)
|
|
check_symbol_exists("mmap" "sys/mman.h" HAVE_MMAP)
|
|
check_symbol_exists("getrandom" "sys/random.h" HAVE_GETRANDOM)
|
|
|
|
if(EXPAT_WITH_LIBBSD)
|
|
set(CMAKE_REQUIRED_LIBRARIES "${LIB_BSD}")
|
|
set(_bsd "bsd/")
|
|
else()
|
|
set(_bsd "")
|
|
endif()
|
|
check_symbol_exists("arc4random_buf" "${_bsd}stdlib.h" HAVE_ARC4RANDOM_BUF)
|
|
if(NOT HAVE_ARC4RANDOM_BUF)
|
|
check_symbol_exists("arc4random" "${_bsd}stdlib.h" HAVE_ARC4RANDOM)
|
|
endif()
|
|
set(CMAKE_REQUIRED_LIBRARIES)
|
|
|
|
#/* Define to 1 if you have the ANSI C header files. */
|
|
check_include_files("stdlib.h;stdarg.h;string.h;float.h" STDC_HEADERS)
|
|
|
|
test_big_endian(WORDS_BIGENDIAN)
|
|
#/* 1234 = LIL_ENDIAN, 4321 = BIGENDIAN */
|
|
if(WORDS_BIGENDIAN)
|
|
set(BYTEORDER 4321)
|
|
else(WORDS_BIGENDIAN)
|
|
set(BYTEORDER 1234)
|
|
endif(WORDS_BIGENDIAN)
|
|
|
|
if(HAVE_SYS_TYPES_H)
|
|
check_c_source_compiles("
|
|
#include <sys/types.h>
|
|
int main(void) {
|
|
const off_t offset = -123;
|
|
return 0;
|
|
}"
|
|
HAVE_OFF_T)
|
|
endif()
|
|
|
|
if(NOT HAVE_OFF_T)
|
|
set(off_t "long")
|
|
endif()
|
|
|
|
check_c_source_compiles("
|
|
#define _GNU_SOURCE
|
|
#include <stdlib.h> /* for NULL */
|
|
#include <unistd.h> /* for syscall */
|
|
#include <sys/syscall.h> /* for SYS_getrandom */
|
|
int main(void) {
|
|
syscall(SYS_getrandom, NULL, 0, 0);
|
|
return 0;
|
|
}"
|
|
HAVE_SYSCALL_GETRANDOM)
|
|
|
|
check_c_compiler_flag("-fno-strict-aliasing" FLAG_NO_STRICT_ALIASING)
|
|
check_c_compiler_flag("-fvisibility=hidden" FLAG_VISIBILITY)
|
|
|
|
check_library_exists(m cos "" _EXPAT_LIBM_FOUND)
|