From: Andre P. <at...@us...> - 2004-05-13 04:53:09
|
Update of /cvsroot/hoc/hoc/HOC In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4779a Modified Files: HOC-macos.conf HOC-macos.conf-inplace Log Message: "Fixed" (or rather, suppressed) error trying to link in libHOC.a with GHC 6.2.1 (6.2 doesn't need this fix, but 6.2.1 barfs). No idea what this fix really does, but the samples still seem to work, so who cares, right? :) (Search for "read_only_relocs" in the ld(1) manpage for more details.) Index: HOC-macos.conf =================================================================== RCS file: /cvsroot/hoc/hoc/HOC/HOC-macos.conf,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- HOC-macos.conf 27 Oct 2003 16:48:02 -0000 1.1.1.1 +++ HOC-macos.conf 13 May 2004 04:52:59 -0000 1.2 @@ -12,7 +12,7 @@ package_deps = ["base","haskell-src"], extra_ghc_opts = [], extra_cc_opts = [], - extra_ld_opts = [], + extra_ld_opts = ["-Xlinker", "-read_only_relocs", "-Xlinker", "suppress"], framework_dirs = [], extra_frameworks = ["Foundation"] } Index: HOC-macos.conf-inplace =================================================================== RCS file: /cvsroot/hoc/hoc/HOC/HOC-macos.conf-inplace,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- HOC-macos.conf-inplace 27 Oct 2003 16:48:02 -0000 1.1.1.1 +++ HOC-macos.conf-inplace 13 May 2004 04:52:59 -0000 1.2 @@ -13,8 +13,8 @@ package_deps = ["base","haskell-src"], extra_ghc_opts = [], extra_cc_opts = [], - extra_ld_opts = [], + extra_ld_opts = ["-Xlinker", "-read_only_relocs", "-Xlinker", "suppress"], framework_dirs = [], extra_frameworks = ["Foundation"] } -] \ No newline at end of file +] |