i'm new to Theos and I am developing first tweak on iOS 9.0.2 iPad Air.
I have downgraded LD64 and Darwin CC and signed libs in usr/bin but Terminal keeps throwing this error:
iPad:~/welcome mobile$ make package install
/var/mobile/welcome/theos/makefiles/targets/Darwin-arm64/iphone.mk:43: Targeting iOS 4.0 and higher is not supported with iphone-gcc. Forcing clang.
/var/mobile/welcome/theos/makefiles/targets/Darwin-arm64/iphone.mk:53: Deploying to iOS 3.0 while building for 6.0 will generate armv7-only binaries.
Making all for tweak welcome...
Preprocessing Tweak.xm...
Constants from lexical variables potentially modified elsewhere are deprecated at /private/var/theos/bin/lib/aliased.pm line 42.
Constants from lexical variables potentially modified elsewhere are deprecated at /private/var/theos/bin/lib/aliased.pm line 42.
Constants from lexical variables potentially modified elsewhere are deprecated at /private/var/theos/bin/lib/aliased.pm line 42.
Constants from lexical variables potentially modified elsewhere are deprecated at /private/var/theos/bin/lib/aliased.pm line 42.
Constants from lexical variables potentially modified elsewhere are deprecated at /private/var/theos/bin/lib/aliased.pm line 42.
Constants from lexical variables potentially modified elsewhere are deprecated at /private/var/theos/bin/lib/aliased.pm line 42.
Constants from lexical variables potentially modified elsewhere are deprecated at /private/var/theos/bin/lib/aliased.pm line 42.
Constants from lexical variables potentially modified elsewhere are deprecated at /private/var/theos/bin/lib/aliased.pm line 42.
Compiling Tweak.xm...
Linking tweak welcome...
ld: warning: ignoring file /var/mobile/welcome/theos/sdks/iPhoneOS8.1.sdk/usr/lib/dylib1.o, missing required architecture arm64 in file /var/mobile/welcome/theos/sdks/iPhoneOS8.1.sdk/usr/lib/dylib1.o (2 slices)
Stripping welcome...
Signing welcome...
Making stage for tweak welcome...
make: *** [internal-package] Error 133
iPad:~/welcome mobile$
Makefile:
ARCHS = armv7 arm64
include theos/makefiles/common.mk
TWEAK_NAME = welcome
welcome_FILES = Tweak.xm
welcome_FRAMEWORKS = UIKit
welcome_LDFLAGS += -Wl,-segalign,4000
include $(THEOS_MAKE_PATH)/tweak.mk
after-install::
install.exec "killall -9 SpringBoard"
Help! I have been setting up the development environment for a day! Thanks everyone!