ladybird/Meta/CMake/lagom_compile_options.cmake
Cameron Youell c5219b0193 CMake: Fix linker issues on Windows
Co-authored-by: Andrew Kaster <akaster@serenityos.org>
2024-10-19 18:14:48 -06:00

65 lines
1.7 KiB
CMake

include(${CMAKE_CURRENT_LIST_DIR}/common_compile_options.cmake)
add_cxx_compile_options(-Wno-maybe-uninitialized)
add_cxx_compile_options(-Wno-shorten-64-to-32)
if(NOT MSVC)
add_cxx_compile_options(-fsigned-char)
add_cxx_compile_options(-ggnu-pubnames)
else()
# char is signed
add_cxx_compile_options(/J)
# full symbolic debugginng information
add_cxx_compile_options(/Z7)
endif()
if (NOT WIN32)
add_cxx_compile_options(-fPIC)
endif()
if (LINUX)
add_compile_definitions(_FILE_OFFSET_BITS=64)
endif()
if (APPLE)
list(APPEND CMAKE_PREFIX_PATH /opt/homebrew)
endif()
if (CMAKE_BUILD_TYPE STREQUAL "Debug")
if (NOT MSVC)
add_cxx_compile_options(-ggdb3)
endif()
add_cxx_compile_options(-Og)
else()
add_cxx_compile_options(-O2)
if (NOT MSVC)
add_cxx_compile_options(-g1)
endif()
endif()
function(add_cxx_linker_flag_if_supported flag)
include(CheckLinkerFlag)
check_linker_flag(CXX ${flag} LAGOM_LINKER_SUPPORTS_${flag})
if (${LAGOM_LINKER_SUPPORTS_${flag}})
add_cxx_link_options(${flag})
endif()
endfunction()
if (NOT WIN32)
add_cxx_linker_flag_if_supported(LINKER:--gdb-index)
if (NOT ENABLE_FUZZERS)
add_cxx_linker_flag_if_supported(LINKER:-Bsymbolic-non-weak-functions)
endif()
endif()
if (ENABLE_LAGOM_COVERAGE_COLLECTION)
if (CMAKE_CXX_COMPILER_ID MATCHES "Clang$" AND NOT ENABLE_FUZZERS)
add_cxx_compile_options(-fprofile-instr-generate -fcoverage-mapping)
add_cxx_link_options(-fprofile-instr-generate)
else()
message(FATAL_ERROR
"Collecting code coverage is unsupported in this configuration.")
endif()
endif()