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

[Do Not Merge] [SwiftSyntax] Build on Linux #14854

Closed
wants to merge 3 commits into from

Conversation

harlanhaskins
Copy link
Contributor

This is an experiment to get SwiftSyntax building on Linux. It's currently a pile o' hacks.

@harlanhaskins harlanhaskins changed the title [Do Not Merge] Build SwiftSyntax on Linux [Do Not Merge] [SwiftSyntax] Build on Linux Feb 27, 2018
@harlanhaskins
Copy link
Contributor Author

There has got to be a better way than what I'm doing to link with Foundation on Linux.

@harlanhaskins
Copy link
Contributor Author

The tests won't pass because they also need the same set of -I and -L flags that SwiftSyntax does.


-lFoundation
-lCoreFoundation
-ldispatch)
Copy link
Member

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

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

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.

Copy link
Contributor Author

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?

Copy link
Contributor Author

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.

@harlanhaskins
Copy link
Contributor Author

Closing in favor of recent efforts.

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.

None yet

2 participants