-
-
Notifications
You must be signed in to change notification settings - Fork 514
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
Couldn't find libbhFLEX.dylib #20
Comments
Did you make sure to clone the repo with |
Which version of macOS, Xcode build tools, theos and gnu make are you running? If you could run these commands and post the results that'd be great. xcode-select --version
cd $THEOS && git rev-parse --short HEAD
make --version |
Looks like your mac is using GNU make provided by macOS (which hasn't been updated since 2006 because of copyright things). This article covers how to switch to a newer version of make: https://theos.dev/docs/parallel-building Essentially: brew install make
echo PATH=\"$(brew --prefix make)/libexec/gnubin:\$PATH\" >> ~/.zprofile Try this out and attempt to build it again. Feel free to tell me how it goes, so I can update the documentation if this is what fixes it! |
Alright, I've managed to resolve the issue with compiling libFLEX. It turned out that there were errors stemming from conflicting SDK versions—specifically, I had SDK 17.4 conflicting with 16.1. Removing these conflicting SDKs allowed libFLEX to compile perfectly, even with an older GNU version. So the ipa has been generated successfully |
Glad it worked out in the end! @jobsgonnawork try removing any conflicting sdks to see if that fixes your problem as well! |
Yeah just remove all the sdks (you can re add them later) from ios 16.0-17.4 this should fix |
I had the same problem and I don't see
before |
exactly what i mentioned in my PR. |
Fixed as of the most recent commit. Thanks @asdfzxcvbn :) |
The text was updated successfully, but these errors were encountered: