Skip to content
Snippets Groups Projects
  1. May 28, 2013
  2. Feb 08, 2013
  3. Feb 07, 2013
  4. Nov 07, 2012
  5. Jan 19, 2012
  6. Jan 17, 2012
  7. Jan 13, 2012
  8. Apr 05, 2011
  9. Oct 14, 2010
  10. Jun 22, 2010
  11. Apr 08, 2010
  12. Dec 10, 2009
  13. Jun 02, 2009
  14. May 17, 2009
  15. May 13, 2009
  16. Apr 28, 2009
  17. Oct 23, 2008
  18. Oct 21, 2008
  19. Sep 12, 2008
  20. Aug 17, 2008
  21. Dec 20, 2006
  22. Apr 28, 2005
  23. Jan 09, 2003
  24. Nov 15, 2002
    • simonmar's avatar
      [project @ 2002-11-15 17:25:54 by simonmar] · 8ee6bed3
      simonmar authored
      oops, I broke overriding of suffix rules when I moved the include of
      suffix.mk into target.mk.  Hence, hack around it here by moving
      nofib's suffix.mk after the include of target.mk.
      8ee6bed3
  25. Nov 07, 2002
  26. May 20, 2002
  27. Mar 15, 2002
    • rje's avatar
      [project @ 2002-03-15 16:07:58 by rje] · 398fa58f
      rje authored
      Add ability for NoFib to be run with various different modes.
      
      The mode is set by changing a variable called "mode".
      
      This allows tests to be run for different lengths of time, depending on what kin
      d of test is wanted.
      
      Current modes are:
      
      <unset> = default mode. Like previous NoFib.
      "slow" = tries to run for around 10-20 seconds on my workstation.
      
      A test is given several modes by giving it the following:
              <test>.stdout -> <test>.<mode>stdout
              <test>.stdin -> <test>.<mode>stdin
      
      Args are set in the makefile as
      
      <mode>_OPTS
      398fa58f
  28. Mar 06, 2002
    • keithw's avatar
      [project @ 2002-03-06 13:32:59 by keithw] · 66f2aa34
      keithw authored
      Add way to ==nofib== banner (it's now `==nofib==' for normal and
      `==nofib_way==' for way `way'.  At the moment nofib-analyse only looks
      for `==nofib==', and so now it won't be misled by, e.g., excessive
      runtimes for the ticky way.
      
      To collect stats from non-standard ways, nofib-analyse will have to be
      modified.
      66f2aa34
  29. Feb 12, 2002
    • simonmar's avatar
      [project @ 2002-02-12 15:17:35 by simonmar] · dbed0795
      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 :-(
      dbed0795
  30. Feb 01, 2002
    • simonmar's avatar
      [project @ 2002-02-01 10:22:48 by simonmar] · e509b330
      simonmar authored
      An ugly hack is now needed in here after my build system changes the
      other day.  Oh dear, I hope I haven't created a monster.  Well, it can
      always be backed out I suppose.
      e509b330
  31. Jan 29, 2002
  32. Jan 28, 2002
Loading