LinusHenze / Fugu14

Fugu14 is an untethered iOS 14.3-14.5.1 jailbreak
MIT License
1.41k stars 314 forks source link

Failed to build Fugu14App! Exit status: 65 #46

Open aerumes opened 2 years ago

aerumes commented 2 years ago

sup, what should I do after that erro

Снимок экрана 2021-10-25 в 21 40 47

r?

guteSeite commented 2 years ago

same here... se2020 / MacBook Air M1

apostoloskotsiras commented 2 years ago

same

dying4004 commented 2 years ago

have same issue but app is deployed if i hit run on the xcode which tells me this could be something to do with xcodebuild command.

skakwy commented 2 years ago

did you change the signing settings in xcode ? did you use the right dev identifier thingy https://youtu.be/vT24WO0RDs8?t=484

AlexanderGatesV2 commented 2 years ago

Same issue on M1

skakwy commented 2 years ago

Same issue on M1

so after some research, I found out that you maybe have to add -destination 'generic/platform=iOS to the xcodebuild command https://developer.apple.com/forums/thread/668952 and after watching at the code of the ios_install.py file you may make it work by replacing line 122 with subprocess.run(["xcodebuild", "-scheme", "Fugu14App", "-derivedDataPath", "-destination '-generic/platform=iOS","build"], check=True, cwd="arm/iOS/Fugu14App/") Maybe it does work it maybe it doesn't idk at least its worth a try (Correct me if anything of what I just said is completely wrong )

AlexanderGatesV2 commented 2 years ago
--- xcodebuild: WARNING: Using the **first** of multiple matching destinations:
{ platform:macOS, arch:arm64, variant:Designed for [iPad,iPhone], id:*** }
{ platform:iOS, id:dvtdevice-DVTiPhonePlaceholder-iphoneos:placeholder, name:Any iOS Device }
{ platform:iOS Simulator, id:dvtdevice-DVTiOSDeviceSimulatorPlaceholder-iphonesimulator:placeholder, name:Any iOS Simulator Device }
{ platform:iOS, id:***, name:Alexander 12 Pro Max }
{ platform:iOS Simulator, id:***, OS:14.3, name:i12pm } 

Seems to be only accepting the first entry. changed the line in ios_install.py to ", "-destination 'platform=iOS, id=IDENTITY'", "build"] no luck

skakwy commented 2 years ago
--- xcodebuild: WARNING: Using the **first** of multiple matching destinations:
{ platform:macOS, arch:arm64, variant:Designed for [iPad,iPhone], id:*** }
{ platform:iOS, id:dvtdevice-DVTiPhonePlaceholder-iphoneos:placeholder, name:Any iOS Device }
{ platform:iOS Simulator, id:dvtdevice-DVTiOSDeviceSimulatorPlaceholder-iphonesimulator:placeholder, name:Any iOS Simulator Device }
{ platform:iOS, id:***, name:Alexander 12 Pro Max }
{ platform:iOS Simulator, id:***, OS:14.3, name:i12pm } 

Seems to be only accepting the first entry. changed the line in iosinstall.py to ", "-destination 'platform=iOS, id=IDENTITY'", "build"]_ no luck

oh ok damn