diff options
author | Thomas Miedema <thomasmiedema@gmail.com> | 2015-08-15 11:36:44 +0200 |
---|---|---|
committer | Thomas Miedema <thomasmiedema@gmail.com> | 2015-08-20 12:35:52 +0200 |
commit | b6be81b841e34ca45b3549c4c79e886a8761e59a (patch) | |
tree | d90ff31ecf839f756268a715abe97bf5d6797e17 /mk/project.mk.in | |
parent | d97e60f5dfab102127b6fa4a5277084815136fc7 (diff) | |
download | haskell-b6be81b841e34ca45b3549c4c79e886a8761e59a.tar.gz |
Build system: delete half-baked Cygwin support
We only support building GHC on mys2 nowadays, see
https://ghc.haskell.org/trac/ghc/wiki/Building/Preparation/Windows.
This (partially) reverts various commits from a few years ago, among which:
* 5775d5142da227d65fb86994d363eb16841ee642
"Add OSTYPE build-system variable, and use it"
* 3fb8c431824aa2f3bd979e35d1a283546fcfbe74
"Fix building libgmp on cygwin"
* cdbb4720c424500adb57cbbef69721d0b039fa46
"Fix cmd invocation by libffi cuild system on Windows 7 cygwin"
* e8121501ee3549a35e954726ccfd871ac9d51f83
"Fix dblatex and xml* tool detection on Windows"
Reviewed by: austin, Phyx
Differential Revision: https://phabricator.haskell.org/D1155
Diffstat (limited to 'mk/project.mk.in')
-rw-r--r-- | mk/project.mk.in | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/mk/project.mk.in b/mk/project.mk.in index a5fe210c12..9e45ae919b 100644 --- a/mk/project.mk.in +++ b/mk/project.mk.in @@ -135,24 +135,19 @@ exeext3=@exeext_target@ soext=@soext_target@ # Windows_Host=YES if on a Windows platform -ifneq "$(findstring $(HostOS_CPP), mingw32 cygwin32)" "" +ifneq "$(findstring $(HostOS_CPP), mingw32)" "" Windows_Host=YES else Windows_Host=NO endif # Windows_Target=YES if we are targetting a Windows platform -ifneq "$(findstring $(TargetOS_CPP), mingw32 cygwin32)" "" +ifneq "$(findstring $(TargetOS_CPP), mingw32)" "" Windows_Target=YES else Windows_Target=NO endif -# Tell the build system what the host operating system is -# This distinguishes "msys" and "cygwin", which are not -# not distinguished by HOST_OS_CPP -OSTYPE=@OSTYPE@ - # In case of Solaris OS, does it provide broken shared libs # linker or not? SOLARIS_BROKEN_SHLD=@SOLARIS_BROKEN_SHLD@ |