-
Notifications
You must be signed in to change notification settings - Fork 687
Add Arm RTCD for OpenBSD #363
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
base: main
Are you sure you want to change the base?
Conversation
cc @jmvalin |
@jmvalin Ping. |
@@ -191,7 +191,7 @@ static opus_uint32 opus_cpu_capabilities(void) | |||
return flags; | |||
} | |||
|
|||
#elif defined(__FreeBSD__) | |||
#elif defined(HAVE_ELF_AUX_INFO) |
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.
I'm not sure I understand why you need to change the FreeBSD case to add OpenBSD. Not against your OpenBSD patch but would like to make sure we don't break FreeBSD. More specifically, your HAVE_ELF_AUX_INFO is added to only two out of the four build systems we support.
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.
Not every release of FreeBSD nor OpenBSD has the elf_aux_info() API. This is how I've done things with pretty much every other project I've added OpenBSD or FreeBSD/OpenBSD support. I have now added and fixed the CMake support.
0e19c92
to
660aed0
Compare
Added CMake support. Also noticed a missed piece for FreeBSD while I was at it. |
Also fix FreeBSD CMake support on ARM.
The meson build system seems to be broken.
meson-log.txt has..
|
Also fix FreeBSD CMake support on ARM.