RE: 6.4.1 release candidate testing

On 03 August 2005 09:27, Gabriel Ebner wrote:
Gour wrote:
I don't notice any particular tweaking in the ghc ebuild. Did you uncomment the GhcWithInterpreter and SplitObjs lines in the ebuild?
I just tweaked the 2nd line to:
use ppc64 && echo "GhcWithInterpreter=NO" >> mk/build.mk
so I can get 'ghci' built.
I think you can do away with the first line too, I've just done a successful build with split objects on gentoo/amd64.
That's right, split objects is now working on amd64 too.
I'll try to rebuild ghc on my gentoo box, maybe it works this time...
Pls. report back if everything is fine.
I must've touched the magic switch. Now it's running just fine. Apparently HTYPE_TCFLAGS_T got undef'd the first time, but now it's good, although I don't know what I did.
That's what I like to hear, bugs that fix themselves! Cheers, Simon

Simon Marlow (simonmar@microsoft.com) wrote:
That's right, split objects is now working on amd64 too.
Confirmed.
That's what I like to hear, bugs that fix themselves!
Here is another one of those, i.e. there are several problems with the docs building, e.g.: [...] ------------------------------------------------------------------------ ===fptools== Recursively making `all' in building docbook-cheat-sheet ... PWD = /var/tmp/portage/ghc-6.4.1/work/ghc-6.4.1/docs ------------------------------------------------------------------------ ------------------------------------------------------------------------ ==fptools== make all -wr; in /var/tmp/portage/ghc-6.4.1/work/ghc-6.4.1/docs/building ------------------------------------------------------------------------ rm -f -rf building/ /usr/bin/xsltproc --stringparam base.dir building/ \ --stringparam use.id.as.filename 1 \ --stringparam html.stylesheet fptools.css \ --stringparam toc.section.depth 3 --stringparam section.autolabel 1 --stringparam section.label.includes.component.label 1 \ /usr/share/sgml/docbook/xsl-stylesheets-1.68.1/html/chunk.xsl building.xml building.xml:797: parser error : Opening and ending tag mismatch: para line 796 and listitem </listitem> [...] but by applying the following diff it apparently fixes itself :-) --- building.xml.org 2005-08-03 12:25:03.000000000 +0200 +++ building.xml 2005-08-03 12:32:51.000000000 +0200 @@ -793,7 +793,7 @@ <indexterm><primary><literal>hslibs</literal></primary><secondary>project</secondary></indexterm> </term> <listitem> - <para>Old, now deprecated, libraries. Everything in here is in <literal>libraries</literal>. + <para>Old, now deprecated, libraries. Everything in here is in <literal>libraries</literal>.</para> </listitem> </varlistentry> @@ -3819,7 +3819,7 @@ <listitem> <para>Touch the generated configuration files, just to make sure they don't get replaced during the build:</para> -<screen>$ touch <filename><replaceable>H</replaceable></filename>/ghc/includes/{ghcautoconf.h,DerivedConstants.h.GHCConstants.h.mkDerivedConstants.c,mkDerivedConstantsHdr,mkDerivedConstants.o,mkGHCConstants,mkGHCConstants.o} + <screen>$ touch <filename><replaceable>H</replaceable></filename>/ghc/includes/{ghcautoconf.h,DerivedConstants.h.GHCConstants.h.mkDerivedConstants.c,mkDerivedConstantsHdr,mkDerivedConstants.o,mkGHCConstants,mkGHCConstants.o}</screen> </listitem> <listitem> Sincerely, Gour -- Registered Linux User | #278493 GPG Public Key | 8C44EDCD
participants (2)
-
Gour
-
Simon Marlow