Yalu102: cannot compile at xcode 9

Created on 2 Nov 2017  路  5Comments  路  Source: kpwn/yalu102

system is unavailable : not available on iOS

Most helpful comment

You can replace system call with popen, e.g. instead of using:

system("killall -9 cfprefsd");

use:

popen("killall -9 cfprefsd", "r");

Hope it helps!

All 5 comments

Having this issue too.

You can replace system call with popen, e.g. instead of using:

system("killall -9 cfprefsd");

use:

popen("killall -9 cfprefsd", "r");

Hope it helps!

could also modify stdlib.h in your sdk and remove __IOS_PROHIBITED

system() is still a valid call in iOS 11+, just doesn't exist in tvOS

@d0uub just get the function pointer before the app lanuched.
For example you can have a look of my fork https://github.com/Bluelich/yalu102

@bluelich
Ok, thanks. Let me try later..

Was this page helpful?
0 / 5 - 0 ratings

Related issues

iM4CH3T3 picture iM4CH3T3  路  6Comments

iAdam1n picture iAdam1n  路  7Comments

WavingLawyer644 picture WavingLawyer644  路  7Comments

jackiossy picture jackiossy  路  5Comments

ramisali85 picture ramisali85  路  3Comments