-
Notifications
You must be signed in to change notification settings - Fork 33
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
install --strip causing problems on Mac #93
Comments
vbgl
added a commit
to vbgl/nixpkgs
that referenced
this issue
Sep 28, 2023
12 tasks
vbgl
added a commit
to NixOS/nixpkgs
that referenced
this issue
Sep 28, 2023
vbgl
added a commit
to NixOS/nixpkgs
that referenced
this issue
Sep 28, 2023
See antoinemine/apron#93 (cherry picked from commit 3dfaa2a)
PR #97 may be related to (and possibly a fix for) this problem. |
Considered closed by #97. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The command option
--strip
doesn't seem to be recognized on Mac (my version is Ventura 13.2.1).I think
install
on Mac does not like--
.I think the only place where it's used is here https://github.com/antoinemine/apron/blob/master/Makefile.config.model#L185
I replaced it with
-s
but then I get this error:Note that
install -s
callsstrip
.I've found this issue with a similar problem and it seems that we should call
strip -u
on dynamic libraries.Unfortunately, I don't know how to tell
install
command to pass the option-u
tostrip
.The text was updated successfully, but these errors were encountered: