-
-
Notifications
You must be signed in to change notification settings - Fork 178
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
Mac M1 fails to build while building tests #140
Comments
Will try to do it today. |
@dlmanning Ive updated libsdptransform with latest Catch and latest jsoncpp. Trying to do the same here. |
But will do another day because Gellert decided that today was a good day to create yet another menubar related PR. |
@dlmanning working on PR #151 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Steps to reproduce
OSX_VERSION: 12.1 Monterey
Via tutorial first install depot tools and then:
Where is the bug
While doing
make -C build/
we get:What worked
Based on different issue replacing
#define CATCH_TRAP() __asm__("int $3\n" : : ) /* NOLINT */
with#define CATCH_TRAP() asm(".inst 0xd4200000")
inlibmediasoupclient/deps/libsdptransform/test/include/catch.hpp:7855
worked!Solution
I have no idea, I don't really know C++, but this might help someone smarter create a sufficient solution.
The text was updated successfully, but these errors were encountered: