The duplicate-symbol tag has no wiki summary.
0
votes
1answer
21 views
unordered_set with custom predicate make linker error (duplicate symbol)
i'm stuck with a little problem: i have a unordered_set which contain a struct. I have already implemented the hash function. But when i have first compiled my program, i 'v got some compiler error ...
-2
votes
1answer
199 views
duplicate symbols for architecture armv7
Getting following error when try to use Layar SDK in my existing app. How can I solve this?
Ld ...
0
votes
0answers
33 views
Duplicate Symbole in xCode, But no duplicate exist
The Problem
Xcode (Version 4.6.1 (4H512)) is complaining a duplicate symbole problem.
duplicate symbol _OBJC_METACLASS_$_PacksStoreHelper in:
...
0
votes
2answers
135 views
Apple Mach-0 linker error duplicate
I have written a straight forward program, but getting duplicate symbol linker error (error below) There is nothing additional in the .h file excepting for the @interface Fraction : NSObject @end
I ...
0
votes
0answers
88 views
Removing few symbols from .o file in a static library
I encountered the duplicate symbol issue while compiling my ios project that has two static libraries which has conflicting symbols. I used nm command to list out the symbols in both the libraries ...
1
vote
1answer
150 views
XCode: Duplicate Symbol
I have a C function heightParameter that is a simple tool that I use in a couple of my UIViewControllers. I am declaring this only in my main implementation of each UIViewController subclass (in the ...
0
votes
1answer
107 views
Duplicate Symbol _OBJC_CLASS_$_LoginController
I know this Question has been asked many times before, but none has solved my problem uptill now. I know that this error occurs when you got multiple copies of your file in project.
I tried to clean ...
2
votes
0answers
161 views
Migrating from Wix 2 to Wix 3: Duplicate Symbols
I am totally new to WiX, so of course my first task with WiX is to migrate an existing large installation program from WiX 2 to WiX 3. I've had a number of wrinkles most of which have been sorted, ...
3
votes
1answer
170 views
duplicate symbol and application crash
I am compiling a program on AIX. It is compiled successfully but gives following warnings:
ld: 0711-224 WARNING: Duplicate symbol: .basename
ld: 0711-345 Use the -bloadmap or -bnoquiet option to ...
-1
votes
2answers
618 views
Preventing “duplicate symbol” errors with iOS frameworks
Apple uses the following code in the header of all its framework classes.
#if !defined(__COREFOUNDATION_CFARRAY__)
#define __COREFOUNDATION_CFARRAY__ 1
...
#endif
Is this a recommended approach for ...
0
votes
0answers
2k views
Duplicate symbol in C using Clang
I am currently working on my first "serious" C project, a 16-bit vm. When I split up the files form one big source file into multiple source files, the linker (whether invoked through clang, gcc, cc, ...
0
votes
1answer
340 views
Xcode error: Command /Developer/usr/bin/clang++ failed with exit code 1 due to duplicate symbol
I'm trying to write a program in C++ which runs Conway's Game of Life. I think I have everything that I need, but I'm having some trouble with compiling.
The program is composed of four files: ...
3
votes
1answer
1k views
Duplicate symbol error when linking multiple static libraries.
There are a fair number of related questions out there already, but I'm just not getting this resolved. I'm building an application that includes two separate static libraries: RestKit and another ...
1
vote
3answers
3k views
How do I fix this duplicate symbol error?
From the error I am getting:
ld: duplicate symbol _main in ...
1
vote
2answers
81 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
297 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 ...
8
votes
2answers
3k 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
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
3k 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);
...
0
votes
2answers
1k 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 ...
2
votes
3answers
7k 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
410 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 ...
19
votes
3answers
15k 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
2k 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
504 views
Strange ld error about duplicate symbol
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: ...


