Skip to content
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

Fix building on OpenBSD #11750

Merged
merged 2 commits into from
Oct 27, 2024
Merged

Fix building on OpenBSD #11750

merged 2 commits into from
Oct 27, 2024

Commits on Oct 24, 2024

  1. Fix OpenBSD build with Makefiles

    OpenBSD dynamic libraries never link to libc directly.
    Instead, they have undefined symbols for all libc functions they use
    that ld.so resolves to the libc referred to in the main executable.
    
    Thus, disallowing undefined symbols will always fail
    artemist committed Oct 24, 2024
    Configuration menu
    Copy the full SHA
    c49bff2 View commit details
    Browse the repository at this point in the history

Commits on Oct 26, 2024

  1. package.nix: Disable GC on OpenBSD

    Nix fails to build on OpenBSD with a linking error due to a non-found
    symbol in boehm-gc. Just disable the GC until we can find a proper
    workaround.
    artemist committed Oct 26, 2024
    Configuration menu
    Copy the full SHA
    fecc1ca View commit details
    Browse the repository at this point in the history