ipalibowhyte
ipalibowhyte

Reputation: 1563

Soundcloud Apple Mach-O Linker error when running from Iphone device

My program runs fine when i use the simulator however, when i try run it on an ios Device i get the apple mach-o linker error. This only started to happen when i added the soundcloud api

This is the error I'm getting:

enter image description here

Upvotes: 0

Views: 153

Answers (1)

quellish
quellish

Reputation: 21244

This means the library you are linking against (Soundcloud) was not built for arm64. It looks like some of your other dependancies (like JSONKit) were also not built for arm64.

If you change your build architectures to only build for the architectures you can support (armv7, armv7s), that is one way of fixing the problem.

Upvotes: 1

Related Questions