From 9c853f5c5bd1e6fac952e98628597b3f5839a8df Mon Sep 17 00:00:00 2001 From: simonmar Date: Wed, 3 Jan 2001 16:04:16 +0000 Subject: [PATCH] [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 --- ghc/driver/PackageSrc.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ], -- 1.7.10.4