Jump to content

[New 2024] Install Theos on Windows 10/11 (Subsystem for Linux)


75 posts in this topic

Recommended Posts

Hi. I tried to compile a open sourced project, but I got this error:

 

==> Signing LittleX…
make[1]: Entering directory '/home/LittleX-master2/settings'
signing bundle
bash: ldid: command not found
Makefile:16: recipe for target 'after-all' failed
make[1]: *** [after-all] Error 127
make[1]: Leaving directory '/home/LittleX-master2/settings'
/opt/theos/makefiles/master/aggregate.mk:12: recipe for target 'internal-all' failed
make: *** [internal-all] Error 2

I tried it with cygwin and now with ubuntu subsystem.

What can I do?

Sorry for my bad english...

Updated by ra1nb0wm4n

wget http://security.ubuntu.com/ubuntu/pool/main/g/gcc-5/libstdc++6_5.4.0-6ubuntu1~16.04.4_amd64.deb -O libstdc++.deb


--2018-03-08 01:00:37-- http://security.ubuntu.com/ubuntu/pool/main/g/gcc-5/libstdc++6_5.4.0-6ubuntu1~16.04.4_amd64.deb
Resolving security.ubuntu.com (security.ubuntu.com)... 91.189.88.161, 91.189.91.26, 91.189.88.149, ...
Connecting to security.ubuntu.com (security.ubuntu.com)|91.189.88.161|:80... connected.
HTTP request sent, awaiting response... 404 Not Found
2018-03-08 01:00:38 ERROR 404: Not Found.

 

