Skip to content
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

Open
wants to merge 9 commits into
base: main
Choose a base branch
from

Conversation

compnerd
Copy link
Member

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.

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.
@compnerd
Copy link
Member Author

CC: @bnbarham @al45tair @etcwilde

@compnerd
Copy link
Member Author

@swift-ci please test

@compnerd
Copy link
Member Author

@swift-ci please test

@compnerd
Copy link
Member Author

@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.
@compnerd
Copy link
Member Author

@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.
@compnerd
Copy link
Member Author

@swift-ci please test Linux platform

@compnerd
Copy link
Member Author

Please test with following PRs:
swiftlang/swift-integration-tests#155

@swift-ci please test Linux platform

@compnerd
Copy link
Member Author

@swift-ci please test Windows platform

1 similar comment
@compnerd
Copy link
Member Author

@swift-ci please test Windows platform

@compnerd
Copy link
Member Author

Please test with following PRs:
swiftlang/swift-installer-scripts#401

@swift-ci please test Windows platform

@al45tair
Copy link
Contributor

Probably worth getting @etcwilde and/or @edymtt to look over this as well.

@al45tair al45tair requested review from etcwilde and edymtt March 18, 2025 10:56
Copy link
Contributor

@etcwilde etcwilde left a 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")
Copy link
Contributor

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?

Copy link
Member Author

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.

Copy link
Contributor

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
Copy link
Contributor

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?

Copy link
Member Author

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.

Copy link
Contributor

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"
Copy link
Contributor

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

else()
set(DISPATCH_MODULE_MAP ${PROJECT_SOURCE_DIR}/dispatch/generic_static/module.modulemap)
.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants