Is it possible to create internally linked MacOS binaries? #1894
Unanswered
cyberguerilla68
asked this question in
Q&A
Replies: 1 comment 4 replies
|
I was able to disable chained fixups by adding linkmode=internal to the ldflags in server/gogo/go.go, I will report back on my progress |
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
I am trying to create a dylib that can be used with apple's deprecated implementation of reflective loading, and it requires that the binaries be internally linked. Is it possible/feasible to do this with sliver? So far I modified the source code to include -linkmode=internal as a linker flag, but it throws an error because it is trying to enforce externally linked binaries.
All reactions