Jump to content

16 posts in this topic

Recommended Posts

Posted

when compile package 

 

Spoiler

iPhone-mmmm:/var/mobile/intell/pascal root# make package
===> Setting SYSROOT to ...
make: *** No rule to make target 'package'.  Stop.
iPhone-mmmm:/var/mobile/intell/pascal root# make package
 

makefile 

Spoiler

# If you want to compile for arm64e, you'll need a macOS device or a arm64e device that's able to compile for arm64e.
# Once done that, uncomment the "#arm64e" by removing the "#"

# THEOS_DEVICE_IP = 127.0.0.1 -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/iPhoneOS11.2.sdk/usr/include/c++/4.2.1/
# 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/iPhoneOS11.2.sdk)
  $(info ===> Setting SYSROOT to $(SDK_PATH)...)
  SYSROOT = $(SDK_PATH)
else
  TARGET = iphone:clang:latest:8.0
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 = pascal

pascal_CFLAGS = -fobjc-arc
pascal_CCFLAGS = -std=c++11 -fno-rtti -fno-exceptions -DNDEBUG

ifeq ($(IGNORE_WARNINGS),1)
  pascal_CFLAGS += -w
  pascal_CCFLAGS += -w
endif


pascal_FILES = Tweak.xm $(MENU_SRC) $(KITTYMEMORY_SRC) $(SCLALERTVIEW_SRC)

pascal_LIBRARIES += substrate

pascal_FRAMEWORKS = $(PROJ_COMMON_FRAMEWORKS)
# GO_EASY_ON_ME = 1

include $(THEOS/makefiles/tweak.mk)

internal-package-check::
    @./versionCheck.sh # Script to verify template's current version

after-install::
    install.exec "killall -9 pascalswager || :"
 

 

  • Like 3
  • Agree 1
Posted (edited)
32 minutes ago, intell said:

when compile package 

 

  Hide contents

iPhone-mmmm:/var/mobile/intell/pascal root# make package
===> Setting SYSROOT to ...
make: *** No rule to make target 'package'.  Stop.
iPhone-mmmm:/var/mobile/intell/pascal root# make package
 

makefile 

  Hide contents

# If you want to compile for arm64e, you'll need a macOS device or a arm64e device that's able to compile for arm64e.
# Once done that, uncomment the "#arm64e" by removing the "#"

# THEOS_DEVICE_IP = 127.0.0.1 -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/iPhoneOS11.2.sdk/usr/include/c++/4.2.1/
# 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/iPhoneOS11.2.sdk)
  $(info ===> Setting SYSROOT to $(SDK_PATH)...)
  SYSROOT = $(SDK_PATH)
else
  TARGET = iphone:clang:latest:8.0
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 = pascal

pascal_CFLAGS = -fobjc-arc
pascal_CCFLAGS = -std=c++11 -fno-rtti -fno-exceptions -DNDEBUG

ifeq ($(IGNORE_WARNINGS),1)
  pascal_CFLAGS += -w
  pascal_CCFLAGS += -w
endif


pascal_FILES = Tweak.xm $(MENU_SRC) $(KITTYMEMORY_SRC) $(SCLALERTVIEW_SRC)

pascal_LIBRARIES += substrate

pascal_FRAMEWORKS = $(PROJ_COMMON_FRAMEWORKS)
# GO_EASY_ON_ME = 1

include $(THEOS/makefiles/tweak.mk)

internal-package-check::
    @./versionCheck.sh # Script to verify template's current version

after-install::
    install.exec "killall -9 pascalswager || :"
 

 

try this command before compile 

export THEOS=/var/root/theos

or if still no work try this 

export THEOS=/var/theos

Updated by absolut1on
Posted
10 hours ago, absolut1on said:

try this command before compile 

export THEOS=/var/root/theos

or if still no work try this 

export THEOS=/var/theos

same not work :wallbash:

Posted
3 minutes ago, absolut1on said:

Do you have same issue compile with other projects, or only this?

im just need try ted2 mod

shmoo mod is work for me 

Posted
59 minutes ago, intell said:

im just need try ted2 mod

shmoo mod is work for me 

Idk about ted menu. Never tried it. But it should work with no issue! 👀Maybe ted2 knows whats the problem in compile! 🙂

Try make only command

or try 

make clean package

 

Posted
3 minutes ago, absolut1on said:

Idk about ted menu. Never tried it. But it should work with no issue! 👀Maybe ted2 knows whats the problem in compile! 🙂

Try make only command

or try 

make clean package

 

thanks bro will try later :hug:

  • Like 1
