-
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
Make Failure On alpine linux Arm64 #344
Comments
this is the Direct output of make for convenience : |
What compiler and version are you using on your version of AlpineLinux? You also might try compiling Direwolf v1.7 from the Git "develop" branch to see if that helps. |
i am using gcc 10.3.1 20210625 (Alpine 10.3.1_git20210625)
there is no "develop" branch although there is a dev branch and that fails
at the cmake with a cmake error regarding: No SOURCES given to target: misc
…On Sun., Aug. 8, 2021, 12:05 a.m. David Ranch, ***@***.***> wrote:
What compiler and version are you using on your version of AlpineLinux?
You also might try compiling Direwolf v1.7 from the Git "develop" branch to
see if that helps.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#344 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AO3N5IPERK4CB67OTJYVA63T3X667ANCNFSM5BYBOR5A>
.
Triage notifications on the go with GitHub Mobile for iOS
<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
or Android
<https://play.google.com/store/apps/details?id=com.github.android&utm_campaign=notification-email>
.
|
this seems to be the same issue as #150 -- Found HAMLIB: /usr/lib/libhamlib.so -- Found UDEV: /usr/lib/libudev.so -- Found AVAHI: TRUE CMake Generate step failed. Build files cannot be regenerated correctly. |
this is the package list: |
Seems there are other reports of this issue with Direwolf and it seems to be more of a Cmake on Alpine issue: https://www.gitmemory.com/issue/wb2osz/direwolf/319/787401401 If you look at the internals of Direwolf's external/misc/CMakeLists.txt file, you see explicit mention of this issue with Alpine Linux starting at line 16: # It seems that Alpine Linux and Void Linux have strlcpy and There are hints in flann-lib/flann#369 saying that the issue is with the way Cmake is being used here but it's not 100% clear what the proper fix for Direwolf would be. |
Seems like some hints on the fix can be found here but I cannot try a fix as I don't have Alpine LInux: https://bugs.gentoo.org/show_bug.cgi?id=652594 is the overview and the specific example fixes for that project are here: |
Alpine linux uses cmake-3.21.1-r0 this seems to explain the issue succinctly buildroot/buildroot@0c46947 TLDR: Cmake changed the way add_library() works. "With CMake >= 3.11, the new behaviour of add_library() break the |
so as per the error "CMake Error at external/misc/CMakeLists.txt:35 (add_library): |
going back to fixing the compile issue on the master branch and not the cmake issue on the Dev branch |
This is the same issue aswell #319 |
output.txt |
arch. both aur options fail and manual install also fails. |
I installed Alpine Linux in a VM so I can try to get to the bottom of this. cmake says error at external/misc/CMakeLists.txt (add_library) The problem is that we are adding an empty list to add_library. We have a similar situation with Mac OSX where the C library provides strlcpy. In my case cmake version is 3.17.0. AHA! When we look in external/misc/CMakeLists.txt, we see there is a test for OS type. For BSD and similar, we simply assume the strl... functions are available, and have: set(MISC_LIBRARIES "" CACHE INTERNAL "") rather than following the Linux logic. Perhaps the solution would be to do this instead of add_library if the source file list is empty. 73, |
It should also be noted that these packages need to be installed: This was added to the 1.7 User Guide (out soon). |
I pushed a change (commit 877d1c7) that fixed the build for Alpine Linux and I thought that should be ok for other platforms. |
I think I have something that fixes the build on Alpine without breaking the others. |
This is the output of cmake .. and make consecutively
compiletime.txt
this is the master branch following these instructions:
git clone https://github.com/wb2osz/direwolf.git/
cd direwolf
mkdir build && cd build
cmake ..
make -j4
sudo make install
make install-conf
I have also tried the dev Branch but it fails on the cmake
The text was updated successfully, but these errors were encountered: