The -mno-cygwin compile time flag is deprecated and now causes an error in

newer versions of the gcc compiler for cygwin.
This commit is contained in:
Anthony Tuininga 2017-01-12 11:41:00 -07:00
parent 4bc5aa80f0
commit 6ef66ec3d6

View File

@ -237,7 +237,6 @@ if sys.platform == "aix4":
elif sys.platform == "aix5": elif sys.platform == "aix5":
extraCompileArgs.append("-DAIX5") extraCompileArgs.append("-DAIX5")
elif sys.platform == "cygwin": elif sys.platform == "cygwin":
extraCompileArgs.append("-mno-cygwin")
extraLinkArgs.append("-Wl,--enable-runtime-pseudo-reloc") extraLinkArgs.append("-Wl,--enable-runtime-pseudo-reloc")
elif sys.platform == "darwin": elif sys.platform == "darwin":
extraLinkArgs.append("-shared-libgcc") extraLinkArgs.append("-shared-libgcc")