-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
Build failure on Fedora 29 #1239
Comments
We link against |
I think the problem is that
which also fixes the problem. |
Ah good point, I'll give it a try, thanks! |
Just an update on this, the second solution I posted only works when compiling for debug, to build the release version I still require the |
It should be fine but this |
I'm using clang 7.0.1 with Fedora 29, I also tested with clang 9.0.0 on a rhel-7 workstation. |
Would you mind trying #1245 please? It works on my Debian (custom Google) and our CI (Ubuntu 14). This change always links statically against |
Sure I'll try it now |
Works for me! Don't need to put any special flags either which is nice 👍
|
Awesome, thank you so much for your help! I really appreciate it. |
Describe the bug
Getting the same error output as #16 with an up to date clone of master.
To Reproduce
I'm using this CMAKE command:
Same story with regular make files. As you can see I do have the CXXABI flag.
Desktop (please complete the following information):
Additional context
I was able to fix this problem by modifying the main CMakeLists.txt to link libc++, apparently it wasn't doing this? I added
link_libraries(libc++.a)
and now it builds fine. Maybe there's a better fix.The text was updated successfully, but these errors were encountered: