-
Notifications
You must be signed in to change notification settings - Fork 211
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
abseil-cpp: Expose more missing headers #1864
abseil-cpp: Expose more missing headers #1864
Conversation
This is enough for webrtc-audio-processing-2 to compile.
Thanks for the quick merge on the last one -- I missed a few and now tested this a bit better for the package this is being used in. |
know anything about that ppc failure? |
Looking at this line, it seems abseil only supports PPC with glibc and not musl, at least for now. |
If we want to, we could set |
Sure. I highly doubt anyone uses WrapDB on PPC anyway. |
0339d26
to
171a7c2
Compare
Phew, looks like that got it to green. |
hw_cpp_flags = [] | ||
if host_machine.cpu_family() == 'x86_64' | ||
hw_cpp_flags += ['-maes', '-msse4.1'] | ||
elif host_machine.cpu_family() == 'aarch64' and cpp.sizeof('void*') == 8 | ||
hw_cpp_flags += ['-march=armv8-a+crypto'] | ||
elif host_machine.cpu_family() == 'arm' and cpp.sizeof('void*') == 4 | ||
hw_cpp_flags += ['-mfpu=neon'] | ||
elif host_machine.cpu_family() == 'ppc' or host_machine.cpu_family() == 'ppc64' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
elif host_machine.cpu_family().startswith('ppc')
or elif host_machine.cpu_family() in ['ppc', 'ppc64']
For future reference.
This is enough for webrtc-audio-processing-2 to compile.