[AltJIT] Adds AltJIT CLI tool to enable JIT on devices running iOS 17+

Commands:

altjit enable [app/pid] --udid [udid]
* Enables JIT for given app/process

altjit mount --udid [udid]
* Mounts personalized developer disk
This commit is contained in:
Riley Testut
2023-09-07 18:00:53 -05:00
committed by Magesh K
parent f83303a6b7
commit a7b28d5027
19 changed files with 1539 additions and 1 deletions

View File

@@ -14,7 +14,16 @@
#import "AltStoreCore/AltStoreCore-Swift.h"
#endif
#if ALTJIT
#import "AltJIT-Swift.h"
@import AltSign;
#elif TARGET_OS_OSX
#import "AltServer-Swift.h"
@import AltSign;
#elif !TARGET_OS_OSX
#import <AltStoreCore/AltStoreCore-Swift.h>
@import AltSign;
#endif
NSErrorDomain const AltServerErrorDomain = @"AltServer.ServerError";
NSErrorDomain const AltServerInstallationErrorDomain = @"AltServer.InstallationError";