-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Error in Makefile using (ar) utility for Mac. #43
Comments
Yeah, I saw the same problem with |
Is the purpose of the |
macOS ar(1) does not support '--'. Fixes nayuki#43, nayuki#95, nayuki#170.
The Makefile contains the following (on line 72)
$(LIBFILE): $(LIBOBJ) $(AR) -crs $@ -- $^
The command fails on MacOS High Sierra because the
ar
utility does not recognize the--
as valid syntax. Removing the double dash, solved the issue for me.The text was updated successfully, but these errors were encountered: