ghc-hetmet.git
14 years agoPass CFLAGS and LDFLAGS to configure scripts
Ian Lynagh [Mon, 15 Jun 2009 20:16:04 +0000 (20:16 +0000)]
Pass CFLAGS and LDFLAGS to configure scripts

14 years ago.cmm rules need to depend on $$($1_$2_HC_DEP), not $$($1_$2_HC)
Ian Lynagh [Mon, 15 Jun 2009 13:33:57 +0000 (13:33 +0000)]
.cmm rules need to depend on $$($1_$2_HC_DEP), not $$($1_$2_HC)

14 years agoMove gmp into libraries/integer-gmp
Ian Lynagh [Sun, 14 Jun 2009 18:31:50 +0000 (18:31 +0000)]
Move gmp into libraries/integer-gmp

14 years agoStop building the rts against gmp
Duncan Coutts [Sat, 13 Jun 2009 19:19:56 +0000 (19:19 +0000)]
Stop building the rts against gmp
Nothing from gmp is used in the rts anymore.

14 years agoRemove the implementation of gmp primops from the rts
Duncan Coutts [Sat, 13 Jun 2009 19:18:51 +0000 (19:18 +0000)]
Remove the implementation of gmp primops from the rts

14 years agoStop setting the gmp memory functions in the rts
Duncan Coutts [Sat, 13 Jun 2009 16:58:41 +0000 (16:58 +0000)]
Stop setting the gmp memory functions in the rts
and remove the implementations of stg(Alloc|Realloc|Dealloc)ForGMP

14 years agoRemove the gmp/Integer primops from the compiler
Duncan Coutts [Sat, 13 Jun 2009 14:24:10 +0000 (14:24 +0000)]
Remove the gmp/Integer primops from the compiler
The implementations are still in the rts.

14 years agoPut the CMM objects in the GHCi library too
Ian Lynagh [Thu, 11 Jun 2009 16:20:38 +0000 (16:20 +0000)]
Put the CMM objects in the GHCi library too

14 years agoAdd rules for building .cmm files in libraries
Ian Lynagh [Thu, 11 Jun 2009 13:40:57 +0000 (13:40 +0000)]
Add rules for building .cmm files in libraries

14 years agoExports a few rts things we need for cmm code in external packages
Duncan Coutts [Sat, 13 Jun 2009 17:06:22 +0000 (17:06 +0000)]
Exports a few rts things we need for cmm code in external packages
In particular we need alloc_blocks and alloc_blocks_lim for MAYBE_GC.
The gmp cmm primops also use stg_ARR_WORDS_info.

14 years agoAdd and export rts_unsafeGetMyCapability from rts
Duncan Coutts [Fri, 12 Jun 2009 11:41:56 +0000 (11:41 +0000)]
Add and export rts_unsafeGetMyCapability from rts
We need this, or something equivalent, to be able to implement
stgAllocForGMP outside of the rts. That's because we want to use
allocateLocal which allocates from the given capability without
having to take any locks. In the gmp primops we're basically in
an unsafe foreign call, that is a context where we hold a current
capability. So it's safe for us to use allocateLocal. We just
need a way to get the current capability. The method to get the
current capability varies depends on whether we're using the
threaded rts or not. When stgAllocForGMP is built inside the rts
that's ok because we can do it conditionally on THREADED_RTS.
Outside the rts we need a single api we can call without knowing
if we're talking to a threaded rts or not, hence this addition.

14 years agoRequire GHCForeignImportPrim for "foreign import prim"
Duncan Coutts [Thu, 11 Jun 2009 20:26:47 +0000 (20:26 +0000)]
Require GHCForeignImportPrim for "foreign import prim"
In practise currently you also need UnliftedFFITypes, however
the restriction to just unlifted types may be lifted in future.

14 years agoAdd missing StgPrimCallOp case in repCCallConv
Duncan Coutts [Thu, 11 Jun 2009 16:59:05 +0000 (16:59 +0000)]
Add missing StgPrimCallOp case in repCCallConv
We don't handle "foreign import prim" in TH stuff.

14 years agoAdd missing StgPrimCallOp case to isSimpleOp
Ian Lynagh [Thu, 11 Jun 2009 12:27:27 +0000 (12:27 +0000)]
Add missing StgPrimCallOp case to isSimpleOp

14 years agoReverse the safe/unsafe requirement on foreign import prim
Duncan Coutts [Thu, 11 Jun 2009 11:52:43 +0000 (11:52 +0000)]
Reverse the safe/unsafe requirement on foreign import prim
The safe/unsafe annotation doesn't currently mean anything for prim.
Just in case we decide it means something later it's better to stick
to using one or the other consistently. We decided that using safe
is the better one to require (and it's also the default).

14 years agoAdd PrimCall to the STG layer and update Core -> STG translation
Duncan Coutts [Tue, 9 Jun 2009 15:11:55 +0000 (15:11 +0000)]
Add PrimCall to the STG layer and update Core -> STG translation
It adds a third case to StgOp which already hold StgPrimOp and StgFCallOp.
The code generation for the new StgPrimCallOp case is almost exactly the
same as for out-of-line primops. They now share the tailCallPrim function.
In the Core -> STG translation we map foreign calls using the "prim"
calling convention to the StgPrimCallOp case. This is because in Core we
represent prim calls using the ForeignCall stuff. At the STG level however
the prim calls are really much more like primops than foreign calls.

14 years agoDesugaring for "foreign import prim"
Duncan Coutts [Tue, 9 Jun 2009 10:59:45 +0000 (10:59 +0000)]
Desugaring for "foreign import prim"
Unlike normal foreign imports which desugar into a separate worker and
wrapper, we use just a single wrapper decleration. The representation
in Core of the call is currently as a foreign call. This means the
args are all treated as fully strict. This is ok at the moment because
we restrict the types for foreign import prim to be of unboxed types,
however in future we may want to make prim imports be the normal cmm
calling convention for Haskell functions, in which case we would not
be able to assume all args are strict. At that point it may make more
sense to represent cmm/prim calls distinct from foreign calls, and
more like the we the existing PrimOp calls are handled.

14 years agoTypechecking for "foreign import prim"
Duncan Coutts [Tue, 9 Jun 2009 10:48:26 +0000 (10:48 +0000)]
Typechecking for "foreign import prim"
The main restriction is that all args and results must be unboxed types.
In particular we allow unboxed tuple results (which is a primary
motivation for the whole feature). The normal rules apply about
"void rep" result types like State#. We only allow "prim" calling
convention for import, not export. The other forms of import, "dynamic",
"wrapper" and data label are banned as a conseqence of checking that the
imported name is a valid C string. We currently require prim imports to
be marked unsafe, though this is essentially arbitrary as the safety
information is unused.

14 years agoLexing and parsing for "foreign import prim"
Duncan Coutts [Tue, 9 Jun 2009 10:45:36 +0000 (10:45 +0000)]
Lexing and parsing for "foreign import prim"
We only allow simple function label imports, not the normal complicated
business with "wrapper" "dynamic" or data label "&var" imports.

14 years agoAdd new FFI calling convention "prim"
Duncan Coutts [Tue, 9 Jun 2009 10:44:03 +0000 (10:44 +0000)]
Add new FFI calling convention "prim"
First in a series of patches to add the feature.
This patch just adds PrimCallConv to the CCallConv type.

14 years agoThe IO type has moved to GHC.Types in ghc-prim
Ian Lynagh [Sat, 20 Jun 2009 15:51:54 +0000 (15:51 +0000)]
The IO type has moved to GHC.Types in ghc-prim

14 years agoFix the way in the +RTS --info output
Ian Lynagh [Sat, 20 Jun 2009 14:26:00 +0000 (14:26 +0000)]
Fix the way in the +RTS --info output

14 years agoSet DELETE_ON_ERROR in ghc.mk
Ian Lynagh [Wed, 17 Jun 2009 12:18:06 +0000 (12:18 +0000)]
Set DELETE_ON_ERROR in ghc.mk

14 years agoFix the ghci wrapper
Ian Lynagh [Tue, 16 Jun 2009 18:25:01 +0000 (18:25 +0000)]
Fix the ghci wrapper
The ${1+"$@"} was being evaluated by make, rather than being escaped.

14 years agoFix #3132: a case of bogus code generation
Simon Marlow [Thu, 18 Jun 2009 09:07:18 +0000 (09:07 +0000)]
Fix #3132: a case of bogus code generation

14 years agoFix #3279, #3288: fix crash encountered when calling unblock inside unsafePerformIO
Simon Marlow [Tue, 16 Jun 2009 15:24:55 +0000 (15:24 +0000)]
Fix #3279, #3288: fix crash encountered when calling unblock inside unsafePerformIO
See comments for details

14 years agodrop packedstring; it is no longer required by template-haskell
Simon Marlow [Mon, 18 May 2009 12:09:57 +0000 (12:09 +0000)]
drop packedstring; it is no longer required by template-haskell

14 years agosuggest "cd <dir>; make help"
Simon Marlow [Tue, 16 Jun 2009 08:57:08 +0000 (08:57 +0000)]
suggest "cd <dir>; make help"

14 years agoAdd support for 'make help' in subdirectories
Simon Marlow [Tue, 16 Jun 2009 08:53:41 +0000 (08:53 +0000)]
Add support for 'make help' in subdirectories
Including help for directory-specific targets, such as 'make 1' in ghc

14 years agomention 'make {html,ps,pdf}'
Simon Marlow [Tue, 16 Jun 2009 08:53:02 +0000 (08:53 +0000)]
mention 'make {html,ps,pdf}'

14 years agoeliminate "warning: overriding commnds..." from make when we're cleaning
Simon Marlow [Tue, 16 Jun 2009 08:44:51 +0000 (08:44 +0000)]
eliminate "warning: overriding commnds..." from make when we're cleaning

14 years agoAdd 'make help', displaying a list of useful make targets
Simon Marlow [Mon, 15 Jun 2009 14:00:08 +0000 (14:00 +0000)]
Add 'make help', displaying a list of useful make targets

14 years agoAdd 'make fast' which omits deps (for a library) and some of the phases
Simon Marlow [Mon, 15 Jun 2009 13:58:01 +0000 (13:58 +0000)]
Add 'make fast' which omits deps (for a library) and some of the phases

14 years agoadd the missing final row of dashes in the success message
Simon Marlow [Mon, 15 Jun 2009 13:57:16 +0000 (13:57 +0000)]
add the missing final row of dashes in the success message

14 years ago'make 1' in libraries builds just the stage1 libs
Simon Marlow [Mon, 15 Jun 2009 13:56:51 +0000 (13:56 +0000)]
'make 1' in libraries builds just the stage1 libs
i.e. not dph, and hence not stage2

14 years agoadd 'make stage1_libs', to make just the stage 1 libs
Simon Marlow [Mon, 15 Jun 2009 13:55:32 +0000 (13:55 +0000)]
add 'make stage1_libs', to make just the stage 1 libs
i.e. not dph, and hence not the stage 2 compiler.

14 years agocopyFileWithHeader: use binary Handles
Simon Marlow [Mon, 15 Jun 2009 11:05:45 +0000 (11:05 +0000)]
copyFileWithHeader: use binary Handles
Fixes failure when Haddocking Data.Monoid in libraries/base

14 years agoInclude runghc and unlit in bindists
Ian Lynagh [Sat, 13 Jun 2009 16:17:07 +0000 (16:17 +0000)]
Include runghc and unlit in bindists

14 years agoImprove bindist testing
Ian Lynagh [Sat, 13 Jun 2009 16:15:16 +0000 (16:15 +0000)]
Improve bindist testing
We now also test runghc and unlit

14 years agoRemove the haskeline-specific hacks from ghc-cabal
Ian Lynagh [Fri, 12 Jun 2009 23:58:23 +0000 (23:58 +0000)]
Remove the haskeline-specific hacks from ghc-cabal
Now that base does -liconv when it is necessary, it is no longer
necessary for haskeline to do it as well, as haskeline depends on base.
Thus we don't need the haskeline-specific hacks in ghc-cabal any more.

14 years agoRemove library buildinfo files when cleaning
Ian Lynagh [Fri, 12 Jun 2009 23:38:18 +0000 (23:38 +0000)]
Remove library buildinfo files when cleaning

14 years agoUpdate symbol names; fixes the build on OSX
Ian Lynagh [Fri, 12 Jun 2009 19:40:29 +0000 (19:40 +0000)]
Update symbol names; fixes the build on OSX

14 years agodon't check for stack underflow if we just had an overflow
Simon Marlow [Wed, 10 Jun 2009 10:47:48 +0000 (10:47 +0000)]
don't check for stack underflow if we just had an overflow

14 years agopprExpr: don't add extra parens around [a..b] in an argument position
Simon Marlow [Mon, 8 Jun 2009 08:27:05 +0000 (08:27 +0000)]
pprExpr: don't add extra parens around [a..b] in an argument position
test is tcfail205

14 years agoChanges for the new IO library, mainly base-package modules moving around
Simon Marlow [Fri, 29 May 2009 13:18:22 +0000 (13:18 +0000)]
Changes for the new IO library, mainly base-package modules moving around

14 years agoFix the compiler-hs-dependency's
Ian Lynagh [Fri, 12 Jun 2009 10:48:27 +0000 (10:48 +0000)]
Fix the compiler-hs-dependency's
We needed some more $s to delay evaluation until the values are
available, and the calls needed to be later in the ghc.mk so that
compiler_stage2_WAYS etc are defined.

14 years agoDoc building is now controlled by sensible variables
Ian Lynagh [Thu, 11 Jun 2009 16:28:58 +0000 (16:28 +0000)]
Doc building is now controlled by sensible variables

14 years agoHC bootstrapping now works
Ian Lynagh [Thu, 11 Jun 2009 16:27:56 +0000 (16:27 +0000)]
HC bootstrapping now works

14 years agobindists are now done
Ian Lynagh [Thu, 11 Jun 2009 16:27:30 +0000 (16:27 +0000)]
bindists are now done

14 years agoAdd some $s to rules/build-package.mk for consistency
Ian Lynagh [Thu, 11 Jun 2009 13:01:44 +0000 (13:01 +0000)]
Add some $s to rules/build-package.mk for consistency

14 years agoDeprecate the threadsafe kind of foreign import
Duncan Coutts [Thu, 11 Jun 2009 12:34:41 +0000 (12:34 +0000)]
Deprecate the threadsafe kind of foreign import

14 years agoRemove __encodeDouble and __encodeFloat from the rts
Duncan Coutts [Thu, 11 Jun 2009 15:48:52 +0000 (15:48 +0000)]
Remove __encodeDouble and __encodeFloat from the rts
They now live in the integer-gmp package.

14 years agoAdd recently added lib dirs to the darcs boring file
Duncan Coutts [Thu, 11 Jun 2009 11:28:24 +0000 (11:28 +0000)]
Add recently added lib dirs to the darcs boring file

14 years agoFix the flag used to force linking when we are making a shared library
Duncan Coutts [Thu, 4 Jun 2009 12:16:52 +0000 (12:16 +0000)]
Fix the flag used to force linking when we are making a shared library
This is a correction to the patch:
* When linking a shared library with --make, always do the link step
which used the wrong flag in making the decision. It used -dynamic
whereas the correct flag is -shared.

14 years agoCheck we're not using stdcall in foreign export on unsupported platforms
Duncan Coutts [Mon, 8 Jun 2009 14:55:09 +0000 (14:55 +0000)]
Check we're not using stdcall in foreign export on unsupported platforms
It's already checked for foreign import, but was missing for export.

14 years agoRemove the various mp registers from the StgRegTable
Duncan Coutts [Wed, 10 Jun 2009 17:36:09 +0000 (17:36 +0000)]
Remove the various mp registers from the StgRegTable
No longer need them as temp vars in the cmm primop implementations.

14 years agoConvert the gmp cmm primops to use local stack allocation
Duncan Coutts [Wed, 10 Jun 2009 17:30:26 +0000 (17:30 +0000)]
Convert the gmp cmm primops to use local stack allocation
Using global temp vars is really ugly and in the threaded case it
needs slots in the StgRegTable. It'd also be pretty silly once we
move the cmm primops out of the rts, into the integer-gmp package.

14 years agoMake killThread# cmm primop use local stack allocation
Duncan Coutts [Wed, 10 Jun 2009 17:22:15 +0000 (17:22 +0000)]
Make killThread# cmm primop use local stack allocation
It using the mp_tmp_w register/global as a convenient temporary
variable. This is naughty because those vars are supposed to be
for gmp. Also, we want to remove the gmp temp vars so we must
now use a local stack slot instead.

14 years agoMake Windows bindists and installers work in the new build system
Ian Lynagh [Wed, 10 Jun 2009 18:18:25 +0000 (18:18 +0000)]
Make Windows bindists and installers work in the new build system

14 years agoChange GHC_OPTIONS to OPTIONS_GHC
Ian Lynagh [Wed, 10 Jun 2009 12:46:11 +0000 (12:46 +0000)]
Change GHC_OPTIONS to OPTIONS_GHC

14 years agoDefine _BSD_SOURCE in Stg.h
Ian Lynagh [Tue, 9 Jun 2009 12:17:05 +0000 (12:17 +0000)]
Define _BSD_SOURCE in Stg.h
This means that, on Linux, we get functions like gamma defined when we
#include math.h

14 years agoPut "%expect 0" directives in the .y files
Ian Lynagh [Mon, 8 Jun 2009 20:39:35 +0000 (20:39 +0000)]
Put "%expect 0" directives in the .y files
With the exception of GHC's main Parser.y(.pp), which has 2
reduce/reduce conflicts

14 years agoUpdate to libffi 3.0.8; fixes trac #3119
Ian Lynagh [Fri, 5 Jun 2009 17:17:04 +0000 (17:17 +0000)]
Update to libffi 3.0.8; fixes trac #3119

14 years agoFix the libffi Makefile
Ian Lynagh [Fri, 5 Jun 2009 16:05:38 +0000 (16:05 +0000)]
Fix the libffi Makefile

14 years agoAdd a README saying where libffi tarballs come from
Ian Lynagh [Fri, 5 Jun 2009 16:04:31 +0000 (16:04 +0000)]
Add a README saying where libffi tarballs come from

14 years agoghc-pkg now takes a verbosity argument
Ian Lynagh [Fri, 5 Jun 2009 15:15:44 +0000 (15:15 +0000)]
ghc-pkg now takes a verbosity argument

14 years agoFollow Cabal changes
Ian Lynagh [Fri, 5 Jun 2009 13:13:24 +0000 (13:13 +0000)]
Follow Cabal changes

14 years agoUpdate the docs on how you bind unlifted types in let/where clauses
Ian Lynagh [Fri, 5 Jun 2009 12:29:29 +0000 (12:29 +0000)]
Update the docs on how you bind unlifted types in let/where clauses

14 years agoDocument -fwarn-lazy-unlifted-bindings
Ian Lynagh [Fri, 5 Jun 2009 12:23:48 +0000 (12:23 +0000)]
Document -fwarn-lazy-unlifted-bindings

14 years agoFix typo
Ian Lynagh [Fri, 5 Jun 2009 12:20:48 +0000 (12:20 +0000)]
Fix typo

14 years agoMention that generalised list comprehensions are enabled with -XTransformListComp
simonpj@microsoft.com [Fri, 5 Jun 2009 14:00:09 +0000 (14:00 +0000)]
Mention that generalised list comprehensions are enabled with -XTransformListComp

14 years agoMake a proper Opt_WarnLazyUnliftedBindings warning, with a flag etc
Ian Lynagh [Fri, 5 Jun 2009 11:43:16 +0000 (11:43 +0000)]
Make a proper Opt_WarnLazyUnliftedBindings warning, with a flag etc

14 years agoFix ghc-cabal, so that GHC.Prim gets registered when we install
Ian Lynagh [Thu, 4 Jun 2009 12:45:01 +0000 (12:45 +0000)]
Fix ghc-cabal, so that GHC.Prim gets registered when we install

14 years agofix a warning
Simon Marlow [Thu, 4 Jun 2009 09:35:39 +0000 (09:35 +0000)]
fix a warning

14 years agoLock the StablePtr table during GC
Simon Marlow [Thu, 4 Jun 2009 09:05:53 +0000 (09:05 +0000)]
Lock the StablePtr table during GC
Allows hs_free_fun_ptr() to be called by a separate thread

14 years agofix $(TOP)
Simon Marlow [Thu, 4 Jun 2009 08:48:24 +0000 (08:48 +0000)]
fix $(TOP)

14 years agoremove a prototype that shouldn't be here
Simon Marlow [Thu, 4 Jun 2009 08:47:49 +0000 (08:47 +0000)]
remove a prototype that shouldn't be here

14 years agoMerge the TODO lists in ghc.mk
Ian Lynagh [Wed, 3 Jun 2009 12:12:09 +0000 (12:12 +0000)]
Merge the TODO lists in ghc.mk

14 years agoTighten up the DocBook XSL stylesheet test
Simon Marlow [Wed, 3 Jun 2009 10:12:44 +0000 (10:12 +0000)]
Tighten up the DocBook XSL stylesheet test
It wasn't failing even when the DTD was not found.

14 years agofix logic for BUID_DOCBOOK_HTML
Simon Marlow [Wed, 3 Jun 2009 09:23:13 +0000 (09:23 +0000)]
fix logic for BUID_DOCBOOK_HTML

14 years agoAllow RULES for seq, and exploit them
simonpj@microsoft.com [Wed, 3 Jun 2009 09:29:56 +0000 (09:29 +0000)]
Allow RULES for seq, and exploit them

Roman found situations where he had
      case (f n) of _ -> e
where he knew that f (which was strict in n) would terminate if n did.
Notice that the result of (f n) is discarded. So it makes sense to
transform to
      case n of _ -> e

Rather than attempt some general analysis to support this, I've added
enough support that you can do this using a rewrite rule:

  RULE "f/seq" forall n.  seq (f n) e = seq n e

You write that rule.  When GHC sees a case expression that discards
its result, it mentally transforms it to a call to 'seq' and looks for
a RULE.  (This is done in Simplify.rebuildCase.)  As usual, the
correctness of the rule is up to you.

This patch implements the extra stuff.  I have not documented it explicitly
in the user manual yet... let's see how useful it is first.

The patch looks bigger than it is, because
  a) Comments; see esp MkId Note [seqId magic]

  b) Some refactoring.  Notably, I moved the special desugaring for
     seq from MkCore back into DsUtils where it properly belongs.
     (It's really a desugaring thing, not a CoreSyn invariant.)

  c) Annoyingly, in a RULE left-hand side we need to be careful that
     the magical desugaring done in MkId Note [seqId magic] item (c)
     is *not* done on the LHS of a rule. Or rather, we arrange to
     un-do it, in DsBinds.decomposeRuleLhs.

