Fehler korrigiert - pythonfehler mit glib werden durch 32 bit includes bzw libs verursacht...

git-svn-id: svn://svn.compuextreme.de/Viitor/V962/ViitorMake@5194 504e572c-2e33-0410-9681-be2bf7408885
This commit is contained in:
kueller 2010-01-22 14:42:52 +00:00
parent 2afb13fa6e
commit 1d5b456f75

View File

@ -74,14 +74,15 @@
SRCPATH=Tools/Utilities
premk() {
echo "Nothing to do for premk()"
mkdir ../build-gobject
cd ../build-gobject
}
mk32() {
CC="gcc $BUILDOPTIONS32" \
CXX="g++ $BUILDOPTIONS32" \
USE_ARCH=32 \
./configure --prefix=/usr
../gobject-introspection*/configure --prefix=/usr
cp /usr/bin/libtool-32 libtool
make USE_ARCH=32 -j $NUMCPU -k
make USE_ARCH=32 -j $NUMCPU -k DESTDIR=$TMPROOT install
@ -89,6 +90,10 @@ mk32() {
mv $TMPROOT/usr/bin/g-ir-scanner{,-32}
mv $TMPROOT/usr/bin/g-ir-generate{,-32}
mv $TMPROOT/usr/bin/g-ir-compiler{,-32}
cd ../gobject-introspection
rm -r ../build-gobject
mkdir ../build-gobject
cd ../gobject-introspection
}
mk() {
@ -98,13 +103,14 @@ mk() {
CC="gcc $BUILDOPTIONS" \
CXX="g++ $BUILDOPTIONS" \
USE_ARCH=$UARCH \
./configure $ADDOPTIONS \
../gobject-introspection*/configure $ADDOPTIONS \
--prefix=/usr
if [ "$MK64BIT" == "true" ]; then
cp /usr/bin/libtool-64 libtool
else
cp /usr/bin/libtool libtool
fi
find . -type f -exec sed -i "s/\/lib\//\/lib64\//" {} \;
make USE_ARCH=$UARCH -j $NUMCPU -k
make USE_ARCH=$UARCH -j $NUMCPU -k DESTDIR=$TMPROOT install
if [ "$MK64BIT" == "true" ]; then