Jump to content

Issue when "make package" command on MobileTerminal


Curtain

9 posts in this topic

Recommended Posts

well what should i do ?this is my "iphone.mk" code such as the following

 

ifeq ($(_THEOS_TARGET_LOADED),)

_THEOS_TARGET_LOADED := 1

THEOS_TARGET_NAME := iphone

 

ifeq ($(__THEOS_TARGET_ARG_1),clang)

_THEOS_TARGET_CC := clang

_THEOS_TARGET_CXX := clang++

_THEOS_TARGET_ARG_ORDER := 2 3

_THEOS_TARGET_CC_CFLAGS :=

else

_THEOS_TARGET_CC := gcc

_THEOS_TARGET_CXX := g++

_THEOS_TARGET_ARG_ORDER := 1 2

_THEOS_TARGET_CC_CFLAGS := -Dweak=assign

endif

 

# A version specified as a target argument overrides all previous definitions.

_SDKVERSION := $(or $(__THEOS_TARGET_ARG_$(word 1,$(_THEOS_TARGET_ARG_ORDER))),$(SDKVERSION_$(THEOS_CURRENT_ARCH)),$(SDKVERSION))

_THEOS_TARGET_SDK_VERSION := $(or $(_SDKVERSION),latest)

_THEOS_TARGET_INCLUDE_SDK_VERSION := $(or $(INCLUDE_SDKVERSION),$(INCLUDE_SDKVERSION_$(THEOS_CURRENT_ARCH)),latest)

 

_SDK_DIR := $(THEOS)/sdks

_IOS_SDKS := $(sort $(patsubst $(_SDK_DIR)/iPhoneOS%.sdk,%,$(wildcard $(_SDK_DIR)/iPhoneOS*.sdk)))

_LATEST_SDK := $(word $(words $(_IOS_SDKS)),$(_IOS_SDKS))

 

ifeq ($(_THEOS_TARGET_SDK_VERSION),latest)

override _THEOS_TARGET_SDK_VERSION := $(_LATEST_SDK)

endif

 

ifeq ($(_THEOS_TARGET_INCLUDE_SDK_VERSION),latest)

override _THEOS_TARGET_INCLUDE_SDK_VERSION := $(_LATEST_SDK)

endif

 

# We have to figure out the target version here, as we need it in the calculation of the deployment version.

_TARGET_VERSION_GE_7_0 = $(call __simplify,_TARGET_VERSION_GE_7_0,$(shell $(THEOS_BIN_PATH)/vercmp.pl $(_THEOS_TARGET_SDK_VERSION) ge 7.0))

_TARGET_VERSION_GE_6_0 = $(call __simplify,_TARGET_VERSION_GE_6_0,$(shell $(THEOS_BIN_PATH)/vercmp.pl $(_THEOS_TARGET_SDK_VERSION) ge 6.0))

_TARGET_VERSION_GE_3_0 = $(call __simplify,_TARGET_VERSION_GE_3_0,$(shell $(THEOS_BIN_PATH)/vercmp.pl $(_THEOS_TARGET_SDK_VERSION) ge 3.0))

_THEOS_TARGET_IPHONEOS_DEPLOYMENT_VERSION := $(or $(__THEOS_TARGET_ARG_$(word 2,$(_THEOS_TARGET_ARG_ORDER))),$(TARGET_IPHONEOS_DEPLOYMENT_VERSION_$(THEOS_CURRENT_ARCH)),$(TARGET_IPHONEOS_DEPLOYMENT_VERSION),$(_SDKVERSION),3.0)

 

ifeq ($(_THEOS_TARGET_IPHONEOS_DEPLOYMENT_VERSION),latest)

override _THEOS_TARGET_IPHONEOS_DEPLOYMENT_VERSION := $(_LATEST_SDK)

endif

 

_DEPLOY_VERSION_GE_3_0 = $(call __simplify,_DEPLOY_VERSION_GE_3_0,$(shell $(THEOS_BIN_PATH)/vercmp.pl $(_THEOS_TARGET_IPHONEOS_DEPLOYMENT_VERSION) ge 3.0))

_DEPLOY_VERSION_LT_4_3 = $(call __simplify,_DEPLOY_VERSION_LT_4_3,$(shell $(THEOS_BIN_PATH)/vercmp.pl $(_THEOS_TARGET_IPHONEOS_DEPLOYMENT_VERSION) lt 4.3))

 