14 years agoRemove the unused remains of __decodeFloat
Ian Lynagh [Tue, 2 Jun 2009 18:22:11 +0000 (18:22 +0000)]
Remove the unused remains of __decodeFloat

14 years agoRemove old GUM/GranSim code
Simon Marlow [Tue, 2 Jun 2009 14:02:33 +0000 (14:02 +0000)]
Remove old GUM/GranSim code

14 years agotidy up autoconfiguration of docbook stuff
Simon Marlow [Tue, 2 Jun 2009 13:49:43 +0000 (13:49 +0000)]
tidy up autoconfiguration of docbook stuff

 * use --nonet, so xmllint and co don't go off trying to download
   stuff from the web

 * use the http:// reference for the stylesheet, so we don't have to
   search the filesystem for it (should speedup ./configure)

14 years agofix 'make sdist'
Simon Marlow [Tue, 2 Jun 2009 12:16:18 +0000 (12:16 +0000)]
fix 'make sdist'

14 years agoAdd a comment about why RM and RM_OPTS are not in config.mk
Ian Lynagh [Tue, 2 Jun 2009 12:47:00 +0000 (12:47 +0000)]
Add a comment about why RM and RM_OPTS are not in config.mk

14 years agoFollow the change in RM's definition in distrib/Makefile-bin-vars.in
Ian Lynagh [Tue, 2 Jun 2009 12:46:44 +0000 (12:46 +0000)]
Follow the change in RM's definition in distrib/Makefile-bin-vars.in

14 years agoFix Trac #3265: type operators in type/class declarations
simonpj@microsoft.com [Tue, 2 Jun 2009 13:37:06 +0000 (13:37 +0000)]
Fix Trac #3265: type operators in type/class declarations

We should accept these:

   data a :*: b = ....
or
   data (:*:) a b = ...

only if -XTypeOperators is in force.  And similarly class decls.

This patch fixes the problem.  It uses the slightly-nasty OccName.isSymOcc,
but the only way to avoid that is to cach the result in OccNames which seems
overkill to us.

14 years agoUse -w when compiling libffi, to stop -Werror failures
Ian Lynagh [Tue, 2 Jun 2009 11:34:08 +0000 (11:34 +0000)]
Use -w when compiling libffi, to stop -Werror failures

14 years agoAdd a section "Multi-threading and the FFI"
Simon Marlow [Tue, 2 Jun 2009 10:23:52 +0000 (10:23 +0000)]
Add a section "Multi-threading and the FFI"
and collect all the information about multi-threaded FFI use into it.

14 years agoemit a helpful message if you say 'make html' and BUILD_DOCBOOK_HTML=NO
Simon Marlow [Tue, 2 Jun 2009 09:59:36 +0000 (09:59 +0000)]
emit a helpful message if you say 'make html' and BUILD_DOCBOOK_HTML=NO

