Apple Silicon built applications do not work well on OSX 10.12, 10.13

We built the project to support Apple Silicon. It works normally in higher versions, but in OSX 10.12, 10.13, the following error occurs and does not work. The same error occurred when adding libSystem.B.dylib, so I ask for your help.


Code Block swift
dyld: lazy symbol binding failed: Symbol not found: ____chkstk_darwin
Referenced from: ...dylib
Expected in: /usr/lib/libSystem.B.dylib
dyld: Symbol not found: ____chkstk_darwin
Referenced from: ...dylib
Expected in: /usr/lib/libSystem.B.dylib


Answered by DTS Engineer in 675284022
Have you set your deployment target to include the oldest system you support? That’s the most common cause problems like this.

Share and Enjoy

Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"
Accepted Answer
Have you set your deployment target to include the oldest system you support? That’s the most common cause problems like this.

Share and Enjoy

Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"
Apple Silicon built applications do not work well on OSX 10.12, 10.13
 
 
Q