Issue
I am newbie for Linux and build systems and I am trying to move code base from Linux to Windows. I am getting some issues for build.
- cygwin
- arm-none-eabi-gcc from https://launchpad.net/gcc-arm-embedded
and when I build my application, I am getting following error :
arm-none-eabi-gcc.exe: error: /cygdrive/d/developments/RIOT/examples/ipc_pingpong/main.c: No such file or directory arm-none-eabi-gcc.exe: fatal error: no input files compilation terminated.
It looks like a path problem between cygwin (cygdriver) and windows. I have also set CYGPATH
as c:\cygwin64\bin\cygpath.exe but result is same.
Why gcc compiler cannot see my files? Any idea.
Regards.
Murat.
Solution
I have tried MinGW instead of Cygwin and problem is solved.
Following link is very helpfull for MinGW setup : http://www.jann.cc/2013/10/10/embedded_development_with_open_source_tools_on_windows.html
Thanks. Murat
Answered By - Murat Answer Checked By - Cary Denson (WPSolving Admin)