Posted

i had this same problem Untill i Reinstalled THEOS to my "mobile" not root and then everything worked perfectly  but there is a Command i forgot that lets "mobile" be Root but for mobile  

Posted
21 minutes ago, Noctisx said:

i had this same problem Untill i Reinstalled THEOS to my "mobile" not root and then everything worked perfectly  but there is a Command i forgot that lets "mobile" be Root but for mobile  

for this i format my iphone but still not work :wallbash:

Posted

I had this problem too, 

18 hours ago, intell said:

when compile package 

 

  Hide contents

iPhone-mmmm:/var/mobile/intell/pascal root# make package
===> Setting SYSROOT to ...
make: *** No rule to make target 'package'.  Stop.
iPhone-mmmm:/var/mobile/intell/pascal root# make package
 

makefile 

  Reveal hidden contents

# If you want to compile for arm64e, you'll need a macOS device or a arm64e device that's able to compile for arm64e.
# Once done that, uncomment the "#arm64e" by removing the "#"

# THEOS_DEVICE_IP = 127.0.0.1 -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/iPhoneOS11.2.sdk/usr/include/c++/4.2.1/
# 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/iPhoneOS11.2.sdk)
  $(info ===> Setting SYSROOT to $(SDK_PATH)...)
  SYSROOT = $(SDK_PATH)
else
  TARGET = iphone:clang:latest:8.0
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 = pascal

pascal_CFLAGS = -fobjc-arc
pascal_CCFLAGS = -std=c++11 -fno-rtti -fno-exceptions -DNDEBUG

ifeq ($(IGNORE_WARNINGS),1)
  pascal_CFLAGS += -w
  pascal_CCFLAGS += -w
endif


pascal_FILES = Tweak.xm $(MENU_SRC) $(KITTYMEMORY_SRC) $(SCLALERTVIEW_SRC)

pascal_LIBRARIES += substrate

pascal_FRAMEWORKS = $(PROJ_COMMON_FRAMEWORKS)
# GO_EASY_ON_ME = 1

include $(THEOS/makefiles/tweak.mk)

internal-package-check::
    @./versionCheck.sh # Script to verify template's current version

after-install::
    install.exec "killall -9 pascalswager || :"
 

 

