-macosx_version_min,10.5 & Undefined symbols __Unwind_Resume

Joined
Jan 27, 2010
Messages
1
Reaction score
0
Points
1
Hi,

I'm using OSX 10.6.2 and compiling and linking programs with g++. Some of my users are running 10.5.8 and programs would give error:

dyld: unknown required load command 0x80000022
Trace/BPT trap

after some checking I thought I could fix this by linking with:

g++ -Wl,-macosx_version_min,10.5 ....

But the link now fails with:

Undefined symbols:
"__Unwind_Resume", referenced from:

which looks like linking with 10.5 option is looking for different libraries.

Has anybody seen this and/or no how to fix it. (I'm a novice at Mac development)

Thanks, Colin
 

Shop Amazon


Shop for your Apple, Mac, iPhone and other computer products on Amazon.
We are a participant in the Amazon Services LLC Associates Program, an affiliate program designed to provide a means for us to earn fees by linking to Amazon and affiliated sites.
Top