It's been a while since I used gcc on windows. I am now seeing:
$ make -f Makefile.win
gcc -DWINDOWS -static -Iwin/include -Lwin/lib -Wall -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -std=c99 -DUSE_PRIVATE_PATHS -Wdeclaration-after-statement -O2 -I. -mno-cygwin -c -o cave.o cave.c
gcc.exe: error: unrecognized command line option '-mno-cygwin'
make: *** [cave.o] Error 1
using Mingw, git bash shell with properly set build path. Any suggestions?
$ make -f Makefile.win
gcc -DWINDOWS -static -Iwin/include -Lwin/lib -Wall -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -std=c99 -DUSE_PRIVATE_PATHS -Wdeclaration-after-statement -O2 -I. -mno-cygwin -c -o cave.o cave.c
gcc.exe: error: unrecognized command line option '-mno-cygwin'
make: *** [cave.o] Error 1
using Mingw, git bash shell with properly set build path. Any suggestions?
Comment