Replies: 1 comment 6 replies
-
Hi @pbalduz, are you sure the build is failing due to this library? The logs you shared do not mention this library, and our library certainly does not require |
Beta Was this translation helpful? Give feedback.
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I wrote a Vapor application which uses the library to parse routes and the parsing works nicely when debugging. Then I tried to deploy it to a hosting service (in this case I'm using Fly.io) but the build fails.
The deploy command runs the following command for the build:
swift build -c release --static-swift-stdlib -Xlinker -ljemalloc
Running it fails with the following error:
The problem comes with
jemalloc
because removing it and runningswift build -c release --static-swift-stdlib
builds fine but it seems to be necessary for the deploy to complete successfully. Is there a way to make the library build using it?Thank you!
Beta Was this translation helpful? Give feedback.
All reactions