-
Notifications
You must be signed in to change notification settings - Fork 10.4k
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
[Do Not Merge] [SwiftSyntax] Build on Linux #14854
Conversation
There has got to be a better way than what I'm doing to link with Foundation on Linux. |
a0e0100
to
066c914
Compare
The tests won't pass because they also need the same set of |
|
||
-lFoundation | ||
-lCoreFoundation | ||
-ldispatch) |
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.
These three can be handled via target_link_libraries
.
-L"${SWIFT_PATH_TO_LIBDISPATCH_BUILD}/src/swift" | ||
-L"${FOUNDATION_BUILD_DIR}" | ||
-L"${FOUNDATION_BUILD_DIR}/usr/lib/swift" | ||
-L"${FOUNDATION_BUILD_DIR}/usr/lib/swift/CoreFoundation" |
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.
Please use the swift_target_link_search_directories
function for these search paths.
-I"${SWIFT_PATH_TO_LIBDISPATCH_BUILD}/src/swift" | ||
-I"${FOUNDATION_BUILD_DIR}" | ||
-I"${FOUNDATION_BUILD_DIR}/usr/lib/swift" | ||
-I"${FOUNDATION_BUILD_DIR}/usr/lib/swift/CoreFoundation" |
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.
These can be handled via target_include_directories
.
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.
Thanks! Is there a good way to get the full target name that add_swift_library
creates?
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.
I'm trying to thread through INCLUDE_DIRECTORIES
in add_swift_library
, passing it through to target_include_directories
, and it doesn't actually adjust the command line used to compile SwiftSyntax
.
c43bcf4
to
0c21015
Compare
0c21015
to
0c87a00
Compare
Closing in favor of recent efforts. |
This is an experiment to get SwiftSyntax building on Linux. It's currently a pile o' hacks.