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: ...
11
votes
5answers
4k views

“bad codegen, pointer diff” linker error with Xcode 4

Recompiling a C++ iPhone app with Xcode 4 I get this nasty linker error: ld: bad codegen, pointer diff in __static_initialization_and_destruction_0(int, int) to global weak symbol ...
10
votes
2answers
4k views

libz.dylib versus libz.1.2.3.dylib versus libz.1.2.5.dylib

I asked this in a comment but this seems like an issue that deserves its own question. I have a project that's shared between three different installations of XCode and two different installations of ...
9
votes
2answers
2k views

xcode project-/target-settings-syntax for linker flag force_load on iPhone

I am confronted with the double bind, that on the one hand for one of the 3rd party static libraries, my iPhone application uses, the linker flag -all_load has to be set in the application project- or ...
8
votes
5answers
699 views

How to prevent a globally overridden “new” operator from being linked in from external library

In our iPhone XCode 3.2.1 project, we're linking in 2 external static C++ libraries, libBlue.a and libGreen.a. libBlue.a globally overrides the "new" operator for it's own memory management. However, ...
8
votes
3answers
12k views

Xcode / GCC linking issue: file is not of required architecture

I am trying to port a windows project that includes boost 1.37 and wxwidgets to the Mac. It compiles ok, but the linker gives me a "file is not of required architecture for architecture ppc" error for ...
7
votes
1answer
175 views

Why do static functions eliminate undefined symbols in Xcode?

I am attempting to use I/O kit and have linked to I/O kit properly. When I use a function in I/O kit and don't call it within a static function, I get the following error Undefined symbols for ...
7
votes
5answers
21k views

Linking Libraries in Xcode

I'm using a powerbook (osx 10.5) and recently downloaded and installed FFTW 3.2 (link text). I've been able to compile and run some simple programs based on the online tutorial using the terminal: ...
6
votes
4answers
26k 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 ...
5
votes
3answers
206 views

Objective C with some C++ code won't compile

I have an Objective C project with some C++ code, and sure enough the C++ code won't compile I understand that the compiler makes assumptions about which language to compile, but I have seen this app ...
5
votes
2answers
2k views

Linker Error: iPhone Unit Test Bundle referencing App classes

Starting with an app already in development, I have carried out the instructions in the iPhone Development Guide – Unit Testing Applications I can successfully include and use my App's classes in ...
4
votes
2answers
528 views

Make Xcode automatically link against the libraries needed by objects in static library

I have a xcode project with a target that builds a ‘Cocoa Touch Static Library’, the user can successfully depend on this project from her app project and link against the library. However, some of ...
4
votes
1answer
880 views

Xcode — get force_load to work with relative paths

Some libraries require the -all_load linker flag when linking to an Xcode project. However, this leads to a linker error if there are symbol conflicts among libraries. The solution is to use ...
4
votes
2answers
242 views

Imported files not recognized in OCUnit

I am doing unit testing on my iPhone app using OCUnit on XCode 3.2.3, and iOS 4.0. I have successfully set up my testing environment to pass and fail basic tests appropriately, but when I import my ...
4
votes
2answers
3k views

Adding libraries to a project in xcode - symbols not found

I am trying to make an iphone app in xcode that uses pjsip. The problem is I don't know how to link the libraries. This is the first time i am using other libraries so probably i am doing something ...
4
votes
3answers
7k views

XCode linking error when targeting armv7

I've already spent countless hours puzzling over this, utilizing Google searches and other Stack Overflow questions to no avail. I have an iPhone/iPad universal application, which seems to compile ...
4
votes
7answers
21k views

Linking Error in Xcode

I am getting this error after adding the libxml2.2.dylib file Linking /Users/Biranchi/Desktop/Funmovies TabBarController/build/Debug-iphonesimulator/funmovies.app/funmovies (1 error) in ...
3
votes
1answer
301 views

framework not found issue

Getting following error in xcode 3 simple cocoa application: ld: framework not found SDL collect2: ld returned 1 exit status But framework exists here /Library/Frameworks/SDL.framework . What am i ...
3
votes
2answers
609 views

Linking error for unit testing with XCode 4?

I want to write some logic unit tests for classes in my XCode application. In Xcode 4, I clicked on the project name in the Project Navigator, and from the bottom clicked Add Target. I chose "Cocoa ...
3
votes
1answer
355 views

How can I convince Xcode to emit a duplicate symbol linker error?

Here's a different one from the usual confusion over duplicate symbol errors... :-) I'm working on some legacy Mac code in an Xcode project that has the same global, "trace", defined in several ...
3
votes
1answer
182 views

Linker can't find CTFontCreateWithNameAndOptions

I am trying to use CTFontCreateWithNameAndOptions() from CoreText and the linker is saying "Symbol(s) not found", specifically for _CTFontCreateWithNameAndOptions. I added CoreText.framework and am ...
3
votes
2answers
2k views

iOS 4.1 SDK - Duplicate Symbols in Multiple Static library Linking for Device Builds

My company is building an app with SDK 4.1 for the iPhone. To do this we have 3 levels of project dependencies, our main App "CSM" is linking to our SDK called "csm-sdk" (in libsrc_csmsdk.a) csm-sdk ...
3
votes
5answers
3k views

Linker errors after upgrade to xcode 3.2.3 for iphone app

I've just upgraded to XCODE 3.2.3 and upgraded my base sdk from 3.0 to 3.2 iphone sdk. After doing this I started getting a bunch of link errors with barely any info, here's what I got: ...
3
votes
2answers
3k 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 ...
3
votes
2answers
1k views

Beginner questions regarding to “building a library”, in Xcode on iPhone specifically

