-
Notifications
You must be signed in to change notification settings - Fork 83
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
build script fails on newer version of MacOS #38
Comments
|
I tried installing Clang on WSL1 (both Clang 10 and Clang 12), and I didn't seem to get the error. Clang simply treated it as a warning. The only way I could get it to error is by explicitly setting |
From: https://developer.apple.com/documentation/xcode-release-notes/xcode-12-release-notes
|
(Should have posted in the above message <:masuda:544196054740893706>) So the solution is either to add |
Facing same issues on Macbook Pro M1 (Apple Silicon) with Big Sur 11.2.1, any updates? |
MacBook Pro with Big Sur 11.2.2 here, same issue. |
This commit makes it build, but it catches somewhere else and I cannot figure out why. |
Not working for me: |
I never encountered anything like that and I'm not really equipped to tell you why it's happening either. Apparently downloading gmake and gcc will make it function like on other systems and it'll no longer be a problem, so I guess that's the solution now. |
Any tutorial to how to configure them on macos? Because I'm supposed to have GNU Make 3.81 and the latest gcc-arm-none-eabi |
I'm not sure, I just know that's what luckytyphlosion was talking about on the Discord. |
His repo doesn't allow issues and Pret hasn't updated this issue so I guess I'm stuck :/ |
I am lazy and busy, ask in 3-4 weeks when I'll have more time |
what about now (?) |
Join the Discord (check any one of the decompilation readmes) and I can help resolve the macOS problem. |
Segfault seems to be specific to Macs with M1 |
Fixed in #39 |
On MacOS Catalina and above, builds of the agbcc project always fail. Several people have reported this problem in various places in the discord server, myself being one of them.
Symptoms generally include the build.sh script failing partway through with the following error:
and/or attempt to call
make
on one of pret's projects failing with the following error:The problem may lie in the fact that mac uses clang for its implementation of gcc, but simply installing gcc via homebrew does not fix the problem. Manually bypassing clang (by setting
CC
to a specific version installed via homebrew likegcc-9
orgcc-10
) seems to function as a workaround in the meantime.Ideally, the build script should deal with the potential problem and either fix or give instructions for fixing the problem. Failing that, some sort of documentation on how to set up agbcc on new MacOS would help greatly.
The text was updated successfully, but these errors were encountered: