3
votes
4answers
320 views
How can I link a dynamic library in x-code?
I am currently developing a program in Qt and it uses the library libqextserialport.1.dylib.
I build it and run in x-code and it spits back:
dyld: Library not loaded: libqextserialport.1.dylib
…
2
votes
1answer
59 views
Copying dynamic library (.dylib) into a framework (.framework)
I have two XCode projects: a framework and a client application.
My application depends on my framework and everything works fine with that — the framework is being recompiled everytime the app is, …
2
votes
2answers
263 views
linking and using a C++ library with an Objective-C application
I'm writing a graphical application using Objective-C for the front end and C++ for the graphics processing and network communication. I read around on Apple's site looking for a way to link either a …
2
votes
1answer
208 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
4answers
4k 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 …
1
vote
1answer
45 views
Create jnilib from x86_64 .a files on Mac OS X 10.6
I want to use a bunch of non-universal (thin?), x86_64, C libraries from a Java application.
The problem is that I only have static versions of them (.a files) and the jvm needs them to be dynamic.
I …
1
vote
1answer
256 views
creating a .dll on a mac: .dylib or framework?
Hi all,
I need to create a Mac version of our libraries for one of our customers. I am not so familiar with dynamic libraries on Mac, but from what I understand, I have 2 options: .dylib or …
0
votes
2answers
41 views
dynamic libraries in XCode
I am trying to create an mac application in XCode that has some of its implementation in a dynamic library.
I added a new target (dynamic library) to my XCode cocoa project and after a bit of …
0
votes
0answers
32 views
Creating a plain C shared library in Mac OS that uses Objective-C libraries
Hi, I want to create a plain BSD library in Mac OS which provides a plan C wrapper for Objective-C bases system APIs (like the CoreLocation API).
Although I've written and gotten this to compile, it …
0
votes
1answer
27 views
Using a category in a dylib to extend a binary’s class
Hello,
I have an objc app that has the class Foobar and I want to make a dylib that will be loaded into that app on start and extends the class Foobar with a few methods.
Unfortunately I cannot …
0
votes
1answer
68 views
Removed MAMP from OS X, dyld still using MAMP libraries
When I try and use a populator or sphinx on a Ruby app I keep receiving dyld errors. I used to use MAMP on OS X Leopard but since I've upgraded to Snow Leopard and am now using standalone MySQL (10.5 …
0
votes
2answers
367 views
How to specify compatibility version for dylib in iPhone projects?
I recently added a static library (mobclix) to my iPhone project which required me to set the Base SDK to 3.0. This library is claimed to be compatible with 2.2 and so far it looks like it's true. I …
0
votes
1answer
279 views
iphone warning libsqlite3.dylib is not of required architecture?
I'm writing an iPhone app which seems to run fine on the simulator, however when I try and run it on the device I get a libsqlite3.dylib, file is not of the required architecture error. I'm using os …
0
votes
1answer
102 views
Setting a charset symbol in dylib
I use an old Powerbook G4.
While trying to update the macports (sudo port -d selfupdate) following error exist.
dyld: lazy symbol binding failed: Symbol not found: _locale_charset
Referenced from: …
