Changeset View
Changeset View
Standalone View
Standalone View
CMakeLists.txt
| Context not available. | |||||
| endif() | endif() | ||||
| endif() | endif() | ||||
| # musl-libc related checks (missing execinfo.h, and feenableexcept()) | |||||
| include(CheckIncludeFiles) | |||||
| check_include_files(execinfo.h HAVE_EXECINFO_H) | |||||
| if (HAVE_EXECINFO_H) | |||||
| add_definitions(-DHAVE_EXECINFO_H) | |||||
| endif() | |||||
| include(CheckLibraryExists) | |||||
| check_library_exists(m feenableexcept "fenv.h" HAVE_FEENABLEEXCEPT) | |||||
| if (HAVE_FEENABLEEXCEPT) | |||||
| add_definitions(-DHAVE_FEENABLEEXCEPT) | |||||
| endif() | |||||
| # See TEST_SSE_SUPPORT() for how this is defined. | # See TEST_SSE_SUPPORT() for how this is defined. | ||||
| # Do it globally, SSE2 is required for quite some time now. | # Do it globally, SSE2 is required for quite some time now. | ||||
| Context not available. | |||||