From a102d3952b2c1ecde83d1a0b0b718070d3d44083 Mon Sep 17 00:00:00 2001 From: simonmar Date: Tue, 30 Jan 2001 10:56:55 +0000 Subject: [PATCH] [project @ 2001-01-30 10:56:55 by simonmar] lang package needs an undefined symbol (for deprecated rts_mkAddr) --- ghc/driver/PackageSrc.hs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/ghc/driver/PackageSrc.hs b/ghc/driver/PackageSrc.hs index dcc7508..5964ec8 100644 --- a/ghc/driver/PackageSrc.hs +++ b/ghc/driver/PackageSrc.hs @@ -143,7 +143,13 @@ package_details installing = package_deps = [], extra_ghc_opts = [], extra_cc_opts = [], - extra_ld_opts = [] + extra_ld_opts = [ +#ifndef LEADING_UNDERSCORE + "-u Addr_Azh_static_info" +#else + "-u _Addr_Azh_static_info" +#endif + ] }, Package { -- 1.7.10.4