is your theos folder in" var"and named "theos" just a thought, also as the first command write "make" and after the process is done run command "make package"

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Our picks

    • Gravewalker: Roguelike RPG v1.3 [ +2 Cheats ] Currency Max
      Modded/Hacked App: Gravewalker: Roguelike RPG By Space Node Co., Ltd.
      Bundle ID: com.ckmin.gravewalker
      App Store Link: https://apps.apple.com/us/app/gravewalker-roguelike-rpg/id6789180274?uo=4

      🤩 Hack Features

      - Unlimited Gems
      - Unlimited Coins
      Note:- Breakable Cheat / When Use Then Game Crash But Works / Disable After
      • 0 replies
    • Gravewalker: Roguelike RPG v1.3 [ +2 Jailed ] Currency Max
      Modded/Hacked App: Gravewalker: Roguelike RPG By Space Node Co., Ltd.
      Bundle ID: com.ckmin.gravewalker
      App Store Link: https://apps.apple.com/us/app/gravewalker-roguelike-rpg/id6789180274?uo=4

      🤩 Hack Features

      - Unlimited Gems
      - Unlimited Coins
      Note:- Breakable Cheat / When Use Then Game Crash But Works / Disable After
      • 1 reply
    • Doom Convoy v1.0 [ +7 Jailed ] Currency Max
      Modded/Hacked App: Doom Convoy By FUBU GAMES OYUN YAZILIM VE BILGI TEKNOLOJILERI TICARET LIMITED SIRKETI
      Bundle ID: com.fubugames.doomdefender
      App Store Link: https://apps.apple.com/us/app/doom-convoy/id6759977040?uo=4

      🤩 Hack Features

      - Coins Max
      - Mini Gun / Ammo Freeze
      - Mini Gun / Ammo Max Use
      - Rocket / Ammo Freeze
      - Rocket / Ammo Max Use
      - Flame Gun / Ammo Freeze
      - Flame Gun / Ammo Max Use
      • 1 reply
    • Doom Convoy v1.0 [ +7 Cheats ] Currency Max
      Modded/Hacked App: Doom Convoy By FUBU GAMES OYUN YAZILIM VE BILGI TEKNOLOJILERI TICARET LIMITED SIRKETI
      Bundle ID: com.fubugames.doomdefender
      App Store Link: https://apps.apple.com/us/app/doom-convoy/id6759977040?uo=4

      🤩 Hack Features

      - Coins Max
      - Mini Gun / Ammo Freeze
      - Mini Gun / Ammo Max Use
      - Rocket / Ammo Freeze
      - Rocket / Ammo Max Use
      - Flame Gun / Ammo Freeze
      - Flame Gun / Ammo Max Use
      • 1 reply
    • Animal Hunt: PvP Clash v1.0 [ +1 Jailed ] Enough Currency
      Modded/Hacked App: Animal Hunt: PvP Clash By Creative Distrix
      Bundle ID: com.cd.sniper.hunting.shooter
      App Store Link: https://apps.apple.com/us/app/animal-hunt-pvp-clash/id6761612123?uo=4

      🤩 Hack Features

      - Enough Currency
        • Winner
        • Like
      • 2 replies
    • Animal Hunt: PvP Clash v1.0 [ +1 Cheats ] Enough Currency
      Modded/Hacked App: Animal Hunt: PvP Clash By Creative Distrix
      Bundle ID: com.cd.sniper.hunting.shooter
      App Store Link: https://apps.apple.com/us/app/animal-hunt-pvp-clash/id6761612123?uo=4

      🤩 Hack Features

      - Enough Currency
        • Winner
        • Like
      • 1 reply
    • Animal Hunting Sniper PvP Game v3.6 [ +1 APK MOD ] Enough Currency
      Mod APK Game Name: Animal Hunting Sniper PvP Game
      Rooted Device: Not Required.
      Google Play Store Link: https://play.google.com/store/apps/details?id=com.cd.sniper.shooter.animal.hunting&hl=en

      🤩 Hack Features

      - Enough Currency
      • 0 replies
    • Too Many Zombies v1.1.11 [ +2 APK MOD ] ATK Max
      Mod APK Game Name: Too Many Zombies
      Rooted Device: Not Required.
      Google Play Store Link: https://play.google.com/store/apps/details?id=com.boomcat.zombiedefense.aos.global

      🤩 Hack Features

      - Immortal
      - ATK Max
        • Winner
      • 1 reply
    • Dream Master v1.0.5 [ +4 Cheats ] Currency Max
      Modded/Hacked App: Dream Master! By 远翔 张
      Bundle ID: com.dream.master
      App Store Link: https://apps.apple.com/us/app/dream-master/id6749934992?uo=4

      🤩 Hack Features

      - Unlimited Coins
      - Unlimited Spin
      - Build Cost
      - Star Enough
      • 2 replies
    • Dream Master v1.0.5 [ +4 Jailed ] Currency Max
      Modded/Hacked App: Dream Master! By 远翔 张
      Bundle ID: com.dream.master
      App Store Link: https://apps.apple.com/us/app/dream-master/id6749934992?uo=4

      🤩 Hack Features

      - Unlimited Coins
      - Unlimited Spin
      - Build Cost
      - Star Enough
        • Like
      • 0 replies
    • Window Meow v1.0.7161 [ +24 APK MOD ] Currency Max
      Mod APK Game Name: Window Meow
      Rooted Device: Not Required.
      Google Play Store Link: https://play.google.com/store/apps/details?id=com.skywalkgames.wildcat&hl=en

      🤩 Hack Features

      - Unlimited Coins
      - Unlimited Yarn
      - Unlimited Sunlight
      - Unlimited Food +11
      - Unlimited Water +5
      - Unlimited Warm Milk
      - Unlimited Music
      - Unlimited Rabbit Fur
      - Unlimited Fur Glove
      - Unlimited Tri Brush
      - Unlimited Stripe Ball
      - Unlimited Mouse Wand
      - Coins Freeze
      - Yarn Freeze
      - Sunlight Freeze
      - Food Freeze +11
      - Water Freeze +5
      - Warm Milk Freeze
      - Music Freeze
      - Rabbit Fur Freeze
      - Fur Glove Freeze
      - Tri Brush Freeze
      - Stripe Ball Freeze
      - Mouse Wand Freeze
      • 1 reply
    • Tower Defense PvP Tower Royale v1.8.16 [ +2 Jailed ] Max Elixir
      Modded/Hacked App: Tower Defense PvP:Tower Royale By Lightweight Inc
      Bundle ID: kr.lightweight.randomtower
      App Store Link: https://apps.apple.com/us/app/tower-defense-pvp-tower-royale/id1579639395?uo=4

      🤩 Hack Features

      - Max Elixir
      - Merge All Dice
        • Agree
        • Haha
        • Winner
        • Like
      • 4 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