Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ParseCrashReporting - Apple Mach-O Linker Error after enabling it

I had Parse iOS SDK v1.2.20 on my app. After updating it to the latest version (v1.8.0), I got 23 Apple Mach-O Linker errors.

The only thing I did is deleted the Parse.framework file and replaced it with the new Parse.framework and Bolts.framework. I don't understand why I get so many errors. They all start with "_sqlite3". If I click any error, it shows me a detailed page, which starts with Undefined symbols for architecture x86_64 Does someone know what is going wrong?

Appreciate any help.

like image 228
alvarolopez Avatar asked Dec 12 '14 16:12

alvarolopez


Video Answer


2 Answers

Linking libstdc++6.0.9.dylib and libsqlite3.0.dylib worked for me. It could be the flag, but I doubt it. Try adding libstdc and see if it works.

like image 192
Michael Royzen Avatar answered Oct 20 '22 10:10

Michael Royzen


Double check that you're importing the correct libraries - see below:

enter image description here

like image 43
Zorayr Avatar answered Oct 20 '22 11:10

Zorayr