mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
To achieve this, add a new cache variable
`SWIFT_EMBEDDED_STDLIB_SDKS_FOR_TARGET_TRIPLES` to be set like in the
following examples.
```
-DSWIFT_EMBEDDED_STDLIB_SDKS_FOR_TARGET_TRIPLES=aarch64-vendor-os@/usr/local/aarch64-vendor-os-sdk;aaarch-vendor-anotheros@/opt/aarch64-vendor-anotheros-sdk
```
We chose to use another setting instead of e.g. folding this into
`SWIFT_EMBEDDED_STDLIB_EXTRA_TARGET_TRIPLES` so it is clear this is opt
in and it does not regress existing configurations that set the SDK
directly (like it's the case for the WASM stdlib).
Addresses rdar://162368529
393 lines
14 KiB
CMake
393 lines
14 KiB
CMake
add_subdirectory(LLVMSupport)
|
|
|
|
set(SWIFT_RUNTIME_CXX_FLAGS)
|
|
set(SWIFT_RUNTIME_LINK_FLAGS)
|
|
set(SWIFT_RUNTIME_SWIFT_COMPILE_FLAGS)
|
|
set(SWIFT_RUNTIME_SWIFT_LINK_FLAGS)
|
|
|
|
if(SWIFT_RUNTIME_USE_SANITIZERS)
|
|
# TODO: Refactor this
|
|
if("Thread" IN_LIST SWIFT_RUNTIME_USE_SANITIZERS)
|
|
list(APPEND SWIFT_RUNTIME_CXX_FLAGS "-fsanitize=thread")
|
|
list(APPEND SWIFT_RUNTIME_LINK_FLAGS "-fsanitize=thread")
|
|
list(APPEND SWIFT_RUNTIME_SWIFT_COMPILE_FLAGS "-sanitize=thread")
|
|
list(APPEND SWIFT_RUNTIME_SWIFT_LINK_FLAGS "-fsanitize=thread")
|
|
endif()
|
|
endif()
|
|
|
|
if(SWIFT_STDLIB_SIL_DEBUGGING)
|
|
list(APPEND SWIFT_RUNTIME_SWIFT_COMPILE_FLAGS "-Xfrontend" "-sil-based-debuginfo")
|
|
endif()
|
|
|
|
option(SWIFT_RUNTIME_DYLD_SHARED_CACHE_COMPATIBLE
|
|
"On Darwin platforms, link the standard library in a way that
|
|
allows inclusion in the dyld shared cache"
|
|
FALSE)
|
|
|
|
if(CMAKE_SYSTEM_NAME STREQUAL "Darwin" AND
|
|
LLVM_LINKER_IS_APPLE AND
|
|
NOT SWIFT_RUNTIME_DYLD_SHARED_CACHE_COMPATIBLE)
|
|
set(shared_cache_link_flags "LINKER:-not_for_dyld_shared_cache")
|
|
list(APPEND SWIFT_RUNTIME_LINK_FLAGS ${shared_cache_link_flags})
|
|
list(APPEND SWIFT_RUNTIME_SWIFT_LINK_FLAGS ${shared_cache_link_flags})
|
|
endif()
|
|
|
|
# Build the runtime with -Wall to catch, e.g., uninitialized variables
|
|
# warnings.
|
|
if(SWIFT_COMPILER_IS_MSVC_LIKE)
|
|
list(APPEND SWIFT_RUNTIME_CXX_FLAGS "/W3")
|
|
else()
|
|
list(APPEND SWIFT_RUNTIME_CXX_FLAGS "-Wall")
|
|
endif()
|
|
|
|
set(SWIFT_RUNTIME_CORE_CXX_FLAGS "${SWIFT_RUNTIME_CXX_FLAGS}")
|
|
set(SWIFT_RUNTIME_CORE_LINK_FLAGS "${SWIFT_RUNTIME_LINK_FLAGS}")
|
|
|
|
if(CMAKE_SYSTEM_NAME STREQUAL "CYGWIN")
|
|
list(APPEND SWIFT_RUNTIME_CORE_CXX_FLAGS "-mcmodel=large")
|
|
elseif(CMAKE_SYSTEM_NAME STREQUAL "OpenBSD")
|
|
list(APPEND SWIFT_RUNTIME_CORE_CXX_FLAGS "-xc++")
|
|
endif()
|
|
|
|
# We should avoid non-literals in format strings, or appropriately mark
|
|
# functions.
|
|
check_cxx_compiler_flag("-Wformat-nonliteral -Werror=format-nonliteral" CXX_SUPPORTS_FORMAT_NONLITERAL_WARNING)
|
|
if (CXX_SUPPORTS_FORMAT_NONLITERAL_WARNING)
|
|
list(APPEND SWIFT_RUNTIME_CORE_CXX_FLAGS "-Wformat-nonliteral"
|
|
"-Werror=format-nonliteral")
|
|
endif()
|
|
|
|
# C++ code in the runtime and standard library should generally avoid
|
|
# introducing static constructors or destructors.
|
|
check_cxx_compiler_flag("-Wglobal-constructors -Werror=global-constructors" CXX_SUPPORTS_GLOBAL_CONSTRUCTORS_WARNING)
|
|
if(CXX_SUPPORTS_GLOBAL_CONSTRUCTORS_WARNING)
|
|
list(APPEND SWIFT_RUNTIME_CORE_CXX_FLAGS "-Wglobal-constructors"
|
|
"-Werror=global-constructors")
|
|
endif()
|
|
|
|
# C++ code in the runtime and standard library should generally avoid
|
|
# introducing static constructors or destructors.
|
|
check_cxx_compiler_flag("-Wexit-time-destructors -Werror=exit-time-destructors" CXX_SUPPORTS_EXIT_TIME_DESTRUCTORS_WARNING)
|
|
if(CXX_SUPPORTS_EXIT_TIME_DESTRUCTORS_WARNING)
|
|
list(APPEND SWIFT_RUNTIME_CORE_CXX_FLAGS "-Wexit-time-destructors"
|
|
"-Werror=exit-time-destructors")
|
|
endif()
|
|
|
|
add_subdirectory(SwiftShims/swift/shims)
|
|
add_subdirectory(CommandLineSupport)
|
|
if(SWIFT_ENABLE_EXPERIMENTAL_CXX_INTEROP)
|
|
add_subdirectory(Cxx)
|
|
else()
|
|
# SwiftCompilerSources rely on C++ interop, specifically on being able to
|
|
# import the C++ standard library into Swift. On Linux, this is only possible
|
|
# when using the modulemap that Swift provides for libstdc++. Make sure we
|
|
# include the libstdc++ modulemap into the build even when not building
|
|
# C++ interop modules.
|
|
add_subdirectory(Cxx/libstdcxx)
|
|
endif()
|
|
add_subdirectory(Threading)
|
|
|
|
# This static library is shared across swiftCore and swiftRemoteInspection
|
|
if(SWIFT_BUILD_STDLIB OR SWIFT_BUILD_REMOTE_MIRROR)
|
|
# TODO: due to the use of `add_swift_target_library` rather than `add_library`
|
|
# we cannot use `target_sources` and thus must resort to list manipulations to
|
|
# adjust the source list.
|
|
set(swiftDemanglingSources
|
|
"${SWIFT_SOURCE_DIR}/lib/Demangling/Context.cpp"
|
|
"${SWIFT_SOURCE_DIR}/lib/Demangling/Demangler.cpp"
|
|
"${SWIFT_SOURCE_DIR}/lib/Demangling/ManglingUtils.cpp"
|
|
"${SWIFT_SOURCE_DIR}/lib/Demangling/NodePrinter.cpp"
|
|
"${SWIFT_SOURCE_DIR}/lib/Demangling/Punycode.cpp"
|
|
"${SWIFT_SOURCE_DIR}/lib/Demangling/Remangler.cpp"
|
|
"${SWIFT_SOURCE_DIR}/lib/Demangling/NodeDumper.cpp"
|
|
"${SWIFT_SOURCE_DIR}/lib/Demangling/Errors.cpp")
|
|
set(swiftDemanglingCRSources
|
|
"${SWIFT_SOURCE_DIR}/lib/Demangling/CrashReporter.cpp")
|
|
|
|
set(swift_demangling_cflags)
|
|
|
|
if(SWIFT_RUNTIME_CRASH_REPORTER_CLIENT)
|
|
list(APPEND swift_demangling_cflags
|
|
"-DSWIFT_HAVE_CRASHREPORTERCLIENT=1")
|
|
endif()
|
|
|
|
# The old mangling support is only needed on platforms with ObjC.
|
|
if(SWIFT_STDLIB_ENABLE_OBJC_INTEROP)
|
|
list(APPEND swiftDemanglingSources
|
|
"${SWIFT_SOURCE_DIR}/lib/Demangling/OldDemangler.cpp"
|
|
"${SWIFT_SOURCE_DIR}/lib/Demangling/OldRemangler.cpp"
|
|
)
|
|
list(APPEND swift_demangling_cflags -DSWIFT_SUPPORT_OLD_MANGLING=1)
|
|
else()
|
|
list(APPEND swift_demangling_cflags -DSWIFT_SUPPORT_OLD_MANGLING=0)
|
|
endif()
|
|
|
|
if(SWIFT_STDLIB_HAS_TYPE_PRINTING)
|
|
list(APPEND swift_demangling_cflags -DSWIFT_STDLIB_HAS_TYPE_PRINTING)
|
|
endif()
|
|
|
|
# Gold LTO is unsupported. To prevent tests from failing when building
|
|
# with LTO, force swiftDemangling library to compile without LTO for Linux.
|
|
add_swift_target_library(swiftDemangling OBJECT_LIBRARY
|
|
${swiftDemanglingSources}
|
|
C_COMPILE_FLAGS
|
|
-DswiftCore_EXPORTS
|
|
${swift_demangling_cflags}
|
|
C_COMPILE_FLAGS_LINUX -fno-lto
|
|
INSTALL_IN_COMPONENT never_install)
|
|
|
|
add_swift_target_library(swiftDemanglingCR OBJECT_LIBRARY
|
|
${swiftDemanglingCRSources}
|
|
C_COMPILE_FLAGS
|
|
-DswiftCore_EXPORTS
|
|
${swift_demangling_cflags}
|
|
INSTALL_IN_COMPONENT never_install)
|
|
endif()
|
|
|
|
option(SWIFT_SHOULD_BUILD_EMBEDDED_STDLIB
|
|
"Enable build of the embedded Swift standard library and runtime"
|
|
TRUE)
|
|
|
|
option(SWIFT_SHOULD_BUILD_EMBEDDED_STDLIB_CROSS_COMPILING
|
|
"Enable build of the embedded Swift standard library and runtime for cross-compiling targets"
|
|
FALSE)
|
|
|
|
set(SWIFT_EMBEDDED_STDLIB_EXTRA_TARGET_TRIPLES "" CACHE STRING
|
|
"List of extra target triples to build the embedded Swift standard library for")
|
|
|
|
set(SWIFT_EMBEDDED_STDLIB_SDKS_FOR_TARGET_TRIPLES "" CACHE STRING
|
|
"List of SDKs to use for target triples, in the form triple@sdkpath.
|
|
Using this variable precludes setting directly the value for SWIFT_SDK_embedded_ARCH_\$\{ARCH\}_PATH")
|
|
|
|
if((NOT SWIFT_HOST_VARIANT STREQUAL "macosx") AND
|
|
(NOT SWIFT_HOST_VARIANT STREQUAL "linux") AND
|
|
(NOT SWIFT_HOST_VARIANT STREQUAL "wasi") AND
|
|
(NOT SWIFT_HOST_VARIANT STREQUAL "windows"))
|
|
set(SWIFT_SHOULD_BUILD_EMBEDDED_STDLIB FALSE)
|
|
elseif(BOOTSTRAPPING_MODE STREQUAL "OFF")
|
|
set(SWIFT_SHOULD_BUILD_EMBEDDED_STDLIB FALSE)
|
|
endif()
|
|
|
|
if(SWIFT_SHOULD_BUILD_EMBEDDED_STDLIB)
|
|
add_custom_target(embedded-libraries ALL)
|
|
endif()
|
|
|
|
set(EMBEDDED_STDLIB_TARGET_TRIPLES)
|
|
|
|
if(SWIFT_SHOULD_BUILD_EMBEDDED_STDLIB_CROSS_COMPILING)
|
|
if(SWIFT_WASI_SYSROOT_PATH)
|
|
# Don't attempt to build any other Embedded Swift stdlib triples
|
|
# when building for WASI.
|
|
list(APPEND EMBEDDED_STDLIB_TARGET_TRIPLES
|
|
"wasm32 wasm32-unknown-wasip1 wasm32-unknown-wasip1"
|
|
)
|
|
else()
|
|
if("ARM" IN_LIST LLVM_TARGETS_TO_BUILD)
|
|
list(APPEND EMBEDDED_STDLIB_TARGET_TRIPLES
|
|
# arch module_name target triple
|
|
"armv6 armv6-apple-none-macho armv6-apple-none-macho"
|
|
"armv6m armv6m-apple-none-macho armv6m-apple-none-macho"
|
|
"armv7 armv7-apple-none-macho armv7-apple-none-macho"
|
|
"armv7m armv7m-apple-none-macho armv7m-apple-none-macho"
|
|
"armv7em armv7em-apple-none-macho armv7em-apple-none-macho"
|
|
)
|
|
endif()
|
|
if("AArch64" IN_LIST LLVM_TARGETS_TO_BUILD)
|
|
list(APPEND EMBEDDED_STDLIB_TARGET_TRIPLES
|
|
"arm64 arm64-apple-none-macho arm64-apple-none-macho"
|
|
"arm64e arm64e-apple-none-macho arm64e-apple-none-macho"
|
|
"arm64 arm64-apple-ios arm64-apple-ios18"
|
|
"arm64e arm64e-apple-ios arm64e-apple-ios18"
|
|
)
|
|
endif()
|
|
|
|
# the following are all ELF targets
|
|
if("ARM" IN_LIST LLVM_TARGETS_TO_BUILD)
|
|
list(APPEND EMBEDDED_STDLIB_TARGET_TRIPLES
|
|
"armv4t armv4t-none-none-eabi armv4t-none-none-eabi"
|
|
"armv6 armv6-none-none-eabi armv6-none-none-eabi"
|
|
"armv6m armv6m-none-none-eabi armv6m-none-none-eabi"
|
|
"armv7 armv7-none-none-eabi armv7-none-none-eabi"
|
|
"armv7em armv7em-none-none-eabi armv7em-none-none-eabi"
|
|
)
|
|
endif()
|
|
if("AArch64" IN_LIST LLVM_TARGETS_TO_BUILD)
|
|
list(APPEND EMBEDDED_STDLIB_TARGET_TRIPLES
|
|
"aarch64 aarch64-none-none-elf aarch64-none-none-elf"
|
|
)
|
|
endif()
|
|
if("RISCV" IN_LIST LLVM_TARGETS_TO_BUILD)
|
|
list(APPEND EMBEDDED_STDLIB_TARGET_TRIPLES
|
|
"riscv32 riscv32-none-none-eabi riscv32-none-none-eabi"
|
|
"riscv64 riscv64-none-none-eabi riscv64-none-none-eabi"
|
|
)
|
|
endif()
|
|
if("X86" IN_LIST LLVM_TARGETS_TO_BUILD)
|
|
list(APPEND EMBEDDED_STDLIB_TARGET_TRIPLES
|
|
"i686 i686-unknown-none-elf i686-unknown-none-elf"
|
|
"x86_64 x86_64-unknown-none-elf x86_64-unknown-none-elf"
|
|
)
|
|
endif()
|
|
|
|
if("WebAssembly" IN_LIST LLVM_TARGETS_TO_BUILD)
|
|
list(APPEND EMBEDDED_STDLIB_TARGET_TRIPLES
|
|
"wasm32 wasm32-unknown-none-wasm wasm32-unknown-none-wasm"
|
|
"wasm64 wasm64-unknown-none-wasm wasm64-unknown-none-wasm"
|
|
)
|
|
endif()
|
|
|
|
if("AVR" IN_LIST LLVM_TARGETS_TO_BUILD)
|
|
list(APPEND EMBEDDED_STDLIB_TARGET_TRIPLES
|
|
"avr avr-none-none-elf avr-none-none-elf"
|
|
)
|
|
endif()
|
|
endif()
|
|
endif()
|
|
|
|
if(SWIFT_SHOULD_BUILD_EMBEDDED_STDLIB AND NOT SWIFT_WASI_SYSROOT_PATH)
|
|
if (SWIFT_HOST_VARIANT STREQUAL "linux")
|
|
list(APPEND EMBEDDED_STDLIB_TARGET_TRIPLES
|
|
"${SWIFT_HOST_VARIANT_ARCH} ${SWIFT_HOST_VARIANT_ARCH}-unknown-linux-gnu ${SWIFT_HOST_VARIANT_ARCH}-unknown-linux-gnu"
|
|
# In practice this expands to either:
|
|
# "x86_64 x86_64-unknown-linux-gnu x86_64-unknown-linux-gnu"
|
|
# "aarch64 aarch64-unknown-linux-gnu aarch64-unknown-linux-gnu"
|
|
)
|
|
elseif (SWIFT_HOST_VARIANT STREQUAL "macosx")
|
|
list(APPEND EMBEDDED_STDLIB_TARGET_TRIPLES
|
|
"x86_64 x86_64-apple-macos x86_64-apple-macos14"
|
|
"arm64 arm64-apple-macos arm64-apple-macos14"
|
|
"arm64e arm64e-apple-macos arm64e-apple-macos14"
|
|
)
|
|
elseif (SWIFT_HOST_VARIANT STREQUAL "windows")
|
|
list(APPEND EMBEDDED_STDLIB_TARGET_TRIPLES
|
|
# Without specifying the `windows` component LLVM refuses to
|
|
# generate valid COFF object files.
|
|
"i686 i686-unknown-windows-msvc i686-unknown-windows-msvc"
|
|
"x86_64 x86_64-unknown-windows-msvc x86_64-unknown-windows-msvc"
|
|
)
|
|
endif()
|
|
endif()
|
|
|
|
foreach(triple ${SWIFT_EMBEDDED_STDLIB_EXTRA_TARGET_TRIPLES})
|
|
if(triple STREQUAL "")
|
|
continue()
|
|
endif()
|
|
|
|
string(REGEX REPLACE "-" ";" list "${triple}")
|
|
list(GET list 0 arch)
|
|
list(GET list 1 vendor)
|
|
list(GET list 2 os)
|
|
string(REGEX REPLACE "[0-9]+(\\.[0-9]+)+" "" mod "${triple}")
|
|
|
|
list(FILTER EMBEDDED_STDLIB_TARGET_TRIPLES EXCLUDE REGEX " ${mod} ")
|
|
|
|
list(APPEND EMBEDDED_STDLIB_TARGET_TRIPLES
|
|
"${arch} ${mod} ${triple}"
|
|
)
|
|
endforeach()
|
|
|
|
if(SWIFT_EMBEDDED_STDLIB_SDKS_FOR_TARGET_TRIPLES)
|
|
message(WARNING "Configuring SDKs using content of SWIFT_EMBEDDED_STDLIB_SDKS_FOR_TARGET_TRIPLES \
|
|
Setting directly SWIFT_SDK_embedded_ARCH_\$\{ARCH\}_PATH will not work")
|
|
foreach(triple_configuration ${SWIFT_EMBEDDED_STDLIB_SDKS_FOR_TARGET_TRIPLES})
|
|
if(triple_configuration STREQUAL "")
|
|
continue()
|
|
endif()
|
|
|
|
# Line format: <triple>[@<path to SDK>]
|
|
string(REPLACE "@" ";" triple_configuration_list "${triple_configuration}")
|
|
list(LENGTH triple_configuration_list triple_configuration_list_length)
|
|
if(triple_configuration_list_length GREATER_EQUAL 2)
|
|
list(GET triple_configuration_list 0 triple)
|
|
list(GET triple_configuration_list 1 sdk_path)
|
|
set(EMBEDDED_STDLIB_SDK_FOR_${triple} "${sdk_path}")
|
|
endif()
|
|
endforeach()
|
|
endif()
|
|
|
|
if(SWIFT_SHOULD_BUILD_EMBEDDED_STDLIB)
|
|
set(triples)
|
|
foreach(entry ${EMBEDDED_STDLIB_TARGET_TRIPLES})
|
|
string(REGEX REPLACE "[ \t]+" ";" list "${entry}")
|
|
list(GET list 2 triple)
|
|
list(APPEND triples ${triple})
|
|
endforeach()
|
|
|
|
message(STATUS "Building Embedded Swift standard libraries for targets: ${triples}")
|
|
message(STATUS "")
|
|
endif()
|
|
|
|
if(SWIFT_BUILD_STDLIB)
|
|
# These must be kept in dependency order so that any referenced targets
|
|
# exist at the time we look for them in add_swift_*.
|
|
add_subdirectory(runtime)
|
|
add_subdirectory(stubs)
|
|
add_subdirectory(core)
|
|
add_subdirectory(SwiftOnoneSupport)
|
|
|
|
if(SWIFT_BUILD_CLANG_OVERLAYS OR SWIFT_BUILD_TEST_SUPPORT_MODULES)
|
|
add_subdirectory(ClangOverlays)
|
|
endif()
|
|
|
|
if(SWIFT_ENABLE_EXPERIMENTAL_CONCURRENCY)
|
|
add_subdirectory(Concurrency)
|
|
endif()
|
|
|
|
if(SWIFT_ENABLE_EXPERIMENTAL_STRING_PROCESSING)
|
|
add_subdirectory(RegexParser)
|
|
add_subdirectory(StringProcessing)
|
|
add_subdirectory(RegexBuilder)
|
|
endif()
|
|
endif()
|
|
|
|
if(SWIFT_BUILD_STDLIB AND NOT SWIFT_STDLIB_BUILD_ONLY_CORE_MODULES)
|
|
# In some internal Apple configurations we have the need
|
|
# to build Core and Onone separately from the rest
|
|
# of the stdlib
|
|
if(SWIFT_ENABLE_EXPERIMENTAL_DIFFERENTIABLE_PROGRAMMING)
|
|
add_subdirectory(Differentiation)
|
|
endif()
|
|
|
|
if(SWIFT_ENABLE_EXPERIMENTAL_DISTRIBUTED)
|
|
add_subdirectory(Distributed)
|
|
endif()
|
|
|
|
if(SWIFT_ENABLE_EXPERIMENTAL_OBSERVATION)
|
|
add_subdirectory(Observation)
|
|
endif()
|
|
|
|
if(SWIFT_ENABLE_RUNTIME_MODULE)
|
|
add_subdirectory(RuntimeModule)
|
|
endif()
|
|
|
|
if(SWIFT_ENABLE_SYNCHRONIZATION)
|
|
add_subdirectory(Synchronization)
|
|
endif()
|
|
|
|
if(SWIFT_ENABLE_VOLATILE)
|
|
add_subdirectory(Volatile)
|
|
endif()
|
|
endif()
|
|
|
|
if(SWIFT_BUILD_REMOTE_MIRROR)
|
|
add_subdirectory(RemoteInspection)
|
|
add_subdirectory(SwiftRemoteMirror)
|
|
endif()
|
|
|
|
if(SWIFT_BUILD_SDK_OVERLAY OR (SWIFT_BUILD_TEST_SUPPORT_MODULES AND SWIFT_BUILD_DYNAMIC_SDK_OVERLAY_default))
|
|
add_subdirectory(Platform)
|
|
endif()
|
|
|
|
if(SWIFT_BUILD_SDK_OVERLAY)
|
|
# On Apple platforms, we aren't building any overlays. Instead, we're picking them up from the SDK.
|
|
|
|
if(WINDOWS IN_LIST SWIFT_SDKS)
|
|
add_subdirectory(Windows)
|
|
endif()
|
|
endif()
|
|
|
|
if(SWIFT_BUILD_LIBEXEC)
|
|
add_subdirectory(libexec)
|
|
endif()
|
|
|