0

これがターミナルで出てくるものです。何かアドバイス?私はこのスレッドでアドバイスをしました:theosでの微調整のコンパイル中にエラーが発生しましたが、役に立ちませんでした。

Copying resource directories into the application wrapper...
Compiling main.m...
Compiling fooProjectApplication.mm...
Compiling RootViewController.mm...
Linking application fooProject...
collect2: ld terminated with signal 6 [Abort trap: 6]
ld(2090,0x7fff77045960) malloc: *** error for object 0x7fcaaa5009c0: pointer being freed was not allocated
*** set a breakpoint in malloc_error_break to debug
collect2: ld terminated with signal 6 [Abort trap: 6]
ld(2094,0x7fff77045960) malloc: *** error for object 0x7fbeeb6003d0: pointer being freed was not allocated
*** set a breakpoint in malloc_error_break to debug
lipo: can't open input file: /var/folders/nl/nffpk84n2vq1pg2lxcplx4mh0000gn/T//ccKO4deH.out (No such file or directory)
make[2]: *** [obj/fooProject.app/fooProject.ba964c90.unsigned] Error 1
make[1]: *** [internal-application-all_] Error 2
make: *** [fooProject.all.application.variables] Error 2
4

1 に答える 1

0

これをmakefileの上部に設定します

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

私も同じ問題を抱えていたので、これはあなたがそれを修正するのに役立つかもしれません

于 2013-02-24T12:27:20.730 に答える