mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
Toolchain: Add platform definition for CMake
This also ensures that pkg-config finds packages in /usr/local and changes the install prefix to /usr/local.
This commit is contained in:
parent
73dd293ec4
commit
c6c1e2037b
Notes:
sideshowbarker
2024-07-18 20:16:16 +09:00
Author: https://github.com/gunnarbeutner Commit: https://github.com/SerenityOS/serenity/commit/c6c1e2037b8 Pull-request: https://github.com/SerenityOS/serenity/pull/6365 Reviewed-by: https://github.com/awesomekling
2 changed files with 25 additions and 1 deletions
18
Toolchain/CMake/Platform/SerenityOS.cmake
Normal file
18
Toolchain/CMake/Platform/SerenityOS.cmake
Normal file
|
@ -0,0 +1,18 @@
|
|||
set(CMAKE_DL_LIBS "dl")
|
||||
set(CMAKE_SHARED_LIBRARY_RUNTIME_C_FLAG "-Wl,-rpath,")
|
||||
set(CMAKE_SHARED_LIBRARY_RUNTIME_C_FLAG_SEP ":")
|
||||
set(CMAKE_SHARED_LIBRARY_RPATH_ORIGIN_TOKEN "\$ORIGIN")
|
||||
set(CMAKE_SHARED_LIBRARY_RPATH_LINK_C_FLAG "-Wl,-rpath-link,")
|
||||
set(CMAKE_SHARED_LIBRARY_SONAME_C_FLAG "-Wl,-soname,")
|
||||
set(CMAKE_EXE_EXPORTS_C_FLAG "-Wl,--export-dynamic")
|
||||
|
||||
# Initialize C link type selection flags. These flags are used when
|
||||
# building a shared library, shared module, or executable that links
|
||||
# to other libraries to select whether to use the static or shared
|
||||
# versions of the libraries.
|
||||
foreach(type SHARED_LIBRARY SHARED_MODULE EXE)
|
||||
set(CMAKE_${type}_LINK_STATIC_C_FLAGS "-Wl,-Bstatic")
|
||||
set(CMAKE_${type}_LINK_DYNAMIC_C_FLAGS "-Wl,-Bdynamic")
|
||||
endforeach()
|
||||
|
||||
include(Platform/UnixPaths)
|
|
@ -1,4 +1,4 @@
|
|||
set(CMAKE_SYSTEM_NAME Generic)
|
||||
set(CMAKE_SYSTEM_NAME SerenityOS)
|
||||
|
||||
if (NOT DEFINED ENV{SERENITY_ARCH})
|
||||
message(FATAL_ERROR "SERENITY_ARCH not set.")
|
||||
|
@ -8,6 +8,10 @@ if (NOT DEFINED ENV{SERENITY_ROOT})
|
|||
message(FATAL_ERROR "SERENITY_ROOT not set.")
|
||||
endif()
|
||||
|
||||
set(SERENITYOS 1)
|
||||
|
||||
set(CMAKE_SYSTEM_PROCESSOR "$ENV{SERENITY_ARCH}")
|
||||
|
||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fno-exceptions")
|
||||
|
||||
set(SERENITY_BUILD_DIR $ENV{SERENITY_ROOT}/Build/$ENV{SERENITY_ARCH})
|
||||
|
@ -25,3 +29,5 @@ set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
|
|||
set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
|
||||
set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)
|
||||
set(CMAKE_FIND_ROOT_PATH_MODE_PACKAGE ONLY)
|
||||
|
||||
list(APPEND CMAKE_MODULE_PATH "$ENV{SERENITY_ROOT}/Toolchain/CMake")
|
||||
|
|
Loading…
Reference in a new issue