Skip to content

Apple Silicon build #388

@MatheusVBellini

Description

@MatheusVBellini

I have a M1 MacBook Air and I built Ripes for it and I would like to include it in the pre-build binaries.
The change that I had to do to source code to achieve this was only this:

In file

Ripes/external/VSRTL/external/cereal/include/cereal/external/rapidjson/document.h

In line 319 there is this block of code:

GenericStringRef& operator=(const GenericStringRef& rhs) { s = rhs.s; length = rhs.length; // <-- error (length is const) return *this; }

And I commented out the error:

GenericStringRef& operator=(const GenericStringRef& rhs) { s = rhs.s; return *this; }

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions