- Sep 05, 2000
-
-
Simon Marlow authored
Use newtype Ptr instead of just Addr, test newtypes in foreign decls.
-
Simon Marlow authored
No need to set TMPDIR in BUILD_LIB now. Perhaps this was a workaround for the previous bug.
-
Simon Marlow authored
- add -fno-warn-incomplete-patterns - rename TMPDIR to DEFAULT_TMPDIR - check TMPDIR environment variable (apprently missing before) - add a bunch of anti-flags for profiling: -no-auto-all and friends.
-
Simon Marlow authored
Rename the make variable TMPDIR to DEFAULT_TMPDIR. This fixes the problem that saying 'TMPDIR=/foo make' in an fptools tree didn't work, because GNU make is in the habit of overriding an environment variable with the value of the corresponding make variable in a sub-process.
-
Simon Marlow authored
Just include ghc/docs/set in a binary distribution, not the build system docs or the FFI spec.
-
Simon Marlow authored
remove a lot of unused gumph from this file
-
Simon Marlow authored
remove last use of REALLY_HASKELL_1_3
-
Simon Marlow authored
Use std monadic operators instead of `thenStrictlyST` and friends.
-
Simon Marlow authored
comment update
-
- Sep 04, 2000
-
-
Reuben Thomas authored
Removed spurious definition of GHC_INPLACE
-
Simon Marlow authored
Test for freeing StablePtrs.
-
Simon Marlow authored
- debugging: print weights as unsigned - clean up getStablePtr a bit - correct a comment
-
Simon Marlow authored
Fix a bug in freeStablePtr, the weight being subtracted from the entry in the stable pointer table was wrong.
-
Simon Marlow authored
Fix a couple of bugs in the StablePtr weigthed reference counting.
-
Simon Marlow authored
turn off -Wpointer-arith, it generates some warnings in the headers on RH6.2
-
Simon Marlow authored
Convert one of the alternatives in an algebraic switch into the default, if we don't already have a default. This generates better code in particular for inline comparison primops. Noticed by: Qrczak
-
Simon Marlow authored
Use mkAbsCStmts rather than AbsCStmts directly.
-
Simon Marlow authored
test for bogus parse caused by Happy bug
-
- Sep 01, 2000
-
-
Marcin 'Qrczak' Kowalczyk authored
ForeignObjs were incorrectly passed to foreign functions by the NCG. Fixed.
-
- Aug 31, 2000
-
-
Simon Peyton Jones authored
Make freeze and thaw top-level
-
Simon Peyton Jones authored
Put the max in a better place
-
Simon Peyton Jones authored
Add comment
-
Simon Peyton Jones authored
Document -ddump-minimal-imports
-
- Aug 30, 2000
-
-
Simon Peyton Jones authored
Add test for selectors in data/newtype with contexts
-
Kevin Glynn authored
wrong2 wrongly referred to as wrong1 - righted
-
- Aug 29, 2000
-
-
Marcin 'Qrczak' Kowalczyk authored
Don't use Int# values larger than 2^31.
-
Simon Peyton Jones authored
Fix a bug reported by Jose Emilio Labra Gayo newtype Foo a => T = MkT (out :: a) The selector 'out' was being given an incorrect RHS. (Core Lint spotted it.)
-
Simon Peyton Jones authored
Move prim_ZONE and prim_GMTOFF into Hugs-only code
-
Simon Peyton Jones authored
Remove redundant imports and dead code
-
Simon Peyton Jones authored
Remove redundant imports
-
Simon Peyton Jones authored
Add filterFB comment
-
Marcin 'Qrczak' Kowalczyk authored
Don't use a typedef called int64 in RtsAPI. It conflicts with e.g. OCaml's headers. It should be cleaned better...
-
- Aug 25, 2000
-
-
Simon Marlow authored
Fix for copying html documentation into a binary dist.
-
Simon Marlow authored
Add a test (also benchmark) for threadDelay, Random, and QSemN. This test starts a large number of threads which all wait for a random delay. The semaphore is used to wait for them all to finish before exiting.
-
Simon Marlow authored
Change the way threadDelay# is implemented. We now use a list of sleeping threads sorted in increasing order by the time at which they will wake up. This avoids us having to traverse the entire queue on each context switch.
-
Reuben Thomas authored
Sorry Sigbjørn, but DocBook won't accept ø in <Author> elements. Seems to work everywhere else...
-
Marcin 'Qrczak' Kowalczyk authored
Don't strip libgmp.a. (But perhaps --strip-unneeded or something would be harmless.) PS. The configure script looks for __gmpz_fdiv_qr, but gmp that I have installed uses the name mpz_fdiv_qr and is thus not being found. (Also it is dynamically linked, where ghc's gmp is only statically linked.) I guess that configure should check for either name.
-
- Aug 24, 2000
-
-
Reuben Thomas authored
Added more authors.
-
Marcin 'Qrczak' Kowalczyk authored
Let foreign import dynamic accept a newtyped Addr too.
-
Simon Marlow authored
Add two tests for signatures without definitions.
-