cygwin gcc no such file error

CodeLite installation/troubleshooting forum
R12345
CodeLite Curious
Posts: 2
Joined: Tue Sep 23, 2014 5:52 pm
Genuine User: Yes
IDE Question: CPP
Contact:

cygwin gcc no such file error

Post by R12345 »

I am trying to use a cygwin gcc compiler.
When I build I get a "No such file or directory" error, but the file exists!
If I use a batch file to launch the compiler it works fine, so I know all the paths are correct.

Code: Select all

C:\Windows\system32\cmd.exe /c "mingw32-make -e -f  Makefile"
----------Building project:[ test_1 - Debug ]----------
mingw32-make[1]: Entering directory 'C:/Users/user.name/Documents/CodeLite/Workspace/test_1'
C:/cygwin/opt/crosstool/gcc-3.3.4-glibc-2.3.2/arm-unknown-linux-gnu/arm-unknown-linux-gnu/bin/gcc.exe  -c  "C:/Users/user.name/Documents/CodeLite/Workspace/test_1/main.c" -g -O0 -Wall  -o ./Debug/main.c.o -I. -I.
gcc: C:/Users/user.name/Documents/CodeLite/Workspace/test_1/main.c -g: No such file or directory
gcc: no input files
mingw32-make[1]: *** [Debug/main.c.o] Error 1
mingw32-make: *** [All] Error 2
test_1.mk:94: recipe for target 'Debug/main.c.o' failed
mingw32-make[1]: Leaving directory 'C:/Users/user.name/Documents/CodeLite/Workspace/test_1'
Makefile:4: recipe for target 'All' failed
1 errors, 0 warnings

I have no idea what to do.
I am using Windows 7-64. Does CodeLite only work on Linux?
User avatar
eranif
CodeLite Plugin
Posts: 6372
Joined: Wed Feb 06, 2008 9:29 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: cygwin gcc no such file error

Post by eranif »

You need to start codelite from within the cygwin terminal. In addition, make sure that you have selected the cygwin compiler in the project settings
Make sure you have read the HOW TO POST thread
R12345
CodeLite Curious
Posts: 2
Joined: Tue Sep 23, 2014 5:52 pm
Genuine User: Yes
IDE Question: CPP
Contact:

Re: cygwin gcc no such file error

Post by R12345 »

Thank you eranif.
I am not sure what you are telling me to do. Are you saying that I must run CodeLite in a Linux emulator? That what I am attempting to do is impossible?
The cygwin terminal is an emulation of the Linux command line. It cannot launch a GUI program as far as I know.
User avatar
eranif
CodeLite Plugin
Posts: 6372
Joined: Wed Feb 06, 2008 9:29 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: cygwin gcc no such file error

Post by eranif »

R12345 wrote:Are you saying that I must run CodeLite in a Linux emulator?
Its not a Linux emulator, its just a bash console with Linux utilities and understanding the Linux paths
You can run codelite from within it (and this is the recommended way of doing it)
R12345 wrote:It cannot launch a GUI program as far as I know
Yes it can

see attached screenshot to see what I meant
codelite-cygwin.png
Eran
You do not have the required permissions to view the files attached to this post.
Make sure you have read the HOW TO POST thread
Post Reply