Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to remedy mno cygwin error?

I'm working on compiling a library in windows with GCC and Make. When I run make, I get the following error:

unrecognized command line option '-mno-cygwin'

I saw this post on SO, but it doesn't necessarily seem like the same issue, and I don't understand how to downgrade my system to a version of GCC (or Make) that supports the flag I need to use in order to compile.

Could someone please try to point me in the right direction, or if you've run into this problem offer a solution?

I'm running Windows 8.1 pro, GCC 5.4.0, make 4.2.1. I can post more info if it is necessary to help me.

like image 708
jml Avatar asked Dec 31 '16 02:12

jml


1 Answers

The current cygwin gcc compiles only for cygwin itself.

-mno-cygwin is an obsolete flag from gcc 3.x time that allowed the cygwin compiler to compile mingw (not cygwin) programs.

The switch was removed long time ago and true cross compilers

mingw64-x86_64-gcc-core
mingw64-i686-gcc-core
cygwin-mingw

were made available

Latest update:
https://sourceware.org/ml/cygwin-announce/2016-11/msg00020.html

like image 140
matzeri Avatar answered Sep 23 '22 15:09

matzeri