ifeq ($(_TARGET_VERSION_GE_6_0)$(_DEPLOY_VERSION_GE_3_0)$(_DEPLOY_VERSION_LT_4_3),111)

ifeq ($(ARCHS)$(IPHONE_ARCHS)$(_THEOS_TARGET_WARNED_DEPLOY),)

$(warning Deploying to iOS 3.0 while building for 6.0 will generate armv7-only binaries.)

export _THEOS_TARGET_WARNED_DEPLOY := 1

endif

endif

 

ifeq ($(SYSROOT),)

SYSROOT ?= $(THEOS)/sdks/iPhoneOS$(_THEOS_TARGET_SDK_VERSION).sdk

ISYSROOT ?= $(THEOS)/sdks/iPhoneOS$(_THEOS_TARGET_INCLUDE_SDK_VERSION).sdk

else

ISYSROOT ?= $(SYSROOT)

endif

 

PREFIX := $(SDKBINPATH)/$(SDKTARGET)-

 

TARGET_CC ?= $(_THEOS_TARGET_CC)

TARGET_CXX ?= $(_THEOS_TARGET_CXX)

TARGET_LD ?= $(_THEOS_TARGET_CXX)

TARGET_STRIP ?= strip

TARGET_STRIP_FLAGS ?= -x

TARGET_CODESIGN_ALLOCATE ?= codesign_allocate

TARGET_CODESIGN ?= ldid

TARGET_CODESIGN_FLAGS ?= -S

 

TARGET_PRIVATE_FRAMEWORK_PATH = $(SYSROOT)/System/Library/PrivateFrameworks

TARGET_PRIVATE_FRAMEWORK_INCLUDE_PATH = $(ISYSROOT)/System/Library/PrivateFrameworks

 

include $(THEOS_MAKE_PATH)/targets/_common/darwin.mk

include $(THEOS_MAKE_PATH)/targets/_common/darwin_flat_bundle.mk

 

ifeq ($(_TARGET_VERSION_GE_7_0),1) # >= 7.0 {

ARCHS ?= armv7 arm64

else # } < 7.0 {

ifeq ($(_TARGET_VERSION_GE_6_0),1) # >= 6.0 {

ifeq ($(_DEPLOY_VERSION_GE_3_0)$(_DEPLOY_VERSION_LT_4_3),11) # 3.0 <= Deploy < 4.3 {

ARCHS ?= armv7

else # } else {

ARCHS ?= armv7

endif # }

else # } < 6.0 {

ifeq ($(_TARGET_VERSION_GE_3_0),1) # >= 3.0 {

ARCHS ?= armv6 armv7

else # } < 3.0 {

ARCHS ?= armv6

endif # }

endif # }

endif # }

NEUTRAL_ARCH = armv7

 

SDKFLAGS := -D__IPHONE_OS_VERSION_MIN_REQUIRED=__IPHONE_$(subst .,_,$(_THEOS_TARGET_IPHONEOS_DEPLOYMENT_VERSION)) -miphoneos-version-min=$(_THEOS_TARGET_IPHONEOS_DEPLOYMENT_VERSION)

_THEOS_TARGET_CFLAGS := -isysroot "$(ISYSROOT)" $(SDKFLAGS) $(_THEOS_TARGET_CC_CFLAGS)

_THEOS_TARGET_LDFLAGS := -isysroot "$(SYSROOT)" $(SDKFLAGS) -multiply_defined suppress

 

TARGET_INSTALL_REMOTE := $(_THEOS_TRUE)

_THEOS_TARGET_DEFAULT_PACKAGE_FORMAT := deb

endif

Link to comment
Share on other sites

 

with DIDA help solve the error started
But there are new error
what is it?
Forgive my stupidity
I was a beginner

 

Already been answered: http://iosgods.com/topic/2674-perferencesh-file-not-found-error-when-compling-patcherhelp/

Link to comment
Share on other sites

already fixed the header .but also errors 

http://prntscr.com/5d621h

 tweak.xm  red fonts "errors"

the last question,today .Thank you very much patience for me 

Link to comment
Share on other sites

already fixed the header .but also errors 

http://prntscr.com/5d621h

 tweak.xm  red fonts "errors"

the last question,today .Thank you very much patience for me 

It'll be more useful if you could copy paste the terminal text and post them here in Code tags also. :)

 

