summaryrefslogtreecommitdiff
path: root/driver/ghci
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2008-07-09 12:55:54 +0000
committerIan Lynagh <igloo@earth.li>2008-07-09 12:55:54 +0000
commitccc9a4a5c7131e5bece84c0983d7d3f8d6480967 (patch)
tree31ee87e710f90dbbf57ae3e6a073cb15bfd83cc3 /driver/ghci
parent3897d02a5c0deb5c3bfda3299a28bbef525eba84 (diff)
downloadhaskell-ccc9a4a5c7131e5bece84c0983d7d3f8d6480967.tar.gz
Remove all references to -mno-cygwin
We shouldn't need it, as we don't call cygwin's gcc, and it was causing problems with the nightly builders passing it to GHC.
Diffstat (limited to 'driver/ghci')
-rw-r--r--driver/ghci/ghci.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/driver/ghci/ghci.c b/driver/ghci/ghci.c
index f21a12a4ba..cad0ae5c51 100644
--- a/driver/ghci/ghci.c
+++ b/driver/ghci/ghci.c
@@ -18,7 +18,7 @@
* To compile:
*
* MSVC: cl /o ghci.exe /c ghciwrap.c
- * mingw: gcc -mno-cygwin -o ghci.exe ghciwrap.c
+ * mingw: gcc -o ghci.exe ghciwrap.c
*
* If you want to associate your own icon with the wrapper,
* here's how to do it:
@@ -35,7 +35,7 @@
* * Add the resulting .res file to the link line of the wrapper:
*
* MSVC: cl /o ghci.exe /c ghciwrap.c ghci.res
- * mingw: gcc -mno-cygwin -o ghci.exe ghciwrap.c ghci.res
+ * mingw: gcc -o ghci.exe ghciwrap.c ghci.res
*
*/