Tagged Questions
13
votes
1answer
2k views
Apple Mach-O linker (id) warning : building for MacOSX, but linking against dylib built for iOS
Starting from some point in the past xCode 4 in complaining about linker problems:
ld: warning: building for MacOSX, but linking against dylib built for iOS: ...
6
votes
4answers
25k views
How do I create a dynamic library (dylib) with Xcode?
I'm building few command-line utilities in Xcode (plain C, no Cocoa). I want all of them to use my customized version of libpng, and I want to save space by sharing one copy of the library among all ...
3
votes
2answers
896 views
How to insert a LC_LOAD_DYLIB command into a Mach-O binary (OSX)
I'm looking to patch a piece of abandonware with some code.
The software is carbon based, so I can not use an InputManager (at least, I do not think I can). My idea was to add a dylib reference to ...
2
votes
0answers
138 views
Remove dependent shared library from a dylib?
I know that I can use the -change option of install_name_tool to change the name of a dependent shared library stored in a dylib, but is there a way to remove a dependent shared library, which I ...
0
votes
0answers
28 views
Add load command to mach-o binary
Is it possible to add an LC_LOAD_DYLIB to a binary? There has been protection against DYLD_INSERT_LIBRARIES being used so I need another to load a dylib into an app