Jump to content

KaiszS2

Member
  • Posts

    11
  • Joined

  • Last visited

Profile Information

  • iDevice
    iPhone 11 Pro
  • iOS Version
    14.7
  • Jailbroken
    Yes

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

KaiszS2's Achievements

Rookie

Rookie (2/14)

  • One Month Later
  • One Year In
  • Collaborator
  • Conversation Starter
  • Week One Done

Recent Badges

0

Reputation

  1. # THEOS_DEVICE_IP = My ip -p 2222 # install to device from pc ARCHS = arm64 #arm64e DEBUG = 0 FINALPACKAGE = 1 FOR_RELEASE = 1 # 0 to treat warnings as errors, 1 otherwise. IGNORE_WARNINGS=0 # only set this to 1 if you are on mobile theos # assuming you have an sdk at your theos sdks directory # this will include c++ headers and other needed headers for your project so you don't need to manually include them or something like that # if some c++ headers are still missing in your sdk like "initializer_list" then manually copy them to your c++ headers directory and not your project folder # for example in my case c++ headers directory is located at /private/var/theos/sdks/iPhoneOS13.4.sdk # please note, do not include c++ headers in your theos includes to enable c++ which is a ghetto solution and use this approach instead MOBILE_THEOS=1 ifeq ($(MOBILE_THEOS),1) # path to your sdk SDK_PATH = $(THEOS)/sdks/iPhoneOS13.4.sdk/ $(info ===> Setting SYSROOT to $(SDK_PATH)...) SYSROOT = $(SDK_PATH) else TARGET = iphone:clang:latest:14.7.1 endif ## Common frameworks ## PROJ_COMMON_FRAMEWORKS = UIKit Foundation Security QuartzCore CoreGraphics CoreText ## source files ## KITTYMEMORY_SRC = $(wildcard KittyMemory/*.cpp) SCLALERTVIEW_SRC = $(wildcard SCLAlertView/*.m) MENU_SRC = Menu.mm include $(THEOS)/makefiles/common.mk TWEAK_NAME = kmspatch kmspatch_CFLAGS = -fobjc-arc kmspatch_CCFLAGS = -std=c++11 -fno-rtti -fno-exceptions -DNDEBUG ifeq ($(IGNORE_WARNINGS),1) kmspatch_CFLAGS += -w kmspatch_CCFLAGS += -w endif kmspatch_FILES = Tweak.xm $(MENU_SRC) $(KITTYMEMORY_SRC) $(SCLALERTVIEW_SRC) kmspatch_LIBRARIES += substrate kmspatch_FRAMEWORKS = $(PROJ_COMMON_FRAMEWORKS) # GO_EASY_ON_ME = 1 include $(THEOS_MAKE_PATH)/tweak.mk internal-package-check:: @chmod 777 versionCheck.sh # Give permission to script @./versionCheck.sh # Script to verify template's current version after-install:: install.exec "killall -9 || :"
  2. I solved this problem and another problem occurred ld: warning: object file /var/mobile/kmspatch/.the os/obj/arm64e/SCLAlertView/SCLAlertView.m.64406d15 .o was built with an incompatible arm64e ABI compi to read ld: warning: object file /var/mobile/kmspatch/.the os/obj/arm64e/SCLAlertView/UIImage+ImageEffects.m. 64406d15.o was built with an incompatible arm64e A BI compiler Generating debug symbols for kmspatch_ Stripping kmspatch (arm64e)... bash: strip: command not found make[3]: *** [/var/theos/makefiles/instance/librar y.mk:54: /var/mobile/kmspatch/.theos/obj/arm64e/km spatch.dylib] Error 127 make[2]: *** [/var/theos/makefiles/instance/librar y.mk:52: /var/mobile/kmspatch/.theos/obj/arm64e/km spatch.dylib] Error 2 make[1]: *** [/var/theos/makefiles/instance/librar y.mk:37: internal-library-all_1 Error 2 make: *** [/var/theos/makefiles/master/rules.mk:11 7: kmspatch.all.tweak.variables] Error 2
  3. No whitespace framework but same problem 1 error generated. make[3]: *** [/var/theos/makefiles/instance/rules. mk:271: /var/mobile/kmspatch/.theos/obj/arm64/Twea k.xm.4387cda6.o] Error 1 ==> Compiling Tweak.xm (arm64e)... Tweak.xm:84:26: error: use of undeclared identifie r 'Unity Framework' [menu setFrameworkName: Unity Framework]; 1 error generated. make[3]: *** [/var/theos/makefiles/instance/rules. mk:271: /var/mobile/kmspatch/.theos/obj/arm64e/Twe ak.xm.64406d15.o] Error 1 make[2]: *** [/var/theos/makefiles/instance/librar y.mk:52: /var/mobile/kmspatch/.theos/obj/arm64e/km spatch.dylib] Error 2 make[2]: *** Waiting for unfinished jobs.... make[2]: *** [/var/theos/makefiles/instance/librar y.mk:52: /var/mobile/kmspatch/.theos/obj/arm64/kms patch.dylib] Error 2 make[1]: *** [/var/theos/makefiles/instance/librar y.mk:37: internal-library-all_] Error 2 make: *** [/var/theos/makefiles/master/rules.mk:11 7: kmspatch.all.tweak.variables] Error 2 iPhone:/var/mobile/kmspatch root# No whitespace framework but same problem 1 error generated. make[3]: *** [/var/theos/makefiles/instance/rules. mk:271: /var/mobile/kmspatch/.theos/obj/arm64/Twea k.xm.4387cda6.o] Error 1 ==> Compiling Tweak.xm (arm64e)... Tweak.xm:84:26: error: use of undeclared identifie r 'Unity Framework' [menu setFrameworkName: Unity Framework]; 1 error generated. make[3]: *** [/var/theos/makefiles/instance/rules. mk:271: /var/mobile/kmspatch/.theos/obj/arm64e/Twe ak.xm.64406d15.o] Error 1 make[2]: *** [/var/theos/makefiles/instance/librar y.mk:52: /var/mobile/kmspatch/.theos/obj/arm64e/km spatch.dylib] Error 2 make[2]: *** Waiting for unfinished jobs.... make[2]: *** [/var/theos/makefiles/instance/librar y.mk:52: /var/mobile/kmspatch/.theos/obj/arm64/kms patch.dylib] Error 2 make[1]: *** [/var/theos/makefiles/instance/librar y.mk:37: internal-library-all_] Error 2 make: *** [/var/theos/makefiles/master/rules.mk:11 7: kmspatch.all.tweak.variables] Error 2 iPhone:/var/mobile/kmspatch root#
  4. This is the environment I worked in. IPhone 11pro ios: 14.7.1 sdk : 13.4 Ted2's Mod Menu Template v0.9.0.nic ㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡ doesn't work with below error ===> Setting SYSROOT to /var/theos/sdks/iPhone0S13 .4.sdk/... > Making all for tweak kmspatch... ===> Setting SYSROOT to /var/theos/sdks/iPhone0S13 .4.sdk/... ===> Setting SYSROOT to /var/theos/sdks/iPhone0S13 .4.sdk/... ===> Setting SYSROOT to /var/theos/sdks/iPhone0S13 .4.sdk/... Setting SYSROOT to /var/theos/sdks/iPhone0S13 .4.sdk/... Preprocessing Tweak.xm... Preprocessing Tweak.xm... Compiling Tweak.xm (arm64)... Tweak.xm:84:26: error: use of undeclared identifie == r 'Unity Framework' [menu setFrameworkName: Unity Framework]; A 1 error generated. make[3]: *** [/var/theos/makefiles/instance/rules. mk:271: /var/mobile/kmspatch/.theos/obj/arm64/Twea k.xm.4387cda6.o] Error 1 Compiling Tweak.xm (arm64e)... Tweak.xm:84:26: error: use of undeclared identifie make: *** L/var/theos/makefiles/master/rules.mk:11 7: kmspatch.all.tweak.variables] Error 2 iPhone:/var/mobile/kmspatch root# make package ins tall ===> Setting SYSROOT to /var/theos/sdks/iPhone0S13 .4.sdk/... Making all for tweak kmspatch... ===> Setting SYSROOT to /var/theos/sdks/iPhone0S13 .4.sdk/... ===> Setting SYSROOT to /var/theos/sdks/iPhone0S13 .4.sdk/... ===> Setting SYSROOT to /var/theos/sdks/iPhone0S13 .4.sdk/... ===> Setting SYSROOT to /var/theos/sdks/iPhone0S13 .4.sdk/... Preprocessing Tweak.xm... Preprocessing Tweak.xm... ==> Compiling Tweak.xm (arm64)... Tweak.xm:84:26: error: use of undeclared identifie r 'Unity Framework' [menu setFrameworkName: Unity Framework]; 1 error generated. make[3]: *** [/var/theos/makefiles/instance/rules. mk:271: /var/mobile/kmspatch/.theos/obj/arm64/Twea k.xm.4387cda6.o] Error
×
  • 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