0

I'm using iOS SDK 6.1 and am trying to make a jailbreak tweak using THEOS. I used the default tweak template (5), created the project, built it, and got an error:

collect2: ld terminated with signal 6 [Abort trap: 6]

I looked it up, found this response: error "ld terminated with signal 6" for theos project after upgrade to Xcode 4.5

According to that article, I added this to my MakeFile:

export ARCHS=armv7 export TARGET=iphone:latest:4.3

I rebuilt it and came up with this error:

llvm-g++-4.2: Invalid arch name : export

I looked and could not find why it is giving me that answer - any ideas? Thanks!

Community
  • 1
  • 1

1 Answers1

1

Your ARCHS variable and TARGET variable should not be on the same line. It should look like this:

export ARCHS=armv7
export TARGET=iphone:latest:4.3
Nate
  • 31,017
  • 13
  • 83
  • 207
Otium
  • 1,098
  • 8
  • 20