Questions tagged [duplicate-symbol]

99 questions
2
votes
1 answer

Why two strings in Mysql are the same?

I have a problem in MySQL: Are 'amelie' and 'amélie' the same in mysql? When I use distinct for the table, they are the same. I am using MySQL 8.0.15,and find the two strings are the same. I know it's about problem of language , but I don't know how…
stephen
  • 31
  • 6
2
votes
1 answer

GoogleMobileVision GoogleSignIn duplicate symbol using Cocoapods?

I am using CocoaPods to add two frameworks. target 'TestGoogleLib' do # Comment the next line if you're not using Swift and don't want to use dynamic frameworks use_frameworks! # Pods for TestGoogleLib pod 'GoogleMobileVision' pod…
Sam Shaikh
  • 1,596
  • 6
  • 29
  • 53
2
votes
1 answer

Duplicate symbols error when including file that includes stb_image.h

In my main.h file, I #include "skybox.h". In skybox.h, stb_image.h is included (the latest version from GitHub as of 29-1-2017). Unlike any other library I've encountered, before including stb_image.h the docs say to #define…
2
votes
2 answers

112 duplicate symbols for architecture arm64

duplicate symbol _OBJC_METACLASS_$_GTMOAuth2Keychain in: /Users/anand/Library/Developer/Xcode/DerivedData/NIDA_Rooms-bawdeawpyzqrkjazbcspzbsqgrht/Build/Products/Release-iphoneos/GTMOAuth2/libGTMOAuth2.a(GTMOAuth2ViewControllerTouch.o) …
Sangu
  • 51
  • 1
  • 7
2
votes
1 answer

ld: 600 duplicate symbols for architecture x86_64 clang: error: linker command failed with exit code 1 (use -v to see invocation)

/Users/iph8/Documents/Avi/Current project/XYZ/SourceCode/April12/XYZ_April_12/XYZ/Frameworks/AppLovin/libAppLovinSdk.a(ALTaskCacheNativeAdImages.o) ld: 600 duplicate symbols for architecture x86_64 clang: error: linker command failed with exit code…
Avi
  • 21
  • 6
2
votes
1 answer

duplicate symbol _OBJC_IVAR_$_AppodealCircleTimer._font in

I just updated a framework called Appodeal in my iOS codebase and have started seeing these duplicate symbol errors. I know that these errors usually show up when a framework is included twice in the build phases so I checked this and verified that…
tbag
  • 1,268
  • 2
  • 16
  • 34
2
votes
0 answers

Need assistance with RESTKit - BitCode and Duplicate Symbols in iOS

Edited: Removed initial extraneous information that was unrelated. I have 'inherited' an Objective C project that includes two separate libraries. There are a set of dependencies that is causing errors of symbol duplication, with samples shown…
AlphaStax
  • 21
  • 4
2
votes
1 answer

Duplicate Symbols when adding Realm Cocoapod

I’m trying to use Realm for the first time in a real project, and I’ve added it via Cocoapods successfully. I’m using Xcode 6.4, but have the Xcode 7.1 beta installed on the same machine (for other projects). When attempting to build the project or…
Luke
  • 9,512
  • 15
  • 82
  • 146
2
votes
1 answer

Duplicate symbol issue with C headers

This is my first time tackling a CUDA project that's slightly more complex than the simple write-single-source-file-and-compile routine. As expected, I'm facing some issues with C headers, namely duplicated symbols. According to the linker,…
thequanticlad
  • 81
  • 2
  • 9
2
votes
1 answer

How to include C file in iOS project

I had this code in one my view controller: int randomNumber = (arc4random() % 1) + 6; Because I will need it on more places, I decided to made it as function. But I did it as C function, old habits die hard. Now I have file WOC_Random.c with this…
WebOrCode
  • 6,852
  • 9
  • 43
  • 70
2
votes
0 answers

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: …
shannoga
  • 19,649
  • 20
  • 104
  • 169
2
votes
1 answer

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, but I would be grateful for some suggestions with…
2
votes
2 answers

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 eliminating "duplicate symbol" linker errors, when…
Andrew
  • 462
  • 5
  • 15
1
vote
2 answers

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 about similar problems seemed to work. I have am…
AshB
  • 745
  • 1
  • 6
  • 7
1
vote
0 answers

"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 testApp). I was first able to successfully…