Dynamische lib wird jetzt auch unter 64 Bit generiert.

git-svn-id: svn://svn.compuextreme.de/Viitor/V962/ViitorMake@5002 504e572c-2e33-0410-9681-be2bf7408885
This commit is contained in:
kueller 2010-01-05 13:06:25 +00:00
parent e272ba3276
commit 67ec23632c

View File

@ -91,14 +91,17 @@ mk() {
if [ "$MK64BIT" == "true" ]; then
ADDOPTIONS="--libdir=\${prefix}/lib64"
fi
CC="gcc $BUILDOPTIONS" \
CXX="g++ $BUILDOPTIONS" \
CC="gcc $BUILDOPTIONS -fPIC" \
CXX="g++ $BUILDOPTIONS -fPIC" \
USE_ARCH=$UARCH \
./configure --target=$TARGET \
$ADDOPTIONS \
--prefix=/usr
make -j $NUMCPU
make -j $NUMCPU DESTDIR=$TMPROOT install
if [ "$MK64BIT" == "true" ]; then
GenDynLib $TMPROOT/usr/lib64/libclucene.a 0.0.0
fi
}
postmk() {