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

Apple Silicon build #388

Open
MatheusVBellini opened this issue Jan 18, 2025 · 0 comments
Open

Apple Silicon build #388

MatheusVBellini opened this issue Jan 18, 2025 · 0 comments

Comments

@MatheusVBellini
Copy link

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; }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant