Roger,
> I ran ./AMRITAsystem -verbose -check all after editing which-gcc and
> that succeeded. However the next step fails:
>
> **********************
> failed to build Amrita
> **********************
> src3p::perl ok!
> src3p::mpeg failed!
> src3p::origami failed!
> plugin::amrita ok!
> plugin::amr_sol ok!
> plugin::foo ok!
> amrmake:
> Consult Chapter 3 of Amrita's installation notes and try again.
>
> I can't find the installation notes mentioned in the output. I remember
> from installing amrita on a different machine this summer that the
> problem with origami is likey to do with libtermcap, but the mpeg error
> is new to me.
To see how the builds are failing, you can run:
amrmake -verbose src3p::origami
amrmake -verbose src3p::mpeg
and as you note, src3p::origami is almost certainly missing libtermcap. I
suspect the problem with src3p::mpeg is that it's a 32-bit build on a
64-bit system. For instance, on my machine I have to backtrack to gcc-4.2
(from 4.3) when doing a 32-bit build owing to an internal bug in gcc. This
is done automatically via the callback file:
$AMRITA/SYSTEM/Linux/x86_64/which-gcc
which contains:
$g77 = 'gfortran-4.3';
$gcc = 'gcc-4.3';
$gxx = 'g++-4.3';
$g2c = 'gfortran';
if($word eq '32') {
$gcc = 'gcc-4.2'; # gcc-4.3 is broken!
}
In any event, src3p::mpeg is not critical to AMRITA's operation, so you
can safely ignore the problem. Moreover, it's worth noting that AMRITA's
mpeg functionality will likely soon be deprecated as the generation of
SWF's is a better route for adding animations to PDF's.
James
>
> Thanks for any help.
>
> Roger
>
> --
>
> You received this message because you are subscribed to the Google Groups "amrita-ebook" group.
> To post to this group, send email to
amrita...@googlegroups.com.
> To unsubscribe from this group, send email to
amrita-ebook...@googlegroups.com.
> For more options, visit this group at
http://groups.google.com/group/amrita-ebook?hl=en.
>
>