-
Notifications
You must be signed in to change notification settings - Fork 313
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
Alpine Build Failure #319
Comments
The misc part of the build is to add the strlcpy and strlcat functions to Linux or Windows based builds per external/misc/README . If I was to guess, your docker setup isn't passing enough information to cmake to declare what OS you're using. For example, here is the output of running "cmake .." on an Ubuntu 20.04 machine. Cmake ultimately recognizes it's a Linux X86_64 setup. What do you see on your setup? --
|
I too see Linux x86_64, I've got a debian based container that builds perfectly fine with the same dependencies, was trying to see if I could make an alpine build for further space optimization, although I'm down to 28M w/debian I'd like to get it to build in alpine.
Cmake does seem to have issues with package case on alpine, tho they are just warnings I don't see em in Debian. |
Is this still a problem or can this be closed? |
Building |
For Linux builds, if strlcpt and strlcat are already provided, cmake is given an empty list of sources to build for the "misc" library. Newer versions of cmake throw an error for this. In this case, we should just avoid building the library. Failure pattern: CMake Error at external/misc/CMakeLists.txt:35 (add_library): No SOURCES given to target: misc CMake Generate step failed. Build files cannot be regenerated correctly. Fixes wb2osz#319
There are multiple open cases for the same issue of building on Alpine. |
Trying to make an alpine docker container, the build is failing with:
Here's a docker file to reproduce:
The text was updated successfully, but these errors were encountered: