From: simonmar Date: Wed, 3 Jan 2001 16:04:16 +0000 (+0000) Subject: [project @ 2001-01-03 16:04:16 by simonmar] X-Git-Tag: Approximately_9120_patches~2975 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=9c853f5c5bd1e6fac952e98628597b3f5839a8df;p=ghc-hetmet.git [project @ 2001-01-03 16:04:16 by simonmar] Remove -ldl for now. Current story: you don't get any GHCi stuff by default. To build GHCi: (a) build a compiler with GhcRtsHcOpts+=-optc-DGHCI in build.mk (b) use this compiler to bootstrap another compiler, with GhcWithInterpreter=YES and GhcHcOpts+=-ldl in build.mk --- diff --git a/ghc/driver/PackageSrc.hs b/ghc/driver/PackageSrc.hs index fa53901..a517e3f 100644 --- a/ghc/driver/PackageSrc.hs +++ b/ghc/driver/PackageSrc.hs @@ -46,7 +46,7 @@ package_details installing = then [ clibdir ] else [ ghc_src_dir cGHC_RUNTIME_DIR ], hs_libraries = [ "HSrts" ], - extra_libraries = [ "dl" ], + extra_libraries = [ "" ], include_dirs = if installing then [ clibdir ++ "/includes" ] else [ ghc_src_dir cGHC_INCLUDE_DIR ],