Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So I programming an iOS game and I'm using arc4random_uniform for choosing a random powerup.

On the Sim, it works fine, but on my phone it throws this error (from the syslog):

Nov 26 13:44:26 iPhone ----[2184]: placePowerupCalled
Nov 26 13:44:26 iPhone UIKitApplication:com.yourcompany.-----[0x1f08][2184]: dyld:  lazy symbol binding failed: Symbol not found: _arc4random_uniform
Nov 26 13:44:26 iPhone UIKitApplication:com.yourcompany.-----[0x1f08][2184]:   Referenced from: /Applications/------.app/-----
Nov 26 13:44:26 iPhone UIKitApplication:com.yourcompany.------[0x1f08][2184]:         Expected in: /usr/lib/libSystem.B.dylib
Nov 26 13:44:26 iPhone UIKitApplication:com.yourcompany.------[0x1f08][2184]: dyld: Symbol not found: _arc4random_uniform
Nov 26 13:44:26 iPhone UIKitApplication:com.yourcompany.-----[0x1f08][2184]:   Referenced from: /Applications/------.app/-------
Nov 26 13:44:26 iPhone UIKitApplication:com.yourcompany.-----[0x1f08][2184]:   Expected in: /usr/lib/libSystem.B.dylib
Nov 26 13:44:27 iPhone ReportCrash[2185]: Formulating crash report for process -----[2184]
 Nov 26 13:44:27 iPhone com.apple.launchd[1] (UIKitApplication:com.yourcompany.-----[0x1f08][2184]): (UIKitApplication:com.yourcompany.-----[0x1f08]) Job appears to have crashed: Trace/BPT trap
Nov 26 13:44:27 iPhone SpringBoard[2161]: Application '-----' exited abnormally with signal 5: Trace/BPT trap

I'm not quite sure what the problem is. I've even included the header file arc4random should come from (#include "stdlib.h"), but that hasn't worked.

Anyone have any ideas? Thanks !:)


EDIT: I tried linking binary with the "libSystem.b.dylib" library, but that didn't work either and it's still crashing from the same error.

share|improve this question
Put some effort in your question. I don't even know where to begin editing this question. – Nasreddine Nov 26 '11 at 19:04
sorry -- i'll remove the second half, put it as a new question that makes more sense, and make other edits --sorry :/ – Robby Cohen Nov 26 '11 at 19:06
1  
Please edit this question. Do not create/ask a new one. – Nasreddine Nov 26 '11 at 19:10
Even if the question really doesn't have anything to do with the first question -- i.e. syslog errors and jailbroken iphone .plist finding? – Robby Cohen Nov 26 '11 at 19:15

2 Answers

up vote 5 down vote accepted

arc4_uniform function was added in iOS 4.3 and won't run on lower versions. Looks like you run simulator on 4.3 or higher but your device has lower iOS version. If you plan to support your app on versions lower than 4.3, try using this instead:

arc4random() % upperBoundExclusive

It might be not as precisely random as arc4_uniform, but will work.

share|improve this answer
Haha wow I can't believe this was the error. My device is running 4.2.1. Thank you! – Robby Cohen Dec 4 '11 at 13:40

arc4random_uniform is not available below iOS 4.3. Luckily iOS will bind this symbol at runtime and assign it to null if it's not available (hence your "lazy symbol binding" errors).

So the best way to use arc4random_uniform is to check if it's available first, like this:

#include <stdlib.h>
...
int r = 0;
if (arc4random_uniform != NULL)
    r = arc4random_uniform (100);
else
    r = (arc4random() % 100);
share|improve this answer
Thanks, your answer helped me fixing a OS X 10.7 vs 10.6 problem I was having. (arc4random_uniform was not yet exposed in 10.6.) – Carlo Zottmann Dec 27 '12 at 13:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.