Problems in Mac OS X 10.5.8
Posted: Sun Dec 25, 2011 2:32 am
Dear colleagues,
Could you help me with my problem in CodeLite under Mac OS X? I tried made new template project "Hello world" and can't compile it. Firstly I created empty workspace and secondary created console project:
Build command illustrate follow results:
File Test1.txt contains just one row: "./Debug/main.o"
I tried check in command:
inplace of
and it is work well....
Could you tell me why I can't build project by using build command of codelite and what is difference between two rows:
Conceptually it is should be same as I understood, becuase Test1.txt file contains list of object files for building. Thanks a lot for your answers!
Could you help me with my problem in CodeLite under Mac OS X? I tried made new template project "Hello world" and can't compile it. Firstly I created empty workspace and secondary created console project:
Code: Select all
#include <stdio.h>
int main(int argc, char **argv)
{
printf("hello world\n");
return 0;
}
Code: Select all
gcc -c "/Users/Anton/Data/Projects/temp_prj/testworspace/Test1/main.c" -g -o ./Debug/main.o -I. -I.
gcc -o ./Debug/Test1 @"/Users/Anton/Data/Projects/temp_prj/testworspace/Test1/Test1.txt" -L.
i686-apple-darwin9-gcc-4.0.1: @/Users/Anton/Data/Projects/temp_prj/testworspace/Test1/Test1.txt: No such file or directory
i686-apple-darwin9-gcc-4.0.1: no input files
make: *** [Debug/Test1] Error 1
I tried check in command:
Code: Select all
gcc -o ./Debug/Test1 ./Debug/main.o -L.
Code: Select all
gcc -o ./Debug/Test1 @"/Users/Anton/Data/Projects/temp_prj/testworspace/Test1/Test1.txt" -L.
Could you tell me why I can't build project by using build command of codelite and what is difference between two rows:
Code: Select all
gcc -o ./Debug/Test1 ./Debug/main.o -L.
and
gcc -o ./Debug/Test1 @"/Users/Anton/Data/Projects/temp_prj/testworspace/Test1/Test1.txt" -L.