iOS Question Error compiling using local Mac, Hosted Mac server compiles ok

jai

Active Member
Licensed User
Longtime User
I am working on a large app that compiles and runs fine in the debug mode using the hosted Mac server but when I compile as a Build Release App it works only partially before crashing.

I tried to compile it using my local Mac server but am getting fatal errors that seem to be related to "iTableView.h". For example-

In file included from /Users/jai/Downloads/macserver-aa/UploadedProjects/avyvjjg/B4iProject/b4i_f.m:2:
/Users/jai/Downloads/macserver-aa/UploadedProjects/avyvjjg/B4iProject/b4i_f.h:6:9: fatal error: 'iTableView.h' file not found
#import "iTableView.h"
^
1 error generated

Error: ** BUILD FAILED **

The following build commands failed:
CompileC build/B4iProject.build/Release-iphoneos/B4iProject.build/Objects-normal/armv7/b4i_f.o B4iProject/b4i_f.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler
CompileC build/B4iProject.build/Release-iphoneos/B4iProject.build/Objects-normal/armv7/b4i_main.o B4iProject/b4i_main.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler
CompileC build/B4iProject.build/Release-iphoneos/B4iProject.build/Objects-normal/armv7/b4i_editbox.o B4iProject/b4i_editbox.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler
CompileC build/B4iProject.build/Release-iphoneos/B4iProject.build/Objects-normal/armv7/b4i_data.o B4iProject/b4i_data.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler
CompileC build/B4iProject.build/Release-iphoneos/B4iProject.build/Objects-normal/armv7/b4i_menupanel.o B4iProject/b4i_menupanel.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler
CompileC build/B4iProject.build/Release-iphoneos/B4iProject.build/Objects-normal/armv7/b4i_reports.o B4iProject/b4i_reports.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler
CompileC build/B4iProject.build/Release-iphoneos/B4iProject.build/Objects-normal/armv7/b4i_richstring.o B4iProject/b4i_richstring.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler
(7 failures)


Do I need to copy specific files to local Mac and, if so, to which directory. It would not let me copy files such as iTableView.h to the B4iProject subdirectory. Appreciate any help.
 
Top