The error you're getting has something to do with the characters in your Tweak.xm file. Can you paste here your tweak.xm so we can take a look?

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

  • Our picks

    • Cat Snack Bar Cheats v1.0.92 +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
        • Thanks
        • Winner
        • Like
      • 43 replies
    • PewDiePie's Tuber Simulator Cheats v2.16.0 +3
      Modded/Hacked App: PewDiePie's Tuber Simulator by Outerminds Inc.
      Bundle ID: com.outerminds.tubular
      iTunes Store Link: https://itunes.apple.com/us/app/pewdiepies-tuber-simulator/id1093190533?mt=8&uo=4&at=1010lce4


      Hack Features:
      - Infinite Subscriber
      - Infinite Views
      - Infinite Bux


      Hack Download Link: https://iosgods.com/topic/86366-arm64-pewdiepies-tuber-simulator-cheats-v1310-3/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 1,103 replies
    • Fishing Superstars v5.9.64 +7 Cheats
      Modded/Hacked App: Fishing Superstars By Com2uS Holdings Corporation
      Bundle ID: com.gamevil.fishingsuperstarsfree
      iTunes Store Link: https://apps.apple.com/us/app/fishing-superstars/id532741325?uo=4


      Hack Features:
       MAX DAMAGE (DIV)
       NO TENSION
       NO FISH HEALTH
       MAX DAMAGE (MUL)
       FISH ALWAYS CALM
      ALWAYS MAX CAST
      REEL DAMAGE
        • Informative
        • Agree
        • Thanks
        • Winner
        • Like
      • 93 replies
    • Candy Crush Saga Cheats v1.267.0.2 +2
      Modded/Hacked App: Candy Crush Saga By King
      Bundle ID: com.midasplayer.apps.candycrushsaga
      iTunes Store Link: https://itunes.apple.com/us/app/candy-crush-saga/id553834731?mt=8&uo=4&at=1010lce4




      Hack Features:
      - Infinite Life (Turn on when you running out of life)
      - Infinite Booster (Won't subtract when use)
       

      Hack Download Link: https://iosgods.com/topic/72296-arm64-candy-crush-saga-cheats-v11330-2-iosgods-exclusive/


      Credits:
      - @Laxus
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 4,604 replies
    • Dr.STONE Battle Craft v1.5.0 +2 Cheats
      Modded/Hacked App: Dr.STONE Battle Craft By PoppinGamesJapanCo.,Ltd.
      Bundle ID: com.poppingames.dsbc
      iTunes Store Link: https://apps.apple.com/us/app/dr-stone-battle-craft/id1513882973?uo=4


      Mod Requirements:
      - Jailbroken iPhone/iPad/iPod Touch.
      - iGameGod / Filza / iMazing or any other file managers for iOS.
      - Cydia Substrate, Substitute or libhooker depending on your jailbreak.
      - PreferenceLoader (from Cydia, Sileo or Zebra).


      Hack Features:
      - Damage Multiplier
      - Defense Multiplier


      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/forum/79-no-jailbreak-section/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/


      iOS Hack Download Link:

      Hidden Content
      Download Hack







      Installation Instructions:
      STEP 1: Download the .deb Cydia hack file from the link above. Use Safari/Google Chrome or other iOS browsers to download.
      STEP 2: Once the file has downloaded, tap on it and then you will be prompted on whether you want to open the deb with iGameGod or copy it to Filza.
      STEP 3: If necessary, tap on the downloaded file, and then, you will need to press 'Install' from the options on your screen.
      STEP 4: Let iGameGod/Filza finish the cheat installation. Make sure it successfully installs, otherwise see the note below.
      STEP 5: If the hack is a Mod Menu — which is usually the case nowadays — the cheat features can be toggled in-game. Some cheats have options that can be enabled from your iDevice settings.
      STEP 6: Turn on the features you want and play the game. You may need to follow further instructions inside the hack's popup in-game.

       

      NOTE: If you have any questions or problems, read our Troubleshooting topic & Frequently Asked Questions & Answers topic. If you still haven't found a solution, post your issue down below and we'll do our best to help! If the hack does work for you, please post your feedback below and help out other fellow members that are encountering issues.


      Credits:
      - AlyssaX64


      Cheat Video/Screenshots:

      N/A
        • Agree
        • Thanks
        • Like
      • 12 replies
    • Family Life! v1.0.32 +2++ Jailed Cheats [ Cheat Menu ]
      Modded/Hacked App: Family Life! By SUPERSONIC STUDIOS LTD
      Bundle ID: com.xia.familylife
      iTunes Store Link: https://apps.apple.com/us/app/family-life/id6449919224?uo=4


      Hack Features:
      - Cheat Menu -> Head over to Features and toggle the ? button.
      -- Life Pass Purchased


      Jailbreak required hack(s): [Mod Menu Hack] Family Life! v1.0.32 +2++ Cheats [ Cheat 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/
        • Agree
        • Like
      • 3 replies
    • Family Life! v1.0.32 +2++ Cheats [ Cheat Menu ]
      Modded/Hacked App: Family Life! By SUPERSONIC STUDIOS LTD
      Bundle ID: com.xia.familylife
      iTunes Store Link: https://apps.apple.com/us/app/family-life/id6449919224?uo=4


      Hack Features:
      - Cheat Menu -> Head over to Features and toggle the ? button.
      -- Life Pass Purchased


      Non-Jailbroken & No Jailbreak required hack(s): [Non-Jailbroken Hack] Family Life! v1.0.32 +2++ Jailed Cheats [ Cheat 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
        • Haha
        • Thanks
        • Like
      • 2 replies
    • ToyTopia: Match3 v1.2.1 +1 Jailed Cheat [ Unlimited Moves ]
      Modded/Hacked App: ToyTopia: Match3 By WEBZEN INC.
      Bundle ID: com.webzen.toytopia.ios
      iTunes Store Link: https://apps.apple.com/us/app/toytopia-match3/id1641051379?uo=4


      Hack Features:
      - Unlimited Moves -> Will not decrease.


      Jailbreak required hack(s): [Mod Menu Hack] ToyTopia: Match3 v1.2.1 +2 Cheats [ Auto Win ] - 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/
      • 0 replies
    • ToyTopia: Match3 v1.2.1 +2 Cheats [ Auto Win ]
      Modded/Hacked App: ToyTopia: Match3 By WEBZEN INC.
      Bundle ID: com.webzen.toytopia.ios
      iTunes Store Link: https://apps.apple.com/us/app/toytopia-match3/id1641051379?uo=4


      Hack Features:
      - Unlimited Moves -> Will not decrease.
      - Auto Win


      Non-Jailbroken & No Jailbreak required hack(s): [Non-Jailbroken Hack] ToyTopia: Match3 v1.2.1 +1 Jailed Cheat [ Unlimited Moves ] - 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/
        • Winner
      • 2 replies
    • Seven Hearts Cheats v1.3.265 +6 [ Always Win & More ]
      Modded/Hacked App: Seven Hearts By BROKKSINDRI Co.,LTD.
      Bundle ID: com.brokksindri.sevenhearts.ios.kr
      iTunes Store Link: https://apps.apple.com/us/app/seven-hearts/id1525657053?uo=4


      Hack Features:
      - Infinite Coins
      - Infinite Mana
      - Instant Deploy (Enable before Battle)
      - God Mode (Tower)
      - Always Win (Quit / Surrender the Game)
      - Always 3 Stars


      iOS Hack Download Link: https://iosgods.com/topic/145909-seven-hearts-cheats-v1280-6-always-win-more/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 276 replies
    • Hollywood Story: Fashion Star Cheats v11.13.5 +4
      Modded/Hacked App: Hollywood Story By nanobitsoftware.com
      Bundle ID: com.nanobitsoftware.hollywoodstory
      iTunes Store Link: https://itunes.apple.com/us/app/hollywood-story/id876656488?mt=8&uo=4&at=1010lce4


      Hack Features:
      - Infinite Cash
      - Infinite Gems
      - Infinite Energy
      - Infinite Stars Point
       


      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/forum/79-no-jailbreak-section/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 667 replies
    • GardenScapes v7.5.1 Jailed Cheats +3
      Modded/Hacked App: Gardenscapes By Playrix Games
      Bundle ID: com.playrix.gardenscapes-m3-ios
      iTunes Store Link: https://itunes.apple.com/us/app/gardenscapes/id1105855019?mt=8&uo=4&at=1010lce4



      Hack Features:
      - Infinite Moves (Won't Subtract)
      - Infinite Boosters (Won't Substract)

       

      Hack Download Link: https://iosgods.com/topic/71553-arm64-gardenscapes-v290-jailed-cheats-2/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 1,451 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