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

[plugin] allow cross compiling to Amazon Linux without docker #416

Closed
sebsto opened this issue Oct 25, 2024 · 2 comments
Closed

[plugin] allow cross compiling to Amazon Linux without docker #416

sebsto opened this issue Oct 25, 2024 · 2 comments

Comments

@sebsto
Copy link
Contributor

sebsto commented Oct 25, 2024

The plugin should add an option allowing developers to cross compile to Amazon Linux, removing the dependency on docker.

This can be done in two ways

1/ check and/or install the Static Linux SDK (musl-based) and create a standalone binary statically linked to musl.
Pro : no SDK bundle to generate
Cons : binary size might impact cold start time

2/ Create our own bundle of the SDK for Amazon Linux. Check or install the SDK at first invocation of the plugin and cross compile for that SDK
Pro : Same binary size as with the existing docker-based solution
Cons : we have to create (and maintain) and Amazon Linux 2 SDK bundle

References:

SDK Bundles : https://github.com/swiftlang/swift-evolution/blob/main/proposals/0387-cross-compilation-destinations.md
Static Linux SDK : https://www.swift.org/documentation/articles/static-linux-getting-started.html
Swift SDK Generator : https://github.com/swiftlang/swift-sdk-generator

What version of this project (swift-aws-lambda-runtime) are you using?

main

Swift version

6.x

@sebsto
Copy link
Contributor Author

sebsto commented Oct 25, 2024

We can build an SDK for AmazonLinux2 with
https://github.com/swiftlang/swift-sdk-generator

swift run swift-sdk-generator make-linux-sdk \
       --with-docker \
       --from-container-image swift:6.0-amazonlinux2 \
       --swift-version 6.0.1-RELEASE 


All done! Install the newly generated SDK with this command:
swift experimental-sdk install /Users/stormacq/Desktop/swift-sdk-generator/Bundles/6.0.1-RELEASE_ubuntu_jammy_aarch64.artifactbundle

After that, use the newly installed SDK when building with this command:
swift build --experimental-swift-sdk 6.0.1-RELEASE_ubuntu_jammy_aarch64

I still need to get rid of Ubuntu :-)

@sebsto sebsto added the packager label Nov 7, 2024
@sebsto
Copy link
Contributor Author

sebsto commented Nov 7, 2024

duplicate of #332

@sebsto sebsto closed this as completed Nov 7, 2024
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

No branches or pull requests

1 participant