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.