-
Notifications
You must be signed in to change notification settings - Fork 116
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
Does not work on arm #91
Comments
i386 (32 bits) has been deprecated for a long time on macOS, not supported by libSystem, and it thus breaks compilation with the following error: ``` ld: warning: The i386 architecture is deprecated for macOS (remove from the Xcode build setting: ARCHS) ld: warning: ignoring file /Library/Developer/CommandLineTools/SDKs/MacOSX15.0.sdk/usr/lib/libSystem.tbd, missing required architecture i386 in file /Library/Developer/CommandLineTools/SDKs/MacOSX15.0.sdk/usr/lib/libSystem.tbd (3 slices) ld: dynamic executables or dylibs must link with libSystem.dylib for architecture i386 cc: error: linker command failed with exit code 1 (use -v to see invocation) ``` Fix ku1ik#91
@tejassharma96 You can try this: #92 |
neat, will give it a try |
this definitely builds now, but I haven't been able to get it to work after exporting |
@tejassharma96 For me the following works. I have it in my
What command did you try it with? |
first I tried it with the alias:
but the output was just white then I tried
but again the output was white. I'll try putting it in my zshrc and starting a new shell |
no luck 🤷 it's probably a bad interaction with something else in my shell environment, I have several customizations... |
Was curious about trying this out, but I am on an M1 mac and this tool does not appear to support arm. I'm not familiar enough with c/makefiles/anything going on here to attempt to make those updates myself 😅
The text was updated successfully, but these errors were encountered: