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

Unbreak build on FreeBSD #18114

Merged
merged 1 commit into from
Sep 9, 2023
Merged

Unbreak build on FreeBSD #18114

merged 1 commit into from
Sep 9, 2023

Commits on Sep 9, 2023

  1. CMake: Avoid using fseeko64/ftello64/etc on non-Linux

    off_t is always 64-bit on BSDs but Large File Support API is not supported.
    
    ld: error: undefined symbol: fseeko64
    >>> referenced by hash.c
    >>>               hash.c.o:(filereader_seek) in archive lib/librcheevos.a
    
    ld: error: undefined symbol: ftello64
    >>> referenced by hash.c
    >>>               hash.c.o:(filereader_tell) in archive lib/librcheevos.a
    
    Based on https://github.com/citra-emu/citra/commit/26af2b644ce6
    jbeich committed Sep 9, 2023
    Configuration menu
    Copy the full SHA
    9472e7e View commit details
    Browse the repository at this point in the history