Jack
10/21/2024, 11:28 AMktor-client-curl
in a linux arm64 project, and I get loads of errors with linking, I checked out the source code and ran ktor:ktor-client:ktor-client-curl [linuxArm64TestBinaries]
I receive the same error I do in my project.
Here are the errors I receive when pointing to the libcurl from the repo: linker issues
I tried building in a dockerised arm64 VM, to see if that would work, but then the kotlin native compiler is unavailable there, so am back to square one.
1. Any ideas if there are any flags I can pass to linkerOpts / compilerArgs to make it compile?
2. I have an arm64 HTTP / websocket client library using Civet, that maybe I could mangle in to an engine, is there any documentation for creating custom engines?Aleksei Tirman [JB]
10/21/2024, 2:21 PM1. Any ideas if there are any flags I can pass to linkerOpts / compilerArgs to make it compile?Can you try to link against another version of libcurl?
is there any documentation for creating custom engines?Unfortunately, there is no official documentation describing the development of the custom engines. You can use the source of the
Curl
engine as an example.Jack
10/21/2024, 3:02 PMlibcurl4-gnutls-dev
, but had the same issue there tooJack
10/23/2024, 6:57 PM