From: Ruby Z. <zhe...@gm...> - 2009-10-08 06:44:27
|
Hello, Trying to cross compile Hello World to iPhone and ran into the following issue during make. $ make mkdir -p obj/ gcc-4.2 -x objective-c -arch i386 -fmessage-length=0 -pipe -std=c99 -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -Wreturn-type -D__IPHONE_OS_VERSION_MIN_REQUIRED=30000 -isysroot /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator3.1.sdk -fvisibility=hidden -mmacosx-version-min=10.5 -gdwarf-2 -I. -c null_Test1.m -o obj/null_Test1.o null_Test1.m:1:18: error: Test1.h: No such file or directory make: *** [obj/null_Test1.o] Error 1 It can't find Test1.h. Why is that? Thanks~ |