- 13 Oct, 2010 1 commit
-
-
Simon Marlow authored
-
- 25 Jun, 2010 1 commit
-
-
Simon Marlow authored
-
- 29 Jun, 2009 1 commit
-
-
Simon Marlow authored
Set binary mode on Handles appropriately.
-
- 03 Jun, 2008 1 commit
-
-
Ian Lynagh authored
-
- 23 Jan, 2007 1 commit
-
-
Simon Marlow authored
-
- 04 May, 2005 1 commit
-
-
simonmar authored
add x86_64 output
-
- 30 Nov, 2004 1 commit
-
-
simonmar authored
Rename Maybe to avoid class with Haskell 98 module of the same name.
-
- 07 Jun, 2003 1 commit
-
-
ross authored
Add $($(HcFlavour)_HAPPY_OPTS) to HAPPY_OPTS, where HcFlavour defaults to GHC. Packages may GHC_HAPPY_OPTS if they don't want -agc with ghc.
-
- 07 Sep, 2002 1 commit
-
-
panne authored
Remove the clash of runstdtest's flag -t and the one used for this example by renaming the latter to -u.
-
- 04 Jul, 2002 1 commit
-
-
simonmar authored
Fix up this makefile after I renamed Fulsom.hs
-
- 03 Jul, 2002 2 commits
- 02 Mar, 2002 1 commit
-
-
sof authored
HS_SRCS:= --> EXCLUDED_SRCS
-
- 12 Feb, 2002 1 commit
-
-
simonmar authored
Switch over to the new hierarchical libraries --------------------------------------------- This commit reorganises our libraries to use the new hierarchical module namespace extension. The basic story is this: - fptools/libraries contains the new hierarchical libraries. Everything in here is "clean", i.e. most deprecated stuff has been removed. - fptools/libraries/base is the new base package (replacing "std") and contains roughly what was previously in std, lang, and concurrent, minus deprecated stuff. Things that are *not allowed* in libraries/base include: Addr, ForeignObj, ByteArray, MutableByteArray, _casm_, _ccall_, ``'', PrimIO For ByteArrays and MutableByteArrays we use UArray and STUArray/IOUArray respectively now. Modules previously called PrelFoo are now under fptools/libraries/GHC. eg. PrelBase is now GHC.Base. - fptools/libraries/haskell98 provides the Haskell 98 std. libraries (Char, IO, Numeric etc.) as a package. This package is enabled by default. - fptools/libraries/network is a rearranged version of the existing net package (the old package net is still available; see below). - Other packages will migrate to fptools/libraries in due course. NB. you need to checkout fptools/libraries as well as fptools/hslibs now. The nightly build scripts will need to be tweaked. - fptools/hslibs still contains (almost) the same stuff as before. Where libraries have moved into the new hierarchy, the hslibs version contains a "stub" that just re-exports the new version. The idea is that code will gradually migrate from fptools/hslibs into fptools/libraries as it gets cleaned up, and in a version or two we can remove the old packages altogether. - I've taken the opportunity to make some changes to the build system, ripping out the old hslibs Makefile stuff from mk/target.mk; the new package building Makefile code is in mk/package.mk (auto-included from mk/target.mk). The main improvement is that packages now register themselves at make boot time using ghc-pkg, and the monolithic package.conf in ghc/driver is gone. I've updated the standard packages but haven't tested win32, graphics, xlib, object-io, or OpenGL yet. The Makefiles in these packages may need some further tweaks, and they'll need pkg.conf.in files added. - Unfortunately all this rearrangement meant I had to bump the interface-file version and create a bunch of .hi-boot-6 files :-(
-
- 29 Jan, 2002 3 commits
- 01 Oct, 2001 1 commit
-
-
rrt authored
Stop using ANNA_DIR environment variable, which for various sad reasons doesn't work on Windows.
-
- 31 Aug, 2001 1 commit
-
-
simonmar authored
Add an (Ord a) context on an Ix instance which is required now.
-
- 04 Apr, 2001 2 commits
- 22 Mar, 2001 1 commit
-
-
hwloidl authored
-*- outline -*- Time-stamp: <Thu Mar 22 2001 03:50:16 Stardate: [-30]6365.79 hwloidl> This commit covers changes in GHC to get GUM (way=mp) and GUM/GdH (way=md) working. It is a merge of my working version of GUM, based on GHC 4.06, with GHC 4.11. Almost all changes are in the RTS (see below). GUM is reasonably stable, we used the 4.06 version in large-ish programs for recent papers. Couple of things I want to change, but nothing urgent. GUM/GdH has just been merged and needs more testing. Hope to do that in the next weeks. It works in our working build but needs tweaking to run. GranSim doesn't work yet (*sigh*). Most of the code should be in, but needs more debugging. ToDo: I still want to make the following minor modifications before the release - Better wrapper skript for parallel execution [ghc/compiler/main] - Update parallel docu: started on it but it's minimal [ghc/docs/users_guide] - Clean up [nofib/parallel]: it's a real mess right now (*sigh*) - Update visualisation tools (minor things only IIRC) [ghc/utils/parallel] - Add a Klingon-English glossary * RTS: Almost all changes are restricted to ghc/rts/parallel and should not interfere with the rest. I only comment on changes outside the parallel dir: - Several changes in Schedule.c (scheduling loop; createThreads etc); should only affect parallel code - Added ghc/rts/hooks/ShutdownEachPEHook.c - ghc/rts/Linker.[ch]: GUM doesn't know about Stable Names (ifdefs)!! - StgMiscClosures.h: END_TSO_QUEUE etc now defined here (from StgMiscClosures.hc) END_ECAF_LIST was missing a leading stg_ - SchedAPI.h: taskStart now defined in here; it's only a wrapper around scheduleThread now, but might use some init, shutdown later - RtsAPI.h: I have nuked the def of rts_evalNothing * Compiler: - ghc/compiler/main/DriverState.hs added PVM-ish flags to the parallel way added new ways for parallel ticky profiling and distributed exec - ghc/compiler/main/DriverPipeline.hs added a fct run_phase_MoveBinary which is called with way=mp after linking; it moves the bin file into a PVM dir and produces a wrapper script for parallel execution maybe cleaner to add a MoveBinary phase in DriverPhases.hs but this way it's less intrusive and MoveBinary makes probably only sense for mp anyway * Nofib: - nofib/spectral/Makefile, nofib/real/Makefile, ghc/tests/programs/Makefile: modified to skip some tests if HWL_NOFIB_HACK is set; only tmp to record which test prgs cause problems in my working build right now
-
- 14 Mar, 2001 1 commit
-
-
simonmar authored
add -package lang
-
- 12 Mar, 2001 1 commit
-
-
sewardj authored
Fix imports.
-
- 19 Jan, 2001 3 commits
- 18 Jan, 2001 2 commits
- 10 Jul, 2000 1 commit
-
-
rrt authored
Removed carriage returns (\r) from source files. Please don't check in such things; they can cause problems on Cygwin (funnily enough). I'm looking into how to avoid commiting carriage returns when working under Windows.
-
- 29 Jun, 2000 5 commits
-
-
sewardj authored
Add cacheprof.
-
sewardj authored
-fglasgow-exts is not needed for cacheprof.
-
sewardj authored
Add the x86 annotator part of cacheprof as a new nofib test.
-
sewardj authored
Update the .stdout, which appears to have zero length in the repository. Give it its own .stdin, rather than relying on ../../spectral/hartel/listcompr/listcompr.stdout, so that latter can change without breaking this test.
-
sewardj authored
Fix the longstanding "Prelude.chr: bad argument" problem. This program attempts to convert Ints > 255 to Char. It can only ever have worked with old GHCs which did the conversion by anding with 0x000000FF without a prior range check. Newer GHCs, at least as far back as 3.02, correctly flag a run-time error for such conversions. The output Ints are now explicitly anded with 255 before conversion.
-
- 30 Mar, 2000 2 commits
- 24 Jan, 2000 2 commits
- 08 Dec, 1999 1 commit
-
-
simonmar authored
-syslib updates for new libraries.
-