[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20110721235441.GB25092@thunk.org>
Date: Thu, 21 Jul 2011 19:54:41 -0400
From: Ted Ts'o <tytso@....edu>
To: Ext4 Developers List <linux-ext4@...r.kernel.org>,
xfs-oss <xfs@....sgi.com>
Subject: Build script for a hermetic build of xfstests
With the six patches which I just sent (3 for xfsprogs, 3 for
xfstests), I'm now able to build xfstests hermetically using the
following script. It's still a bit rough, but I offer it up if anyone
else wants to be able to build xfstests without having to worry about
hidden dependencies in the distro-supplied /usr/include/xfs
directories, etc.
- Ted
#!/bin/bash -vx
DESTDIR=$(pwd)/bld
mkdir -p $DESTDIR
export CFLAGS="-I$DESTDIR/include"
export LDFLAGS="-static -L$DESTDIR/lib"
(cd e2fsprogs-libs; ./configure --prefix=/; make ; make DESTDIR=$DESTDIR install)
(cd attr; ./configure --prefix=$DESTDIR; make LLDFLAGS=-all-static ; make install-dev ; make install)
(cd acl; ./configure --prefix=$DESTDIR; make LLDFLAGS=-all-static; make install-dev; make install)
(cd libaio; make prefix=$DESTDIR install)
export DIST_ROOT=$DESTDIR
export LIBS=-lpthread
(cd xfsprogs-dev; make realclean ; make configure ; ./configure --prefix=/; make LLDFLAGS=-all-static BUILD_VERBOSE=1; make install; make install-dev)
unset LIBS
unset DIST_ROOT
export LIBTOOL="/usr/bin/libtool --tag=CC"
(cd dmapi; CFLAGS="-I$DESTDIR/include -L$DESTDIR/lib" LDFLAGS=-static ./configure --prefix=$DESTDIR; make LLDFLAGS=-all-static; make install-dev; make install)
unset LIBTOOL
find . -name \*.la | xargs rm -f # Die, libtool, die!!!!
cp $DESTDIR/include/xfs/dmapi.h $DESTDIR/include
set
export LIBS=-lpthread
export CFLAGS="-I$DESTDIR/include -fno-stack-protector"
(cd xfstests-dev; ./configure ; make LLDFLAGS=-all-static BUILD_VERBOSE=1)
--
To unsubscribe from this list: send the line "unsubscribe linux-ext4" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists