Tagged Questions
The duplicate-symbol tag has no wiki summary.
8
votes
3answers
6k views
How can I avoid “duplicate symbol” errors in xcode with shared static libraries?
I have static libraries A, B and C organized into Xcode projects. A and B depend on C. When I build an iPhone project that depends on A and B, I get a linker error that a duplicate symbol (from C) ...
2
votes
2answers
351 views
ld: duplicate symbol _objc_retainedObject on iOS 4.3 , but not on iOS 5.0
Some background - I've built a custom Framework using Diney's guide at http://db-in.com/blog/2011/07/universal-framework-iphone-ios-2-0/
Its built for both armv6 / armv7 , its an ARC-based ...
2
votes
2answers
1k views
C++ Duplicate Symbol error when defining static class variable in XCode
I have a static class member incremented in the constructor. As per the rules, it is declared in the class and defined outside. This should be totally legal. Any ideas why I'm getting a duplicate ...
1
vote
2answers
23 views
Duplicate symbol _FOO in a.o and b.o - not the usual cause in C++
First of all, thanks for all of the great info on this site. It's always my first port of call for programming problems. Unfortunately I couldn't find none of the solutions mentioned in other posts ...
1
vote
0answers
65 views
“ld: duplicate symbol” issue in XCode cross-compilation
I am trying to cross-compile a project for the iOS (which is written in windows) and is based on openCV. And then I am trying to use these cross-compiled openCV libs for a specific application (called ...
1
vote
1answer
143 views
Restkit + MKStoreKit: duplicate symbol because of JSONKit
I'm using MKStoreKit in my application. Now I'd like to add RestKit as well, but after adding RestKit, I get the following error message in XCode:
Duplicate symbol ...
1
vote
4answers
157 views
Duplicate Symbol in C
I have two source files:
Source FIle 1 (assembler.c):
#include "parser.c"
int main() {
parse_file("test.txt");
return 0;
}
Source File 2 (parser.c):
void parse_file(char *config_file);
...
1
vote
2answers
3k views
Xcode Exit Code 1 - Duplicate Symbol
Sorry I know this has been covered all over the place, only I can't fix this to save my life.
If someone could explain clearly what I might have done and what I might be able to do to fix this I ...
1
vote
2answers
228 views
Linker error with Duplicated Symbols, SWIG and C++ Vectors
I came across this error trying to compile a shared object from 2 sets of objects. The first set contains one .os object compiled from one cpp file generated by SWIG. The second set is contains all ...
0
votes
2answers
491 views
Duplicate symbols, GTMOAuth2 and Facebook SDK for IOS both using SBJSON
I have an app in which I have implemented facebook login. I copied the sources from the facebook sdk directly into my project. Now I need to add google login. This time I have added GTMOAuth2 as a ...
0
votes
0answers
208 views
duplicate symbol while loaded lazy static lib
I'm new at programming with xcode and ios ect. and I get an Apple Mach-O Linker Error like this:
ld: duplicate symbol TestTypeArray<unsigned char, &(ClearNothing(void*))>::TestTypeArray()in ...
0
votes
2answers
402 views
Strange ld error
I have a project consisting of two files, main.c and logoff.c. When I try to compile them I get this error:
gcc -c -g -Wall main.c
gcc -c -g -Wall logoff.c
gcc -o main -g -Wall main.o logoff.o
ld: ...