-
Notifications
You must be signed in to change notification settings - Fork 465
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
build: add support for nesting the Swift subdirectory #860
base: main
Are you sure you want to change the base?
Conversation
These can be controlled by the user external to the project. Remove this to simplify the rules.
CMake 3.19.0 fixed the compiler invocation requiring the local workaround. Match the runtimes CMake version requirement and drop the workaround.
Reduce the verbosity in the generator expression to apply the compile flags to C or C++ code only.
`HAVE_STRLCPY` was added to the static configuration but not the dynamic configuration. Update the template for this.
CMake 3.25 introduced a more consistent way to check what system is being built for. Adopt that uniformly through the build to make it easier to understand.
@swift-ci please test |
@swift-ci please test |
@swift-ci please test Windows platform |
This introduces the new option to control installation to a nested subdirectory. It also converts the current installation into a thick module format.
@swift-ci please test |
The DispatchStubs are now used only for the ObjC codepath and no longer need to be included in the regular build. Simply remove the extra library unless Objective-C support is enabled.
This should now be enabled due to the required version specification being updated.
Specify RPATH and POSITION_INDEPENDENT globally rather than on a per-target basis.
@swift-ci please test Linux platform |
Please test with following PRs: @swift-ci please test Linux platform |
@swift-ci please test Windows platform |
1 similar comment
@swift-ci please test Windows platform |
Please test with following PRs: @swift-ci please test Windows platform |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For next time, can you split the CMake updates and the module installation changes into separate PRs. There's a lot going on in this PR.
@@ -110,6 +91,11 @@ set(CMAKE_C_VISIBILITY_INLINES_HIDDEN YES) | |||
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}) | |||
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}) | |||
|
|||
set(CMAKE_POSITION_INDEPENDENT_CODE YES) | |||
if(NOT APPLE) | |||
set(CMAKE_INSTALL_RPATH "$ORIGIN") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What if I want to override the RPATH?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good question - how would you do that today? I don't think that this was something that was previously available.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe something like this?
if(NOT APPLE AND NOT DEFINED CMAKE_INSTALL_RPATH)
set(CMAKE_INSTALL_RPATH "$ORIGIN")
endif()
What is the CMake default? Nothing?
Alternatively, maybe something like this?
if(NOT APPLE)
list(APPEND CMAKE_INSTALL_RPATH "$ORIGIN")
endif()
I think I prefer the former though.
No, it wasn't previously available, but as long as we're fixing all the things, might as well fix this too.
INSTALL(FILES $<TARGET_PROPERTY:swiftDispatch,Swift_MODULE_DIRECTORY>/$<TARGET_PROPERTY:swiftDispatch,Swift_MODULE_NAME>.swiftdoc | ||
DESTINATION ${Dispatch_INSTALL_SWIFTMODULEDIR}/$<TARGET_PROPERTY:swiftDispatch,Swift_MODULE_NAME>.swiftmodule | ||
RENAME ${Dispatch_MODULE_TRIPLE}.swiftdoc) | ||
# INSTALL(FILES $<TARGET_PROPERTY:swiftDispatch,Swift_MODULE_DIRECTORY>/$<TARGET_PROPERTY:swiftDispatch,Swift_MODULE_NAME>.swiftinterface |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this commented out for a reason? Do we want a TODO here to enable installing the interface once interfaces work without stability, or should this code be deleted?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, this is something that we want to enable in the future. It requires adding new options, and I was trying to keep the flags the same as they were, just changing the install location.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Okay, maybe leave a FIXME/TODO comment so that we know what was intended.
@@ -3,7 +3,6 @@ module Dispatch { | |||
export * | |||
link "dispatch" | |||
link "BlocksRuntime" | |||
link "DispatchStubs" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not a request for changes, but by removing this line, this file is identical to https://github.com/swiftlang/swift-corelibs-libdispatch/blob/main/dispatch/generic/module.modulemap, so we might be able to remove the static case from the vfs overlay generation
swift-corelibs-libdispatch/dispatch/CMakeLists.txt
Lines 6 to 7 in 84ec97c
else() | |
set(DISPATCH_MODULE_MAP ${PROJECT_SOURCE_DIR}/dispatch/generic_static/module.modulemap) |
Prepare dispatch to permit installation into a nested subdirectory. Prior to doing that change, try to simplify some of the CMake rules to bring them into line with more modern CMake rules.