- Oct 16, 1997
-
-
Simon Marlow authored
make the RAWCPP test a little more sensible.
-
Simon Marlow authored
Test for CC and GCC before finding CPP, since GNUCPP depends on finding GCC to do the right thing.
-
- Oct 15, 1997
-
-
Simon Marlow authored
Add description of how to set heap/stack sizes by default using the defaultHook hook thingy.
-
Simon Marlow authored
release notes for upcoming releases
-
Simon Marlow authored
new test for type-synonym-arity bug (fixed in TcMonoType.lhs v1.19)
-
Simon Marlow authored
Simon's fix for type synonym arities. The arity of a synonym must by less than or eqaul to the number of arguments supplied (test typecheck/should_compile/tc093.hs).
-
Simon Marlow authored
reverse the sense of -fwarn-incomplete-patterns and -fwarn-overlapped-patterns, these are now added automatically by the driver if necessary.
-
Simon Marlow authored
add -Wnot, -W and -Wall flags. remove stuff to do with -user-prelude: it's not used anywhere, and not documented.
-
Simon Marlow authored
new pictures
-
Simon Marlow authored
latest round of changes.
-
Simon Marlow authored
cut-and-paste-o: hscpp -> mkdependHS
-
- Oct 14, 1997
-
-
Simon Marlow authored
Remove all explicit references to version numbers, except for one in the title. Fix several out-of-date or just bogus instructions. Add comment about @FPTOOLS_TOP_ABS@ probably being wrong if you're using an automounter.
-
Simon Marlow authored
prepend SED and RAWCPP to all scripts, not just PACKAGE_LIB_SCRIPTS.
-
Simon Marlow authored
don't substitute for RAWCPP if we're bin-disting
-
Simon Marlow authored
add test for locally-overloaded constructor arguments
-
Simon Marlow authored
Fix bug in typechecking locally-overloaded function arguments.
-
- Oct 13, 1997
-
-
Simon Marlow authored
Changes to unbox the state in the ST and IO monads. ST now has type newtype ST s a = ST (State# s -> STret s a) data STret s a = STret (State# s) a IO now has type newtype IO a = IO (State# RealWorld -> IOResult a) data IOResult a = IOok (State# RealWorld) a | IOfail (State# RealWorld) IOError So ST should be slightly more efficient, and IO should be nearly as efficient as ST.
-
Simon Marlow authored
this should have been committed before 2.08.
-
Simon Marlow authored
replace a few ';' with '&&' so that failures in for-loops bomb out properly.
-
Simon Marlow authored
do the symlink thing when installing, not in the local tree.
-
Simon Marlow authored
Link ghc to ghc-$(version), not the other way around. This means that old versions won't be spammed when a new one is installed. To go in 3.00
-
Simon Marlow authored
Remove generated parsers from ghc/compiler/, since Happy is now in the tree these can always be rebuilt on site.
-
- Oct 09, 1997
-
-
Simon Marlow authored
Fix the 'set -e' business for subdirectories. Too late for 2.08 unfortunately.
-
Simon Marlow authored
back out part of last commit, it didn't take into account executable files.
-
Simon Marlow authored
fix dangling backquote in last commit.
-
Simon Marlow authored
set $(exeext) to empty, since it's currently set to @exeext@ and there's nothing in the configure script to pass in its real value. I'll move the tag on this file for 2.08, it can be fixed properly later.
-
sof authored
Added aclocal.m4 to binary distrib; ensure that group write bit is on for all toplevel binary distrib files
-
sof authored
Avoid adding defn. of RAWCPP and SED when making binary distribs (site-specific
-
sof authored
Added feature tests for sed and cpp
-
sof authored
Upped version number; added SED and RAWCPP for lib_scripts
-
Simon Marlow authored
urk, extra parenthesis crept in.
-
sof authored
Added SET_RETADDR macro for MIPSes
-
sof authored
Added SET_RETADDR macro for MIPSes
-
Simon Marlow authored
avoid another divide by zero.
-
Simon Marlow authored
Avoid divide by zero if the measured elapsed time is 0.00 seconds.
-
- Oct 08, 1997
-
-
sof authored
Use __PARALLEL_HASKELL__ rather than PAR when -cpp'ing Haskell source
-
sof authored
ForeignObj functionality is not supported in __PARALLEL_HASKELL__
-
sof authored
Use __PARALLEL_HASKELL__ rather than PAR when -cpp'ing Haskell source
-
Simon Marlow authored
Add -fno-implicit-prelude. This does nothing except tell the reader that things like () and -> shouldn't be resolved to Prelude.() and Prelude.->.
-
Simon Marlow authored
Fix for special prelude names ((),[],-> etc) when compiling with -fno-implicit-prelude.
-