Jump to content

1 post in this topic

Recommended Posts

Posted

I am trying to convert Xcode project to theos. When I try to compile with make package I am getting some noescape error please help. 
 

Here Error List of Mterminial

 

iPhone:/theos/templates/ProESP root# make package

> Making all for tweak aqre…

==> Warning: GO_EASY_ON_ME quiets all errors, which is bad practice. Please migrate to Clang directives (e.g., -Wno-<blah> or #pragma clang diagnostic).

==> Compiling Utils/YYThreadSafeArray.m (arm64)…

Utils/YYThreadSafeArray.m:142:70: error: parameter of overriding method should be annotated with __attribute__((noescape)) [-Werror,-Wmissing-noescape]

- (NSArray *)sortedArrayUsingFunction:(NSInteger (*)(id, id, void *))comparator context:(void *)context {

                                                                     ^

/theos/sdks/iPhoneOS14.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArray.h:48:120: note: parameter of overridden method is annotated with __attribute__((noescape))

- (NSArray<ObjectType> *)sortedArrayUsingFunction:(NSInteger (NS_NOESCAPE *)(ObjectType, ObjectType, void * _Nullable))comparator context:(nullable void *)context;

                                                                                                                       ^

Utils/YYThreadSafeArray.m:146:70: error: parameter of overriding method should be annotated with __attribute__((noescape)) [-Werror,-Wmissing-noescape]

- (NSArray *)sortedArrayUsingFunction:(NSInteger (*)(id, id, void *))comparator context:(void *)context hint:(NSData *)hint {

                                                                     ^

/theos/sdks/iPhoneOS14.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArray.h:49:120: note: parameter of overridden method is annotated with __attribute__((noescape))

- (NSArray<ObjectType> *)sortedArrayUsingFunction:(NSInteger (NS_NOESCAPE *)(ObjectType, ObjectType, void * _Nullable))comparator context:(nullable void *)context hint:(nullable NSData *)hint;

                                                                                                                       ^

Utils/YYThreadSafeArray.m:174:82: error: parameter of overriding method should be annotated with __attribute__((noescape)) [-Werror,-Wmissing-noescape]

- (void)enumerateObjectsUsingBlock:(void (^)(id obj, NSUInteger idx, BOOL *stop))block {

                                                                                 ^

/theos/sdks/iPhoneOS14.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArray.h:63:102: note: parameter of overridden method is annotated with __attribute__((noescape))

- (void)enumerateObjectsUsingBlock:(void (NS_NOESCAPE ^)(ObjectType obj, NSUInteger idx, BOOL *stop))block API_AVAILABLE(macos(10.6), ios(4.0), watchos(2.0), tvos(9.0));

                                                                                                     ^

Utils/YYThreadSafeArray.m:178:121: error: parameter of overriding method should be annotated with __attribute__((noescape)) [-Werror,-Wmissing-noescape]

- (void)enumerateObjectsWithOptions:(NSEnumerationOptions)opts usingBlock:(void (^)(id obj, NSUInteger idx, BOOL *stop))block {

                                                                                                                        ^

/theos/sdks/iPhoneOS14.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArray.h:64:141: note: parameter of overridden method is annotated with __attribute__((noescape))

- (void)enumerateObjectsWithOptions:(NSEnumerationOptions)opts usingBlock:(void (NS_NOESCAPE ^)(ObjectType obj, NSUInteger idx, BOOL *stop))block API_AVAILABLE(macos(10.6), ios(4.0), watchos(2.0), tvos(9.0));

                                                                                                                                            ^

Utils/YYThreadSafeArray.m:182:143: error: parameter of overriding method should be annotated with __attribute__((noescape)) [-Werror,-Wmissing-noescape]

- (void)enumerateObjectsAtIndexes:(NSIndexSet *)s options:(NSEnumerationOptions)opts usingBlock:(void (^)(id obj, NSUInteger idx, BOOL *stop))block {

                                                                                                                                              ^

/theos/sdks/iPhoneOS14.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArray.h:65:163: note: parameter of overridden method is annotated with __attribute__((noescape))

- (void)enumerateObjectsAtIndexes:(NSIndexSet *)s options:(NSEnumerationOptions)opts usingBlock:(void (NS_NOESCAPE ^)(ObjectType obj, NSUInteger idx, BOOL *stop))block API_AVAILABLE(macos(10.6), ios(4.0), watchos(2.0), tvos(9.0));

                                                                                                                                                                  ^

Utils/YYThreadSafeArray.m:186:86: error: parameter of overriding method should be annotated with __attribute__((noescape)) [-Werror,-Wmissing-noescape]

- (NSUInteger)indexOfObjectPassingTest:(BOOL (^)(id obj, NSUInteger idx, BOOL *stop))predicate {

                                                                                     ^

/theos/sdks/iPhoneOS14.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArray.h:67:106: note: parameter of overridden method is annotated with __attribute__((noescape))

- (NSUInteger)indexOfObjectPassingTest:(BOOL (NS_NOESCAPE ^)(ObjectType obj, NSUInteger idx, BOOL *stop))predicate API_AVAILABLE(macos(10.6), ios(4.0), watchos(2.0), tvos(9.0));

                                                                                                         ^

Utils/YYThreadSafeArray.m:190:125: error: parameter of overriding method should be annotated with __attribute__((noescape)) [-Werror,-Wmissing-noescape]

- (NSUInteger)indexOfObjectWithOptions:(NSEnumerationOptions)opts passingTest:(BOOL (^)(id obj, NSUInteger idx, BOOL *stop))predicate {

                                                                                                                            ^

/theos/sdks/iPhoneOS14.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArray.h:68:145: note: parameter of overridden method is annotated with __attribute__((noescape))

- (NSUInteger)indexOfObjectWithOptions:(NSEnumerationOptions)opts passingTest:(BOOL (NS_NOESCAPE ^)(ObjectType obj, NSUInteger idx, BOOL *stop))predicate API_AVAILABLE(macos(10.6), ios(4.0), watchos(2.0), tvos(9.0));

                                                                                                                                                ^

Utils/YYThreadSafeArray.m:194:147: error: parameter of overriding method should be annotated with __attribute__((noescape)) [-Werror,-Wmissing-noescape]

- (NSUInteger)indexOfObjectAtIndexes:(NSIndexSet *)s options:(NSEnumerationOptions)opts passingTest:(BOOL (^)(id obj, NSUInteger idx, BOOL *stop))predicate {

                                                                                                                                                  ^

/theos/sdks/iPhoneOS14.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArray.h:69:166: note: parameter of overridden method is annotated with __attribute__((noescape))

- (NSUInteger)indexOfObjectAtIndexes:(NSIndexSet *)s options:(NSEnumerationOptions)opts passingTest:(BOOL (NS_NOESCAPE^)(ObjectType obj, NSUInteger idx, BOOL *stop))predicate API_AVAILABLE(macos(10.6), ios(4.0), watchos(2.0), tvos(9.0));

                                                                                                                                                                     ^

Utils/YYThreadSafeArray.m:198:91: error: parameter of overriding method should be annotated with __attribute__((noescape)) [-Werror,-Wmissing-noescape]

- (NSIndexSet *)indexesOfObjectsPassingTest:(BOOL (^)(id obj, NSUInteger idx, BOOL *stop))predicate {

                                                                                          ^

/theos/sdks/iPhoneOS14.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArray.h:71:111: note: parameter of overridden method is annotated with __attribute__((noescape))

- (NSIndexSet *)indexesOfObjectsPassingTest:(BOOL (NS_NOESCAPE ^)(ObjectType obj, NSUInteger idx, BOOL *stop))predicate API_AVAILABLE(macos(10.6), ios(4.0), watchos(2.0), tvos(9.0));

                                                                                                              ^

Utils/YYThreadSafeArray.m:202:130: error: parameter of overriding method should be annotated with __attribute__((noescape)) [-Werror,-Wmissing-noescape]

- (NSIndexSet *)indexesOfObjectsWithOptions:(NSEnumerationOptions)opts passingTest:(BOOL (^)(id obj, NSUInteger idx, BOOL *stop))predicate {

                                                                                                                                 ^

/theos/sdks/iPhoneOS14.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArray.h:72:150: note: parameter of overridden method is annotated with __attribute__((noescape))

- (NSIndexSet *)indexesOfObjectsWithOptions:(NSEnumerationOptions)opts passingTest:(BOOL (NS_NOESCAPE ^)(ObjectType obj, NSUInteger idx, BOOL *stop))predicate API_AVAILABLE(macos(10.6), ios(4.0), watchos(2.0), tvos(9.0));

                                                                                                                                                     ^

Utils/YYThreadSafeArray.m:206:152: error: parameter of overriding method should be annotated with __attribute__((noescape)) [-Werror,-Wmissing-noescape]

- (NSIndexSet *)indexesOfObjectsAtIndexes:(NSIndexSet *)s options:(NSEnumerationOptions)opts passingTest:(BOOL (^)(id obj, NSUInteger idx, BOOL *stop))predicate {

                                                                                                                                                       ^

/theos/sdks/iPhoneOS14.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArray.h:73:172: note: parameter of overridden method is annotated with __attribute__((noescape))

- (NSIndexSet *)indexesOfObjectsAtIndexes:(NSIndexSet *)s options:(NSEnumerationOptions)opts passingTest:(BOOL (NS_NOESCAPE ^)(ObjectType obj, NSUInteger idx, BOOL *stop))predicate API_AVAILABLE(macos(10.6), ios(4.0), watchos(2.0), tvos(9.0));

                                                                                                                                                                           ^

Utils/YYThreadSafeArray.m:210:55: error: parameter of overriding method should be annotated with __attribute__((noescape)) [-Werror,-Wmissing-noescape]

- (NSArray *)sortedArrayUsingComparator:(NSComparator)cmptr {

                                                      ^

/theos/sdks/iPhoneOS14.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArray.h:75:79: note: parameter of overridden method is annotated with __attribute__((noescape))

- (NSArray<ObjectType> *)sortedArrayUsingComparator:(NSComparator NS_NOESCAPE)cmptr API_AVAILABLE(macos(10.6), ios(4.0), watchos(2.0), tvos(9.0));

                                                                              ^

Utils/YYThreadSafeArray.m:214:87: error: parameter of overriding method should be annotated with __attribute__((noescape)) [-Werror,-Wmissing-noescape]

- (NSArray *)sortedArrayWithOptions:(NSSortOptions)opts usingComparator:(NSComparator)cmptr {

                                                                                      ^

/theos/sdks/iPhoneOS14.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArray.h:76:111: note: parameter of overridden method is annotated with __attribute__((noescape))

- (NSArray<ObjectType> *)sortedArrayWithOptions:(NSSortOptions)opts usingComparator:(NSComparator NS_NOESCAPE)cmptr API_AVAILABLE(macos(10.6), ios(4.0), watchos(2.0), tvos(9.0));

                                                                                                              ^

Utils/YYThreadSafeArray.m:218:131: error: parameter of overriding method should be annotated with __attribute__((noescape)) [-Werror,-Wmissing-noescape]

- (NSUInteger)indexOfObject:(id)obj inSortedRange:(NSRange)r options:(NSBinarySearchingOptions)opts usingComparator:(NSComparator)cmp {

                                                                                                                                  ^

/theos/sdks/iPhoneOS14.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArray.h:84:151: note: parameter of overridden method is annotated with __attribute__((noescape))

- (NSUInteger)indexOfObject:(ObjectType)obj inSortedRange:(NSRange)r options:(NSBinarySearchingOptions)opts usingComparator:(NSComparator NS_NOESCAPE)cmp API_AVAILABLE(macos(10.6), ios(4.0), watchos(2.0), tvos(9.0)); // binary search

                                                                                                                                                      ^

Utils/YYThreadSafeArray.m:292:58: error: parameter of overriding method should be annotated with __attribute__((noescape)) [-Werror,-Wmissing-noescape]

- (void)sortUsingFunction:(NSInteger (*)(id, id, void *))compare context:(void *)context {

                                                         ^

/theos/sdks/iPhoneOS14.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArray.h:169:97: note: parameter of overridden method is annotated with __attribute__((noescape))

- (void)sortUsingFunction:(NSInteger (NS_NOESCAPE *)(ObjectType,  ObjectType, void * _Nullable))compare context:(nullable void *)context;

                                                                                                ^

Utils/YYThreadSafeArray.m:316:43: error: parameter of overriding method should be annotated with __attribute__((noescape)) [-Werror,-Wmissing-noescape]

- (void)sortUsingComparator:(NSComparator)cmptr {

                                          ^

/theos/sdks/iPhoneOS14.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArray.h:178:55: note: parameter of overridden method is annotated with __attribute__((noescape))

- (void)sortUsingComparator:(NSComparator NS_NOESCAPE)cmptr API_AVAILABLE(macos(10.6), ios(4.0), watchos(2.0), tvos(9.0));

                                                      ^

Utils/YYThreadSafeArray.m:320:75: error: parameter of overriding method should be annotated with __attribute__((noescape)) [-Werror,-Wmissing-noescape]

- (void)sortWithOptions:(NSSortOptions)opts usingComparator:(NSComparator)cmptr {

                                                                          ^

/theos/sdks/iPhoneOS14.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArray.h:179:87: note: parameter of overridden method is annotated with __attribute__((noescape))

- (void)sortWithOptions:(NSSortOptions)opts usingComparator:(NSComparator NS_NOESCAPE)cmptr API_AVAILABLE(macos(10.6), ios(4.0), watchos(2.0), tvos(9.0));

                                                                                      ^

17 errors generated.

make[3]: *** [/theos/makefiles/instance/rules.mk:197: /theos/templates/ProESP/.theos/obj/arm64/Utils/YYThreadSafeArray.m.c6c7b4fc.o] Error 1

make[2]: *** [/theos/makefiles/instance/library.mk:52: /theos/templates/ProESP/.theos/obj/arm64/aqre.dylib] Error 2

make[1]: *** [/theos/makefiles/instance/library.mk:37: internal-library-all_] Error 2

make: *** [/theos/makefiles/master/rules.mk:119: aqre.all.tweak.variables] Error 2

iPhone:/theos/templates/ProESP root#      

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

    • EvoCreo 2: Monster Trainer RPG v1.4.5 +8 Jailed Cheats [ Damage + More ]
      Modded/Hacked App: EvoCreo 2: Monster Trainer RPG By Ilmfinity Studios LLC
      Bundle ID: com.ilmfinity.evocreo2
      iTunes Store Link: https://apps.apple.com/us/app/evocreo-2-monster-trainer-rpg/id1499001662?uo=4

       


      🤩 Hack Features

      - Unlimited Money -> Will increase instead of decrease.
      - Unlimited Skill Points
      - Unlimited Bag Items -> Will increase instead of decrease.
      - Prestige Cleo Allowed
      - Max Creo Level -> Earn some XP.
      - Damage Multiplier - Linked -> Affects both you and enemy. Use carefully.
      - Free In-App Purchases
      - Unlock All Achievements/Badges
        • Informative
        • Agree
        • Thanks
        • Winner
        • Like
      • 28 replies
    • EvoCreo 2: Monster Trainer RPG v1.4.5 +8 Cheats [ Damage + More ]
      Modded/Hacked App: EvoCreo 2: Monster Trainer RPG By Ilmfinity Studios LLC
      Bundle ID: com.ilmfinity.evocreo2
      iTunes Store Link: https://apps.apple.com/us/app/evocreo-2-monster-trainer-rpg/id1499001662?uo=4

       


      🤩 Hack Features

      - Unlimited Money -> Will increase instead of decrease.
      - Unlimited Skill Points
      - Unlimited Bag Items -> Will increase instead of decrease.
      - Prestige Cleo Allowed
      - Max Creo Level -> Earn some XP.
      - Damage Multiplier - Linked -> Affects both you and enemy. Use carefully.
      - Free In-App Purchases
      - Unlock All Achievements/Badges
        • Informative
        • Agree
        • Thanks
        • Like
      • 19 replies
    • Disney Pop Town! Match 3 Games v1.14.0 +2 Jailed Cheats [ Unlimited Moves ]
      Modded/Hacked App: Disney Pop Town! Match 3 Games By Wemade Play Co.,Ltd.
      Bundle ID: com.jamcity.joy
      App Store Link: https://apps.apple.com/us/app/disney-pop-town-match-3-games/id1529504654?uo=4

       
       

      🤩 Hack Features

      - Unlimited Moves -> Enable, use a move then disable.
      - Unlimited Skill
        • Winner
      • 4 replies
    • Disney Pop Town! Match 3 Games v1.14.0 +2 Cheats [ Unlimited Moves ]
      Modded/Hacked App: Disney Pop Town! Match 3 Games By Wemade Play Co.,Ltd.
      Bundle ID: com.jamcity.joy
      App Store Link: https://apps.apple.com/us/app/disney-pop-town-match-3-games/id1529504654?uo=4

       


      🤩 Hack Features

      - Unlimited Moves -> Enable, use a move then disable.
      - Unlimited Skill
        • Informative
        • Winner
      • 5 replies
    • Slime Castle - Idle TD v2.2.2 +8 Jailed Cheats [ Damage & Defence ]
      Modded/Hacked App: Slime Castle - Idle TD By AZUR INTERACTIVE GAMES LIMITED
      Bundle ID: com.redtailworks.slimetd
      iTunes Store Link: https://apps.apple.com/us/app/slime-castle-idle-td/id6480410032?uo=4


      Hack Features:
      - Unlimited Coins -> Will increase instead of decrease.
      - Unlimited Diamonds -> Will increase instead of decrease.
      - Unlimited Silver -> Will increase instead of decrease.
      - God Mode
      - x5 Speed Unlocked
      - No Ads


      Jailbreak required hack(s): [Mod Menu Hack] Slime Castle - Idle TD v0.9.2 +6 Cheats [ Unlimited Currencies ] - 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/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 202 replies
    • Senses - Choose Romance Story v1.15.0 +2 Jailed Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Senses - Choose Romance Story By Allustone, Inc.
      Bundle ID: games.extras.novels
      App Store Link: https://apps.apple.com/us/app/senses-choose-romance-story/id1665172637?uo=4

       


      🤩 Hack Features

      - Unlimited Gems -> Head into Settings > Support and toggle the Copy UDID button.*
      - Unlimited Keys -> Head into Settings > Support and toggle the Copy UDID button.*

      * - Only use 1 feature at a time.
        • Thanks
        • Like
      • 9 replies
    • Senses - Choose Romance Story v1.15.0 +2 Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Senses - Choose Romance Story By Allustone, Inc.
      Bundle ID: games.extras.novels
      App Store Link: https://apps.apple.com/us/app/senses-choose-romance-story/id1665172637?uo=4

       
       

      🤩 Hack Features

      - Unlimited Gems -> Head into Settings > Support and toggle the Copy UDID button.*
      - Unlimited Keys -> Head into Settings > Support and toggle the Copy UDID button.*

      * - Only use 1 feature at a time.
        • Agree
      • 1 reply
    • Harry Potter: Puzzles & Spells v96.1.309 +1 Jailed Cheat [ Freeze Moves ]
      Modded/Hacked App: Harry Potter: Puzzles & Spells By Zynga Inc.
      Bundle ID: com.zynga.pottermatch
      iTunes Store Link: https://apps.apple.com/us/app/harry-potter-puzzles-spells/id1434505322?uo=4


      Hack Features:
      - Freeze Moves


      Jailbreak required hack(s): [Mod Menu Hack] Harry Potter: Puzzles & Spells v85.0.271 +1 Cheat [ Unlimited Moves ] - 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/
        • Informative
        • Agree
        • Thanks
        • Winner
        • Like
      • 79 replies
    • Harry Potter: Puzzles & Spells v96.1.309 +1 Cheat [ Freeze Moves ]
      Modded/Hacked App: Harry Potter: Puzzles & Spells By Zynga Inc.
      Bundle ID: com.zynga.pottermatch
      iTunes Store Link: https://apps.apple.com/us/app/harry-potter-puzzles-spells/id1434505322?uo=4


      Hack Features:
      - Freeze Move


      Non-Jailbroken & No Jailbreak required hack(s): [IPA Mod Menu] Harry Potter: Puzzles & Spells v85.0.271 +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/
        • Agree
        • Thanks
        • Like
      • 39 replies
    • Slime Castle - Idle TD v2.2.2 +8 Cheats [ Damage & Defence ]
      Modded/Hacked App: Slime Castle - Idle TD By AZUR INTERACTIVE GAMES LIMITED
      Bundle ID: com.redtailworks.slimetd
      iTunes Store Link: https://apps.apple.com/us/app/slime-castle-idle-td/id6480410032?uo=4


      Hack Features:
      - Unlimited Coins -> Will increase instead of decrease.
      - Unlimited Diamonds -> Will increase instead of decrease.
      - Unlimited Silver -> Will increase instead of decrease.
      - God Mode
      - x5 Speed Unlocked
      - No Ads


      Non-Jailbroken & No Jailbreak required hack(s): [Non-Jailbroken Hack] Slime Castle - Idle TD v0.9.2 +6 Jailed Cheats [ Unlimited Currencies ] - 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/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 151 replies
    • Warlet: The American Civil War v1.4 [+2 Jailed Cheats]
      Modded/Hacked App: Warlet: The American Civil War By Bruno Marcos
      Bundle ID: com.warlet.theamericancivilwar
      App Store Link: https://apps.apple.com/us/app/warlet-the-american-civil-war/id6741015253?uo=4



      🤩 Hack Features

      - Add Gold (Use inside battle)
      - Never Die
      • 0 replies
    • Warlet: The American Civil War v1.4 [+2 Cheats]
      Modded/Hacked App: Warlet: The American Civil War By Bruno Marcos
      Bundle ID: com.warlet.theamericancivilwar
      App Store Link: https://apps.apple.com/us/app/warlet-the-american-civil-war/id6741015253?uo=4



      🤩 Hack Features

      - Add Gold (Use inside battle)
      - Never Die
       
        • Thanks
      • 0 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