On 5/10/05, Travis Spencer <travislspencer_at_[hidden]> wrote:
> I am trying to build and install LAM 7.1.1 on Solaris 9 using gcc 3.4.
> I've configured it like this:
>
> ./configure \
> --prefix=$PREFIX \
> --with-exceptions \
> --with-exflags=-Wno-deprecated \
> --with-impi \
> --with-purify \
> --with-threads=solaris \
> --with-trillium \
> --with-wrapper-extra-ldflags=-R$PREFIX/lib
I got 7.1.1 to work by configuring it like this:
$SRC_DIR/configure \
--prefix=$PREFIX \
--with-exceptions \
--with-purify \
--with-threads=posix \
--with-trillium \
--with-wrapper-extra-ldflags=-R$PREFIX/lib \
--with-rsh="ssh -x"
With these flags, I got 7.2 to work (and by work I mean build -- we'll
see if it really works come tomorrow):
$SRC_DIR/configure \
--prefix=$PREFIX \
--with-exceptions \
--with-purify \
--with-threads=solaris \
--with-trillium \
--with-wrapper-extra-ldflags=-R$PREFIX/lib \
--with-rsh="ssh -x"
--
Regards,
Travis Spencer
Portland, OR USA
|