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

Ports: Add flatbuffers library #6050

Merged
merged 2 commits into from
Apr 6, 2021

Commits on Apr 3, 2021

  1. Ports: Add flatbuffers library

    The flatbuffers library is a serialization library, created by Google
    for game development and performance-critical applications.
    It aims to be fast and efficient.
    
    This commit creates a port of it to SerenityOS.
    
    The flatbuffers build process generates three things: some header files,
    a library (libflatbuffers) and a schema compiler (flatc).
    
    There are tests, but they are not compiled, because it runs the
    flatbuffers schema compiler, one of the things we are cross-compiling.
    The compiler will not run because the target is different from the host
    arthurmco committed Apr 3, 2021
    Configuration menu
    Copy the full SHA
    18f38e4 View commit details
    Browse the repository at this point in the history
  2. ports/flatbuffers: remove unneeded redefinition of PATH_MAX

    PATH_MAX was already defined in <limits.h>, a file that already
    has been included in the file we were patching
    
    So, no need to patch that file at all
    arthurmco committed Apr 3, 2021
    Configuration menu
    Copy the full SHA
    b407583 View commit details
    Browse the repository at this point in the history