kpwn / yalu102

incomplete iOS 10.2 jailbreak for 64 bit devices by qwertyoruiopz and marcograssi

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

cannot compile at xcode 9

d0uub opened this issue · comments

commented

system is unavailable : not available on iOS

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

commented

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