I have a program I've compiled in cygwin, that I am trying to call from a batch file a la:
D:\cygwin\bin\bash --login -i C:/ILS/trunk/NAVAID/test.exe
But I am getting the error:
bash: C:/ILS/trunk/NAVAID/test.exe: cannot execute binary file
When I file test.exe inside cygwin, I get:
test.exe: PE32 executable (console) Intel 80386, for MS Windows
Any ideas why it won't run? Most of the errors I've found online are from people trying to run Linux apps, but this is something compiled (via g++) directly in cygwin (on the same machine).
On Windows 8 if it matters.