JVM bridge
Mark Carroll
mark at chaos.x-philes.com
Wed Jan 7 13:07:38 EST 2004
On Wed, 7 Jan 2004, Peter Robinson wrote:
> information of "javavm" to /opt/ghc/lib/ghc-6.2/package.conf.
> After removing those options (-rpath,...) from "extra_ld_opts = []" in the
Thanks! This was of great help. It all works if I do what's illustrated here:
$ diff /usr/lib/ghc-6.2/package.conf /usr/lib/ghc-6.2/package.conf~
415,417c415,423
< ["-Wl,-rpath,/usr/lib/jvm-bridge/lib/",
< "-Wl,-rpath,/usr/lib/j2se/1.3/jre/lib/i386/",
< "-Wl,-rpath,/usr/lib/j2se/1.3/jre/lib/i386/client/"],
---
> ["-Wl",
> "-rpath",
> "/usr/lib/jvm-bridge/lib/",
> "-Wl",
> "-rpath",
> "/usr/lib/j2se/1.3/jre/lib/i386/",
> "-Wl",
> "-rpath",
> "/usr/lib/j2se/1.3/jre/lib/i386/client/"],
-- Mark
More information about the Haskell-Cafe
mailing list