I have never been clearly understand all these linking/building/dependency business. Now, I am trying to build the FreeType library (which is in C++), into the *.a library file for the iPhone (because ...
3
votes
3answers
3k views

Force static linking of library linked to Xcode target?

My Xcode target links against hdf5 library (using the Link Binary with Libraries build phase). libhdf5 is installed using MacPorts, thus /opt/local/lib contains both the dynamic (.dylib) and static ...
2
votes
1answer
36 views

Understand xcode linking (ld)

After running into linker errors one time too many, I have come to the conclusion that I really need to understand how ld works, rather than just asking SO for black magic fixes everytime something ...
2
votes
0answers
29 views

Preserving Header Directory Structure in Xcode for Static Library

I'm developing a static library in C++ using Xcode. I have an Installation Directory set where it copies all of my public header files, but when I compile it just copies all the headers into one ...
2
votes
3answers
247 views

XCode 4.2 static libraries linking issue

I have Core static library, a few Component static libraries that relays on the Core one, and then there is an App that links against both Core and Component libraries. My App can link both against ...
2
votes
1answer
216 views

iOS conditional link static library

I have a fat static library compiled for armv7 and i386. In my iPhone/iPad project everything works fine, but i can only install my application on armv7 device so iPhone 3gs and up... There is a way ...
2
votes
1answer
779 views

Apple Mach-O Librarian (libtool) error with no specific error

I've had to deal with plenty of libtool errors previously, but I really don't know what to do with one that doesn't give me a hint. Here is the full error: Libtool ...
2
votes
1answer
312 views

Xcode4: “bad codegen, pointer diff” linker error again

This question is related to this: "bad codegen, pointer diff" linker error with Xcode 4 and "bad codegen, pointer diff in boost" error in 32-bit build and XCode 3.2.6 and 4 linker ...
2
votes
2answers
561 views

linking objective-c categories in a static library

I am developing a plugin for an iOS application. I am compiling it into a .a file which is then used by the main xcode project. So far I have create a category of the UIDevice class in this library. ...
2
votes
2answers
582 views

IOS: create a link button

I want to create an IBAction for a button, that when you push it, the app go in background and at the same time open safari at a specific link (example "www.google.it") Can you help me?
2
votes
2answers
207 views

Need help linking to bundle on OS X

I'm an experienced Java coder, but I'm new to XCode and C++, so sorry for the dumb question. I'm writing some c++ code in XCode that needs to instantiate a Java Virtual Machine. There is a method in ...
2
votes
2answers
448 views

Xcode cannot resolve zlib symbols

I use the zlib library to do data compression in a command line tool for Mac. On Xcode 4, I get an error "undefined symbol" on zlib functions. I search for the libz.dylib on mac computer and I find ...
2
votes
1answer
1k views

Xcode keeps searching dylib at wrong path

Thats my error: dyld: Library not loaded: /usr/local/lib/libofa.0.dylib Referenced from: /sers/david/Projekte/Test/build/Debug/Test.app/Contents/MacOS/Test Reason: image not found I've done some ...
2
votes
2answers
353 views

How can I isolate third-parties' C/C++/ObjC libraries' symbols from each other?

I have a project that needs to incorporate two third-party libraries, libA and libB. I have little, if any, influence over the third-party libraries. The problem being is that both libA and libB ...
2
votes
2answers
3k views

Static library dependency compiles in simulator on Xcode 3.2.3, fails on device

Upgrading to XCode 3.2.3 and iPhone 3.2/4.0 SDK has introduced a strange bug into my build process. I have a static library, Compton, which itself depends on three20. I build Compton as a dependency ...
2
votes
2answers
5k views

Enable LLVM + Clang in Xcode new project causes linking errors

I've done a complete clean uninstall of XCode and deleted the prefs and deleted complete /Developer folder and reinstalled XCode again. I create a new Cocoa application, go over to Target, doing a ...
2
votes
1answer
429 views

Size of static libraries generated by Xcode

I have a project tree in Xcode that looks like this: AppProject depends on ObjcWrapper which in turn depends on PureCppLib. ObjcWrapper and PureCppLib are static library projects. Combined, all ...
2
votes
3answers
1k views

GH-Unit for unit testing Objective-C code, why am I getting linking errors?

I'm trying to dive into the quite frankly terrible world of unit testing using Xcode (such a convoluted process it seems.) Basically I have this test class, attempting to test my Show.h class ...
2
votes
1answer
729 views

Is it possible to force an Xcode project to clean before it builds?

In my Xcode project, I've created a symbolic link script in the target that allows me to edit my scripts and see the updates live. Unfortunately, a side-effect of this is that if I don't clean before ...
2
votes
2answers
724 views

How do I use a 3rd party C library in Xcode for my iphone project?

love this site and all helpful people! I'm newbie to Xcode and iPhone programming but I've pretty much got the hang of using the SDK to make programs in Obj-C (simple programs right now but make me ...
2
votes
1answer
302 views

Linking in Xcode

How do I make Xcode link object files properly? The file containing "main" and all the dependencies compile properly (and I can easily link them in the command line to generate the executable). ...
2
votes
5answers
2k views

Errors in linking during build with Core Plot

I have just added a Core Plot view to my application based on a tutorial (http://www.switchonthecode.com/tutorials/using-core-plot-in-an-iphone-application). I have put the Core Plot drawing code in ...
2
votes
2answers
1k views

Why doesn't Xcode recognize my LIBRARY_SEARCH_PATHS?

I've set LIBRARY_SEARCH_PATHS to /opt/local/lib, and verified that the library in question is there (I'm linking to GLEW): $ls /opt/local/lib libGLEW.1.5.1.dylib libfreetype.a libz.a ...
2
votes
2answers
4k views

Framework linking error, image not found?

I'm using DarwiinRemote's WiiRemote.framework in my app. I already fixed some issues by downloading the source code and requiring garbage collection, and building for 10.5. However, when I try to ...
1
vote
1answer
41 views

Undefined symbol after removing function from source code

I've removed a function from my Objective-C source code and now the linker complains that there's an undefined symbol referenced in CacheMgrViewController.o. I've tried cleaning the project. I've ...
1
vote
2answers
98 views

Link Objective-C application to C++ static library

I am trying to use Xcode to build an Objective-C desktop application that links against a static C++ library. I am using the Apple's clang compiler. I am getting the following linker error: Apple ...

1 2 3