14 years agomention documentation tools in the summary; tidy up formatting
Simon Marlow [Tue, 2 Jun 2009 09:03:45 +0000 (09:03 +0000)]
mention documentation tools in the summary; tidy up formatting

14 years agodepend on mk/project.mk appropriately
Simon Marlow [Fri, 29 May 2009 15:19:34 +0000 (15:19 +0000)]
depend on mk/project.mk appropriately

14 years agofix comment
Simon Marlow [Fri, 29 May 2009 11:30:28 +0000 (11:30 +0000)]
fix comment

14 years agoUnquote a $(LN_S) in ghc/ghc.mk
Ian Lynagh [Sat, 30 May 2009 23:33:56 +0000 (23:33 +0000)]
Unquote a $(LN_S) in ghc/ghc.mk

14 years ago$(XARGS) might include arguments, so don't quote it in makefiles
Ian Lynagh [Sat, 30 May 2009 23:31:33 +0000 (23:31 +0000)]
$(XARGS) might include arguments, so don't quote it in makefiles

14 years agoQuote commands that we run, so they work if there are space in their paths
Ian Lynagh [Sat, 30 May 2009 22:00:21 +0000 (22:00 +0000)]
Quote commands that we run, so they work if there are space in their paths
I've also added some missing $s to some makefiles. These aren't
technically necessary, but it's nice to be consistent.

14 years agoRemove some redundant code from hi-rule.mk
Ian Lynagh [Sat, 30 May 2009 19:37:29 +0000 (19:37 +0000)]
Remove some redundant code from hi-rule.mk

14 years agomake the clean_libraries target work, so you can "make clean" in libraries/
Ian Lynagh [Sat, 30 May 2009 18:47:50 +0000 (18:47 +0000)]
make the clean_libraries target work, so you can "make clean" in libraries/

14 years agofix pprDynamicLinkerAsmLabel for Mac OS X x86_64
Austin Seipp [Sat, 23 May 2009 09:09:01 +0000 (09:09 +0000)]
fix pprDynamicLinkerAsmLabel for Mac OS X x86_64