Jump to content

Stay Bizzy

Senior Member
  • Posts

    112
  • Joined

  • Last visited

Everything posted by Stay Bizzy

  1. @Valathene @DiDA i have the same error ld: library not found for -lobjc clang-3.7: error: linker command failed with exit code 1 (use -v to see invocation) make[2]: *** [obj/hello.app/hello.64873355.unsigned] Error 1 And running the same iOS 10.1.1 Yalu I thinks it's the case of locating that file and then linking it but I've looked and any library folder I came across I tried to copy and paste and then trying with a link still the same error library not found and not signing it :((((
  2. @Fadexz hey I still get the same error ld: library not found for -lobjcclang-3.7: error: linker command failed with exit code 1 (use -v to see invocation)make[2]: *** [obj/firstPatch.bundle/firstPatch.64873355.unsigned] Error 1 I've make links and links with library's and out them in the sdk folder tried afew other lines and still same error, think Theo's could be broken ?? Or is it working just not linking to the library needed ?? Thanks again
  3. Make file TARGET := iphone:clang TARGET_SDK_VERSION := 8.1 TARGET_IPHONEOS_DEPLOYMENT_VERSION :=8 ARCHS := armv7 arm64 include /var/theos/makefiles/common.mk TWEAK_NAME = Biztweak Biztweak_FILES = Tweak.xm Biztweak_FRAMEWORKS = UIKit include $(THEOS_MAKE_PATH)/tweak.mk after-install:: install.exec "killall -9 SpringBoard"
  4. Update ---- @Fadexz Fixed the %end error now saying Compiling Tweak.xm... Linking tweak Biztweak... ld: library not found for -lobjc clang-3.7: error: linker command failed with exit code 1 (use -v to see invocation) make[2]: *** [obj/Biztweak.dylib.64873355.unsigned] Error 1 make[1]: *** [internal-library-all_] Error 2 make: *** [Biztweak.all.tweak.variables] Error 2 i have sdks 8.1 and also 10.1 in the include folder haha so I'm lost again lol @DiDA can you shine some light please tweak.xm - #import <substrate.h> #import <UIKit/UIKit.h> #import <Foundation/Foundation.h> %hook SBPowerDownController -(void)orderFront{ UIAlertView *alert = [[UIAlertView alloc]initWithTitle:@"hello" message:@"??Noooo??" delegate:self cancelButtonTitle:@"okey" otherButtonTitles:nil]; [alert show]; } %end ¯\_(ツ)_/¯ help ? @Joka any ideas buddy ?
  5. @Fadexz Ok so I got them errors sorted out but now I get this ⬇️⬇️⬇️⬇️ Tweak.xm:16: error: %end does not make sense inside a block **this is my tweak.xm ** %hook SBPowerDownController -{void)orderFront{ UIAlertView *alert = [UIAlertView alloc]initWithTitle:@"hello" message:@"??Noooo??" delegate:self cancelButtonTitle:@"okey" otherButtonTitles:nil]; [alert show]; } %end ---------------- I know it's something simple but ive tried to copy %end from others, rewriting it and still says same thing can someone please tell me what I'm doing wrong haha had me up a few nights now haha thanks for all ur help biz Oh I went from patch to tweak and started all projects again ☹️
  6. @Fadexz any better ? Yup sorry
  7. @fadexz yeh I figured it all out I know where to find it now ?? thanks again ?
  8. @Fadexz It took that aliased.pm line 42 away thank you , now last errors that show up on each thing I try make application,tweak patch etc which are ---- Bizzy:~ mobile$ su Password: su: incorrect password Bizzy:~ mobile$ cd hello Bizzy:~/hello mobile$ ls Makefile Tweak.xm control hello.plist obj/ theos@ Bizzy:~/hello mobile$ make package /var/mobile/hello/theos/makefiles/targets/Darwin-arm64/iphone.mk:43: Targeting iOS 4.0 and higher is not supported with iphone-gcc. Forcing clang. /var/mobile/hello/theos/makefiles/targets/Darwin-arm64/iphone.mk:53: Deploying to iOS 3.0 while building for 6.0 will generate armv7-only binaries. Making all for tweak hello... Preprocessing Tweak.xm... /bin/sh: ./obj/Tweak.xm.mm: Permission denied make[2]: *** [obj/Tweak.xm.4d4aef16.o] Error 1 make[1]: *** [internal-library-all_] Error 2 make: *** [hello.all.tweak.variables] Error 2 nearly there ?
  9. @Fadexz yup got ya sorry lol ok will give it a try and thank you for your time ?
  10. Haha I'm still trying came across a few lumps on the road lol I get this error when making a package (tweak) ------ Constants from lexical variables potentially modified elsewhere are deprecated at /private/var/theos/bin/lib/aliased.pm line 42. Had a look a aliased.pm line 42 and because it's all abit new I don't know if it's telling me I need to add something to it or it because I have tweak already , tried to do a simple alert message this is my tweak.xm if any one can help much appreciated thank you biz %hook SBPowerDownController -(void)orderfront{ UIAlertView *alert = [UIAlertView alloc]initwithtitle:@"Bizzy" message"??" delegate:self cancelButtonTitle:@"dismiss" Otherbuttontitles:nil]; [alert show]; ) %end
  11. If the Yalu jailbreak app is still showing on ur home screen delete it and then try again also make sure ur passcode is off sometimes helps, hope that helps
  12. If correct ifeq ($(THEOS_CURRENT_INSTANCE),) include $(THEOS_MAKE_PATH)/master/tweak.mk else ifeq ($(_THEOS_CURRENT_TYPE),tweak) include $(THEOS_MAKE_PATH)/instance/tweak.mk endif endif this what u mean sorry I'm new to this lol I can't find tweak.xm just tweak.mk
  13. Hey guys biz again, im stuck on creating my first patch conquered afew problems i.e. Preference.h file then pthread.h file missing now I'm stuck on these and I'm lost ⬇️ Bizzy:/var/mobile/firstpatch root# make package /var/mobile/firstpatch/theos/makefiles/targets/Darwin-arm64/iphone.mk:43: Targeting iOS 4.0 and higher is not supported with iphone-gcc. Forcing clang. /var/mobile/firstpatch/theos/makefiles/targets/Darwin-arm64/iphone.mk:53: Deploying to iOS 3.0 while building for 6.0 will generate armv7-only binaries. Making all for bundle firstPatch... Copying resource directories into the bundle wrapper... Linking bundle firstPatch... ⬇️⬇️ Errors start ⬇️⬇️ ld: library not found for -lobjc clang-3.7: error: linker command failed with exit code 1 (use -v to see invocation) make[2]: *** [obj/firstPatch.bundle/firstPatch.64873355.unsigned] Error 1 make[1]: *** [internal-bundle-all_] Error 2 make: *** [firstPatch.all.bundle.variables] Error 2 Got far in learning all this today and Thanks for your time biz
  14. Hi i got Theos dependencies from here but found a very useful page from chirs Harris now it works ? --- Bizzy:/var/mobile root# /var/theos/bin/nic.pl NIC 2.0 - New Instance Creator ------------------------------ [1.] iphone/application [2.] iphone/library [3.] iphone/preference_bundle [4.] iphone/tool [5.] iphone/tweak Choose a Template (required): thank you for your help Dida Here's a useful link also to any one else that comes across a problem installing Theos on iOS 10 http://chrisharrisdev.com/blog/2016/09/22/tutorial-install-theos-on-idevice-for-jailbreak-development/
  15. Will check it out now thanks DiDa , got to say love ur work ? And thanks
  16. Hey Gods hehe ? , been using a lot of tweaks from iosgods awhile now and wanted to look into making my own tweaks / mods I asked a friend on here where to start he sent me to Theos, I've got all the tools needed etc but when trying to initially install theos after copying and linking perl to where it needs to be found I still get the same message in mterminal -- Bizzy:~ mobile$ su Password: Bizzy:/var/mobile root# /var/theos/bin/nic.pl NIC 2.0 - New Instance Creator ------------------------------ Can't stat /private/var/theos/templates: No such file or directory at /var/theos/bin/nic.pl line 263. [error] No file specified with --nic and no templates found. ive done it over and over and just get same result ? Can any of you GoDs help me out please much appreciated thanks biz
  17. Works perfect would love to see more ?
  18. Love the mod bro all working as you say yet again another good mod and with help from the best peeps thanks bro 5*
×
  • 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