i got this error i think the link is not working :( @Klepto 

On 2/20/2018 at 4:49 PM, ra1nb0wm4n said:

Hi. I tried to compile a open sourced project, but I got this error:

 

==> Signing LittleX…
make[1]: Entering directory '/home/LittleX-master2/settings'
signing bundle
bash: ldid: command not found
Makefile:16: recipe for target 'after-all' failed
make[1]: *** [after-all] Error 127
make[1]: Leaving directory '/home/LittleX-master2/settings'
/opt/theos/makefiles/master/aggregate.mk:12: recipe for target 'internal-all' failed
make: *** [internal-all] Error 2

I tried it with cygwin and now with ubuntu subsystem.

What can I do?

Sorry for my bad english...

Seems like you’re missing ldid. Look that up on GitHub, there’s one for Windows/Theos. Although I never got that error myself.

1 hour ago, klashksa said:

wget http://security.ubuntu.com/ubuntu/pool/main/g/gcc-5/libstdc++6_5.4.0-6ubuntu1~16.04.4_amd64.deb -O libstdc++.deb


--2018-03-08 01:00:37-- http://security.ubuntu.com/ubuntu/pool/main/g/gcc-5/libstdc++6_5.4.0-6ubuntu1~16.04.4_amd64.deb
Resolving security.ubuntu.com (security.ubuntu.com)... 91.189.88.161, 91.189.91.26, 91.189.88.149, ...
Connecting to security.ubuntu.com (security.ubuntu.com)|91.189.88.161|:80... connected.
HTTP request sent, awaiting response... 404 Not Found
2018-03-08 01:00:38 ERROR 404: Not Found.

 

i got this error i think the link is not working :( @Klepto 

Search the filename on Google and you can find an alternative download link.

They may have removed this version because a new version was released perhaps.

https://packages.ubuntu.com/xenial-updates/amd64/libstdc++6/download

thank u @DiDA  i fixed by this link http://archive.ubuntu.com/ubuntu/pool/main/g/gcc-5/libstdc++6_5.4.0-6ubuntu1~16.04.9_amd64.deb

 

before change a Link :

cd /tmp
wget http://security.ubuntu.com/ubuntu/pool/main/g/gcc-5/libstdc++6_5.4.0-6ubuntu1~16.04.4_amd64.deb -O libstdc++.deb
dpkg-deb -x libstdc++.deb libstdc++
cp libstdc++/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.21 /usr/lib/x86_64-linux-gnu/
cd /usr/lib/x86_64-linux-gnu/
ln -sf libstdc++.so.6.0.21 libstdc++.so.6

after change a Link :

cd /tmp
wget http://archive.ubuntu.com/ubuntu/pool/main/g/gcc-5/libstdc++6_5.4.0-6ubuntu1~16.04.9_amd64.deb -O libstdc++.deb
dpkg-deb -x libstdc++.deb libstdc++
cp libstdc++/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.21 /usr/lib/x86_64-linux-gnu/
cd /usr/lib/x86_64-linux-gnu/
ln -sf libstdc++.so.6.0.21 libstdc++.so.6

after make package  :

root@LAPTOP-MFK83S9U:~/rrr# make package
bash: /opt/theos/toolchain/linux/swift/bin/swift: No such file or directory
> Making all for tweak rrr
bash: /opt/theos/toolchain/linux/swift/bin/swift: No such file or directory
bash: /opt/theos/toolchain/linux/swift/bin/swift: No such file or directory
bash: /opt/theos/toolchain/linux/swift/bin/swift: No such file or directory
bash: /opt/theos/toolchain/linux/swift/bin/swift: No such file or directory
==> Preprocessing Tweak.xm
==> Compiling Tweak.xm (armv7)…
==> Preprocessing Tweak.xm
==> Compiling Tweak.xm (arm64)…
==> Linking tweak rrr (armv7)…
==> Linking tweak rrr (arm64)…
==> Merging tweak rrr
==> Signing rrr
> Making stage for tweak rrr
bash: /opt/theos/toolchain/linux/swift/bin/swift: No such file or directory
dm.pl: building package `com.klashksa.rrr:iphoneos-arm' in `./packages/com.klashksa.rrr_0.0.1-1+debug_iphoneos-arm.deb'

 

After that the hack not worked also the Dylib file size is small not as usual 

 

my dilyb file :

https://ghostbin.com/paste/tjg74

 

.

 

lok

 

 

i fd

On 2/20/2018 at 4:49 PM, ra1nb0wm4n said:

Hi. I tried to compile a open sourced project, but I got this error:

 

==> Signing LittleX…
make[1]: Entering directory '/home/LittleX-master2/settings'
signing bundle
bash: ldid: command not found
Makefile:16: recipe for target 'after-all' failed
make[1]: *** [after-all] Error 127
make[1]: Leaving directory '/home/LittleX-master2/settings'
/opt/theos/makefiles/master/aggregate.mk:12: recipe for target 'internal-all' failed
make: *** [internal-all] Error 2

I tried it with cygwin and now with ubuntu subsystem.

What can I do?

Sorry for my bad english...

http://iphonedevwiki.net/index.php/Ldid

@DiDA the hack is worked after install http://iphonedevwiki.net/index.php/Ldid

git clone git://git.saurik.com/ldid.git
cd ldid
git submodule update --init
./make.sh
cp -f ./ldid $THEOS/bin/ldid

 

Note: i copied ldid manual

thank  u @DiDA so much <3

I'm getting this error when I run make package:

Hal0405@Nicholas-Laptop:/projects/test$ make package
bash: /opt/theos/toolchain/linux/swift/bin/swift: No such file or directory
mkdir: cannot create directory ‘/projects/test/.theos’: Permission denied
/opt/theos/makefiles/master/rules.mk:93: recipe for target '/projects/test/.theos/build_session' failed
make: *** [/projects/test/.theos/build_session] Error 1

Help would be very appreciated!

getting this error now when running make package:

Laptop:~/test3$ make package
bash: /opt/theos/toolchain/linux/swift/bin/swift: No such file or directory
> Making all for tweak test3…
bash: /opt/theos/toolchain/linux/swift/bin/swift: No such file or directory
bash: /opt/theos/toolchain/linux/swift/bin/swift: No such file or directory
bash: /opt/theos/toolchain/linux/swift/bin/swift: No such file or directory
bash: /opt/theos/toolchain/linux/swift/bin/swift: No such file or directory
==> Preprocessing Tweak.xm…
==> Compiling Tweak.xm (arm64)…
bash: /opt/theos/toolchain/linux/iphone/bin/armv7-apple-darwin11-clang++: No such file or directory
/opt/theos/makefiles/instance/rules.mk:295: recipe for target '/home/Hal0405/test3/.theos/obj/debug/arm64/Tweak.xm.a6c63878.o' failed
make[3]: *** [/home/Hal0405/test3/.theos/obj/debug/arm64/Tweak.xm.a6c63878.o] Error 127
==> Preprocessing Tweak.xm…
==> Compiling Tweak.xm (armv7)…
bash: /opt/theos/toolchain/linux/iphone/bin/armv7-apple-darwin11-clang++: No such file or directory
/opt/theos/makefiles/instance/rules.mk:295: recipe for target '/home/Hal0405/test3/.theos/obj/debug/armv7/Tweak.xm.618bd16f.o' failed
make[3]: *** [/home/Hal0405/test3/.theos/obj/debug/armv7/Tweak.xm.618bd16f.o] Error 127
/opt/theos/makefiles/instance/library.mk:32: recipe for target '/home/Hal0405/test3/.theos/obj/debug/arm64/test3.dylib' failed
make[2]: *** [/home/Hal0405/test3/.theos/obj/debug/arm64/test3.dylib] Error 2
make[2]: *** Waiting for unfinished jobs....
/opt/theos/makefiles/instance/library.mk:32: recipe for target '/home/Hal0405/test3/.theos/obj/debug/armv7/test3.dylib' failed
make[2]: *** [/home/Hal0405/test3/.theos/obj/debug/armv7/test3.dylib] Error 2
/opt/theos/makefiles/instance/library.mk:24: recipe for target 'internal-library-all_' failed
make[1]: *** [internal-library-all_] Error 2
/opt/theos/makefiles/master/rules.mk:106: recipe for target 'test3.all.tweak.variables' failed
make: *** [test3.all.tweak.variables] Error 2

==> Preprocessing Tweak.xm…
==> Compiling Tweak.xm (arm64)…
==> Linking tweak KaninsSBTweaks (arm64)…
ld: file not found: /usr/lib/system/liblaunch.dylib for architecture arm64
arm64-apple-darwin14-clang-3.9: error: linker command failed with exit code 1 (use -v to see invocation)
/opt/theos/makefiles/instance/library.mk:32: recipe for target '/home/Kanin/kaninssbtweaks/.theos/obj/debug/arm64/KaninsSBTweaks.dylib' failed
make[3]: *** [/home/Kanin/kaninssbtweaks/.theos/obj/debug/arm64/KaninsSBTweaks.dylib] Error 1
/opt/theos/makefiles/instance/library.mk:32: recipe for target '/home/Kanin/kaninssbtweaks/.theos/obj/debug/arm64/KaninsSBTweaks.dylib' failed
make[2]: *** [/home/Kanin/kaninssbtweaks/.theos/obj/debug/arm64/KaninsSBTweaks.dylib] Error 2
/opt/theos/makefiles/instance/library.mk:24: recipe for target 'internal-library-all_' failed
make[1]: *** [internal-library-all_] Error 2
/opt/theos/makefiles/master/rules.mk:106: recipe for target 'KaninsSBTweaks.all.tweak.variables' failed
make: *** [KaninsSBTweaks.all.tweak.variables] Error 2

pls halp @DiDA

 

EDIT: Got it working with this: https://app.box.com/s/1abpis0ztjd3kwoohoft0rpvtjncw9d3 SDK

Thank you so much @heinekenpsx!

Updated by Affe2626

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below. For more information, please read our Posting Guidelines.
Reply to this topic... Posting Guidelines

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Our picks

    • Grim Soul: Survival v6.8.1 +19 Cheats [Unlimited Currencies + More]
      Modded/Hacked App: Grim Soul: Survival By Andrey Pryakhin
      Bundle ID: fantasy.survival.game.rpg
      iTunes Store Link: https://itunes.apple.com/us/app/grim-soul-survival/id1366215798


      Mod Requirements:
      - Jailbroken iPhone/iPad/iPod Touch.
      - iFile / Filza / iFunBox / iTools or any other file managers for iOS.
      - Cydia Substrate (from Cydia).
      - PreferenceLoader (from Cydia).


      Hack Features:
      - Unlimited Thalers/Coins & Crafting Points - Once enabled, purchase something using coins & use a craft point so the currencies stick, then disable this feature.
      - Unlimited Storage Items - Taking storage items will increase them.
      - Unlimited Energy / Instant Energy Refills - Will refill your energy once you run to another location.
      - Godmode - Unlinked. Health will still decrease but you won't die.
      - One-Hit Kill - Linked to the enemy. Would recommend enabling 'Godmode'.
      - Increased Attack Range - Allows you to kill enemies from some distance away.
      - Free Crafting - Will allow you to craft items without the required materials.
      - No Crafting Level Requirement
      - Free Construction
      - Items Duplicate When Split
      - Unlimited Item Durability
      - x2 Player Speed
      - x3 Player Speed
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 4,994 replies
    • Golden Desire: Fantasy Romance v1.0.2 +1 Jailed Cheat [ Free Premium Choices ]
      Modded/Hacked App: Golden Desire: Fantasy Romance By Storytaco.inc
      Bundle ID: com.storytaco.c20client
      iTunes Store Link: https://apps.apple.com/us/app/golden-desire-fantasy-romance/id6738368127?uo=4


      Hack Features:
      - Free Premium Choices


      Jailbreak required hack(s): [Mod Menu Hack] Golden Desire: Fantasy Romance v1.0.2 +1 Cheat [ Free Premium Choices ] - Free Jailbroken Cydia Cheats - iOSGods
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
        • Like
      • 1 reply
    • Golden Desire: Fantasy Romance v1.0.2 +1 Cheat [ Free Premium Choices ]
      Modded/Hacked App: Golden Desire: Fantasy Romance By Storytaco.inc
      Bundle ID: com.storytaco.c20client
      iTunes Store Link: https://apps.apple.com/us/app/golden-desire-fantasy-romance/id6738368127?uo=4


      Hack Features:
      - Free Premium Choices


      Non-Jailbroken & No Jailbreak required hack(s): [IPA Mod Menu] Golden Desire: Fantasy Romance v1.0.2 +1 Jailed Cheat [ Free Premium Choices ] - Free Non-Jailbroken IPA Cheats - iOSGods
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
        • Agree
      • 0 replies
    • Darts Club v5.8.6 +28 Jailed Cheats [ Debug Menu ]
      Modded/Hacked App: Darts Club By BoomBit, Inc.
      Bundle ID: com.boombitgames.DartsClub
      iTunes Store Link: https://apps.apple.com/us/app/darts-club/id1389760587?uo=4


      Hack Features:
      - Unlimited Currencies
      - Debug Menu -> Head into Settings and toggle the DEBUG button. [ VIP ]
      -> Add Soft
      -> Add Hard
      -> Add Trophies
      -> Unlock All Parts/Emotes/Vanities/Wild Items
      + More!


      Jailbreak required hack(s): [Mod Menu Hack] Darts Club v5.8.6 +28 Cheats [ Debug Menu ] - Free Jailbroken Cydia Cheats - iOSGods
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
        • Like
      • 0 replies
    • Darts Club v5.8.6 +28 Cheats [ Debug Menu ]
      Modded/Hacked App: Darts Club By BoomBit, Inc.
      Bundle ID: com.boombitgames.DartsClub
      iTunes Store Link: https://apps.apple.com/us/app/darts-club/id1389760587?uo=4


      Hack Features:
      - Unlimited Currencies
      - Debug Menu -> Head into Settings and toggle the DEBUG button. [ VIP ]
      -> Add Soft
      -> Add Hard
      -> Add Trophies
      -> Unlock All Parts/Emotes/Vanities/Wild Items
      + More!


      Non-Jailbroken & No Jailbreak required hack(s): [IPA Mod Menu] Darts Club v5.8.6 +28 Jailed Cheats [ Debug Menu ] - Free Non-Jailbroken IPA Cheats - iOSGods
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
        • Agree
        • Winner
        • Like
      • 12 replies
    • Strongest Knight Cheats v1.07 +4
      Modded/Hacked App: Strongest Knight By Superlink Ltd.
      Bundle ID: com.idlemaster.hero
      iTunes Store Link: https://apps.apple.com/us/app/strongest-knight/id6738113239?uo=4


      Hack Features:
      - Multiply Attack
      - Multiply Defense
      - Freeze Currencies
      - No Ads (Don't use the deb cheat unless you complete tutorial -- Finish use 4 ads boost quest)
       


      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/topic/190406-strongest-knight-v106-jailed-cheats-4/


      iOS Hack Download Link: https://iosgods.com/topic/190404-strongest-knight-cheats-v106-4/
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 10 replies
    • [ GrandChase TW] 永恆冒險 Cheats v1.85.1 +3
      Modded/Hacked App: 永恆冒險 By HaoPlay Limited
      Bundle ID: tw.txwy.ios.grandchase
      iTunes Store Link: https://apps.apple.com/tw/app/%E6%B0%B8%E6%81%86%E5%86%92%E9%9A%AA/id1434266148?uo=4


      Hack Features:
      - Multiply Attack
      - Multiply Defense
      - Instant Skills
      - Weak Enemies


      ViP Non-Jailbroken Hack: https://iosgods.com/topic/167594-grandchase-tw-%E6%B0%B8%E6%81%86%E5%86%92%E9%9A%AA-v1744-jailed-cheats-2/


      iOS Hack Download Link: https://iosgods.com/topic/144913-grandchase-tw-%E6%B0%B8%E6%81%86%E5%86%92%E9%9A%AA-cheats-v1812-3/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 147 replies
    • GrandChase Cheats v1.85.1 +4 [ Multiply Attack & More ]
      Modded/Hacked App: GrandChase By KOG co., Ltd
      Bundle ID: com.kog.grandchaseglobal
      iTunes Store Link: https://itunes.apple.com/us/app/grandchase/id1385904294?mt=8&uo=4&at=1010lce4

      Mod Requirements:
      - Jailbroken iPhone/iPad/iPod Touch.
      - iFile / Filza / iFunBox / iTools or any other file managers for iOS.
      - Cydia Substrate or Substitute.
      - PreferenceLoader (from Cydia or Sileo).


      Hack Features:
      - x Player Damage - x1 - 100
      - x Player HP - x1 - 100
      - Auto-Win
      - Unlimited Skills

      All features are unlinked and only for player, you!

      This hack is an In-Game Mod Menu (iGMM). In order to activate the Mod Menu, tap on the iOSGods button found inside the app. This hack works on the latest x64 or ARM64 iDevices: iPhone 5s, 6, 6 Plus, 6s, 6s Plus, 7, 7 Plus, 8, 8 Plus, X, Xr, Xs, Xs Max, SE, iPod Touch 6G, iPad Air, Air 2, Pro & iPad Mini 2, 3, 4 and later.
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 1,440 replies
    • Cat Snack Bar Cheats v1.0.155 +1
      Modded/Hacked App: Cat Snack Bar By treeplla Inc.
      Bundle ID: com.tree.idle.catsnackbar
      iTunes Store Link: https://apps.apple.com/us/app/cat-snack-bar/id6443895159?uo=4


      Hack Features:
      - Freeze Currencies


      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/topic/170232-cat-snack-bar-v1036-jailed-cheats-1/


      iOS Hack Download Link: https://iosgods.com/topic/170233-cat-snack-bar-cheats-v1036-1/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 67 replies
    • Temple Run 2 Cheats v1.117.1 +8
      Modded/Hacked App: Temple Run 2 by Imangi Studios, LLC
      Bundle ID: com.imangi.templerun2
      iTunes Store Link: https://apps.apple.com/us/app/temple-run-2/id572395608?uo=4&at=1010lce4


      Hack Features:
      - No Ads Enabled
      - x2 Coin Enabled
      - Infinite Coin (Spend some)
      - Infinite Gem (Spend some)
      - All Characters Unlocked
      - Free iAP (Turn off all iap hacks before using this, also if itunes popup don't show then run ldrestart in terminal -- This is an issue with the jailbreak not the hack)
      - Auto Run
      - Coin Magnet


      iOS Hack Download Link: https://iosgods.com/topic/132609-arm64-temple-run-2-cheats-v1691-8/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 297 replies
    • CodyCross: Crossword Puzzles Cheats v2.0.3 +3
      Modded/Hacked App: CodyCross: Crossword Puzzles by Fanatee, Inc.
      Bundle ID: com.fanatee.cody
      iTunes Store Link: https://apps.apple.com/us/app/codycross-crossword-puzzles/id1092689152?uo=4&at=1010lce4


      Hack Features:
      - Infinite Tokens
      - Infinite Boosters
      - PREMIUM


      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/topic/87156-arm64-codycross-crossword-puzzles-v1220-jailed-cheats-1/


      Hack Download Link: https://iosgods.com/topic/87091-arm64-codycross-crossword-puzzles-cheats-all-versions-3/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 161 replies
    • MARVEL Contest of Champions v48.1.0 +11++ Amazing Cheats!
      Modded/Hacked App: MARVEL Contest of Champions By Kabam
      Bundle ID: com.kabam.marvelbattle
      iTunes Link: https://itunes.apple.com/us/app/marvel-contest-of-champions/id896112560?mt=8&uo=4&at=1010lce4


      Hack Features
      - Enemy/AI Doesn't Attack
      - Special Attack/Skill Always Available
      - No Knockbacks When Hit
      - No Knockdowns When Hit
      - Enemy Doesn't Block
      - Auto Win - Whoever Attacks first, loses. Disable AI Doesn't Attack for this to work.
      - One Hit Kill / High Damage - Linked. Attack first or use with Enemy Doesn't Attack.

      Non-Jailbroken version of this hack: https://iosgods.com/topic/44075-marvel-contest-of-champions-v1311-2-cheats-for-jailed-devices/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 3,426 replies
×
  • Create New...

Important Information

We would like to place cookies on your device to help make this website better. The website cannot give you the best user experience without cookies. You can accept or decline our cookies. You may also adjust your cookie settings. Privacy Policy - Guidelines