Skip to content

Commit

Permalink
Fix paths for nukeversion & mkNamedPrims.h in the linux build scripts.
Browse files Browse the repository at this point in the history
Add mkNamedPrims.sh to the root (to temporarily preserve older builds) and to
the linux build dir.  Modify the unix vm Makefile to pick up mkNamedPrims.h from
the build dir.


git-svn-id: http://squeakvm.org/svn/squeak/branches/Cog@2952 fa1542d4-bde8-0310-ad64-8ed1123d492a

Former-commit-id: d25025076567ff9a3fc7d30bd5318f7cf6e7a934
  • Loading branch information
eliotmiranda committed Jun 6, 2014
1 parent 6244f75 commit 92ced14
Show file tree
Hide file tree
Showing 34 changed files with 111 additions and 63 deletions.
24 changes: 24 additions & 0 deletions build.linux32x86/mkNamedPrims.sh
@@ -0,0 +1,24 @@
#!/bin/sh
# Generate a sqNamedPrims.h file from plugins.int. The plugins.int used should
# be the one and only argument.
if [ $# != 1 -o ! -f "$1" ]; then
echo usage $0 plugins.int ">sqNamedPrims.h" 1>&2
exit 1
fi
echo "/* Automatically generated on "`date`" */"
echo "extern sqExport vm_exports[];";
echo "extern sqExport os_exports[];";
for p in `grep -v '^#' "$1" | sed 's/INTERNAL_PLUGINS = //' | tr -d '\\\\\\012'`
do
echo "extern sqExport "$p"_exports[];"
done
echo
echo "sqExport *pluginExports[] = {"
echo " vm_exports,"
echo " os_exports,"
for p in `grep -v '^#' "$1" | sed 's/INTERNAL_PLUGINS = //' | tr -d '\\\\\\012'`
do
echo " "$p"_exports,"
done
echo " NULL"
echo "};"
Expand Up @@ -14,13 +14,13 @@ case $a in
n|no|N|NO) echo "ok but this isn't safe!!";;
*) rm config.h; test -f Makefile && make reallyclean
esac
test -f config.h || ../../platforms/unix/config/configure --with-src=nscogsrc \
test -f config.h || ../../../platforms/unix/config/configure --with-src=nscogsrc \
--without-vm-display-fbdev --without-npsqueak \
CC="gcc -m32" \
CFLAGS="-g $OPT -msse2 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -DITIMER_HEARTBEAT=1 -DDEBUGVM=0 -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer" \
LIBS="-lpthread -luuid" \
LDFLAGS=-Wl,-z,now
../../scripts/nukeversion
../../../scripts/nukeversion
rm -rf ../../../products/$INSTALLDIR
# would prefer make install prefix=`readlink -f \`pwd\`/../../../products/$INSTALLDIR`
# but older linux readlinks lack the -f flag
Expand Down
4 changes: 2 additions & 2 deletions build.linux32x86/newspeak.cog.v3/build.assert/mvm
Expand Up @@ -15,13 +15,13 @@ case $a in
n|no|N|NO) echo "ok but this isn't safe!!";;
*) rm config.h; test -f Makefile && make reallyclean
esac
test -f config.h || ../../platforms/unix/config/configure --with-src=nscogsrc \
test -f config.h || ../../../platforms/unix/config/configure --with-src=nscogsrc \
--without-vm-display-fbdev --without-npsqueak \
CC="gcc -m32" \
CFLAGS="-g $OPT -msse2 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -DDEBUGVM=0 -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer" \
LIBS="-lpthread -luuid" \
LDFLAGS=-Wl,-z,now
../../scripts/nukeversion
../../../scripts/nukeversion
rm -rf ../../../products/$INSTALLDIR
# would prefer make install prefix=`readlink -f \`pwd\`/../../../products/$INSTALLDIR`
# but older linux readlinks lack the -f flag
Expand Down
Expand Up @@ -14,13 +14,13 @@ case $a in
n|no|N|NO) echo "ok but this isn't safe!!";;
*) rm config.h; test -f Makefile && make reallyclean
esac
test -f config.h || ../../platforms/unix/config/configure --with-src=nscogsrc \
test -f config.h || ../../../platforms/unix/config/configure --with-src=nscogsrc \
--without-vm-display-fbdev --without-npsqueak \
CC="gcc -m32" \
CFLAGS="-g $OPT -msse2 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -DITIMER_HEARTBEAT=1 -DDEBUGVM=1 -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer" \
LIBS="-lpthread -luuid" \
LDFLAGS=-Wl,-z,now
../../scripts/nukeversion
../../../scripts/nukeversion
rm -rf ../../../products/$INSTALLDIR
# would prefer make install prefix=`readlink -f \`pwd\`/../../../products/$INSTALLDIR`
# but older linux readlinks lack the -f flag
Expand Down
4 changes: 2 additions & 2 deletions build.linux32x86/newspeak.cog.v3/build.debug/mvm
Expand Up @@ -15,13 +15,13 @@ case $a in
n|no|N|NO) echo "ok but this isn't safe!!";;
*) rm config.h; test -f Makefile && make reallyclean
esac
test -f config.h || ../../platforms/unix/config/configure --with-src=nscogsrc \
test -f config.h || ../../../platforms/unix/config/configure --with-src=nscogsrc \
--without-vm-display-fbdev --without-npsqueak \
CC="gcc -m32" \
CFLAGS="-g $OPT -msse2 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -DDEBUGVM=1 -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer" \
LIBS="-lpthread -luuid" \
LDFLAGS=-Wl,-z,now
../../scripts/nukeversion
../../../scripts/nukeversion
rm -rf ../../../products/$INSTALLDIR
# would prefer make install prefix=`readlink -f \`pwd\`/../../../products/$INSTALLDIR`
# but older linux readlinks lack the -f flag
Expand Down
4 changes: 2 additions & 2 deletions build.linux32x86/newspeak.cog.v3/build.itimerheartbeat/mvm
Expand Up @@ -18,13 +18,13 @@ case $a in
n|no|N|NO) echo "ok but this isn't safe!!";;
*) rm config.h; test -f Makefile && make reallyclean
esac
test -f config.h || ../../platforms/unix/config/configure --with-src=nscogsrc \
test -f config.h || ../../../platforms/unix/config/configure --with-src=nscogsrc \
--without-vm-display-fbdev --without-npsqueak \
CC="gcc -m32" \
CFLAGS="-g $OPT -msse2 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -DNDEBUG -DITIMER_HEARTBEAT=1 -DDEBUGVM=0" \
LIBS="-lpthread -luuid" \
LDFLAGS=-Wl,-z,now
../../scripts/nukeversion
../../../scripts/nukeversion
rm -rf ../../../products/$INSTALLDIR
# would prefer make install prefix=`readlink -f \`pwd\`/../../../products/$INSTALLDIR`
# but older linux readlinks lack the -f flag
Expand Down
4 changes: 2 additions & 2 deletions build.linux32x86/newspeak.cog.v3/build/mvm
Expand Up @@ -19,13 +19,13 @@ case $a in
n|no|N|NO) echo "ok but this isn't safe!!";;
*) rm config.h; test -f Makefile && make reallyclean
esac
test -f config.h || ../../platforms/unix/config/configure --with-src=nscogsrc \
test -f config.h || ../../../platforms/unix/config/configure --with-src=nscogsrc \
--without-vm-display-fbdev --without-npsqueak \
CC="gcc -m32" \
CFLAGS="-g $OPT -msse2 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -DNDEBUG -DDEBUGVM=0" \
LIBS="-lpthread -luuid" \
LDFLAGS=-Wl,-z,now
../../scripts/nukeversion
../../../scripts/nukeversion
rm -rf ../../../products/$INSTALLDIR
# would prefer make install prefix=`readlink -f \`pwd\`/../../../products/$INSTALLDIR`
# but older linux readlinks lack the -f flag
Expand Down
4 changes: 2 additions & 2 deletions build.linux32x86/newspeak.stack.v3/build.itimerheartbeat/mvm
Expand Up @@ -18,13 +18,13 @@ case $a in
n|no|N|NO) echo "ok but this isn't safe!!";;
*) rm config.h; test -f Makefile && make reallyclean
esac
test -f config.h || ../../platforms/unix/config/configure \
test -f config.h || ../../../platforms/unix/config/configure \
--with-src=nssrc --disable-cogit \
CC="gcc -m32 -v" \
CFLAGS="-g -O2 -msse2 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -DNDEBUG -DNO_VM_PROFILE=1 -DDEBUGVM=0" \
LIBS="-lpthread" \
LDFLAGS=-Wl,-z,now
../../scripts/nukeversion
../../../scripts/nukeversion
rm -rf ../../../products/$INSTALLDIR
# would prefer make install prefix=`readlink -f \`pwd\`/../../products/$INSTALLDIR`
# but older linux readlinks lack the -f flag
Expand Down
4 changes: 2 additions & 2 deletions build.linux32x86/squeak.cog.spur/build.assert/mvm
Expand Up @@ -10,11 +10,11 @@ case $a in
n|no|N|NO) echo "ok but this isn't safe!!";;
*) test -f Makefile && make reallyclean
esac
test -f config.h || ../../platforms/unix/config/configure --with-src=spursrc --with-plugins=src/plugins --without-npsqueak \
test -f config.h || ../../../platforms/unix/config/configure --with-src=spursrc --with-plugins=src/plugins --without-npsqueak \
CC="gcc -m32" \
CFLAGS="-g3 -O1 -msse2 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -DCOGMTVM=0 -DDEBUGVM=0" \
LIBS="-lpthread -luuid" \
LDFLAGS=-Wl,-z,now
../../scripts/nukeversion
../../../scripts/nukeversion
rm -rf ../../../products/$INSTALLDIR
make install prefix=`(cd ../../../;pwd)`/products/$INSTALLDIR
4 changes: 2 additions & 2 deletions build.linux32x86/squeak.cog.spur/build.debug/mvm
Expand Up @@ -10,11 +10,11 @@ case $a in
n|no|N|NO) echo "ok but this isn't safe!!";;
*) test -f Makefile && make reallyclean
esac
test -f config.h || ../../platforms/unix/config/configure --with-src=spursrc --with-plugins=src/plugins --without-npsqueak \
test -f config.h || ../../../platforms/unix/config/configure --with-src=spursrc --with-plugins=src/plugins --without-npsqueak \
CC="gcc -m32" \
CFLAGS="-g3 -O0 -msse2 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -DCOGMTVM=0 -DDEBUGVM=1" \
LIBS="-lpthread -luuid" \
LDFLAGS=-Wl,-z,now
../../scripts/nukeversion
../../../scripts/nukeversion
rm -rf ../../../products/$INSTALLDIR
make install prefix=`(cd ../../../;pwd)`/products/$INSTALLDIR
4 changes: 2 additions & 2 deletions build.linux32x86/squeak.cog.spur/build/mvm
Expand Up @@ -16,11 +16,11 @@ case $a in
n|no|N|NO) echo "ok but this isn't safe!!";;
*) test -f Makefile && make reallyclean
esac
test -f config.h || ../../platforms/unix/config/configure --with-src=spursrc --with-plugins=src/plugins --without-npsqueak \
test -f config.h || ../../../platforms/unix/config/configure --with-src=spursrc --with-plugins=src/plugins --without-npsqueak \
CC="gcc -m32" \
CFLAGS="-g $OPT -msse2 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -DNDEBUG -DCOGMTVM=0 -DDEBUGVM=0" \
LIBS="-lpthread -luuid" \
LDFLAGS=-Wl,-z,now
../../scripts/nukeversion
../../../scripts/nukeversion
rm -rf ../../../products/$INSTALLDIR
make install prefix=`(cd ../../../;pwd)`/products/$INSTALLDIR
Expand Up @@ -9,11 +9,11 @@ case $a in
n|no|N|NO) echo "ok but this isn't safe!!";;
*) test -f Makefile && make reallyclean
esac
test -f config.h || ../../platforms/unix/config/configure --without-npsqueak \
test -f config.h || ../../../platforms/unix/config/configure --without-npsqueak \
CC="gcc -m32" \
CFLAGS="-g3 -O1 -msse2 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -DITIMER_HEARTBEAT=1 -DCOGMTVM=0 -DDEBUGVM=0" \
LIBS="-lpthread -luuid" \
LDFLAGS=-Wl,-z,now
../../scripts/nukeversion
../../../scripts/nukeversion
rm -rf ../../../products/$INSTALLDIR
make install prefix=`(cd ../../../;pwd)`/products/$INSTALLDIR
4 changes: 2 additions & 2 deletions build.linux32x86/squeak.cog.v3/build.assert/mvm
Expand Up @@ -10,11 +10,11 @@ case $a in
n|no|N|NO) echo "ok but this isn't safe!!";;
*) test -f Makefile && make reallyclean
esac
test -f config.h || ../../platforms/unix/config/configure --without-npsqueak \
test -f config.h || ../../../platforms/unix/config/configure --without-npsqueak \
CC="gcc -m32" \
CFLAGS="-g3 -O1 -msse2 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -DCOGMTVM=0 -DDEBUGVM=0" \
LIBS="-lpthread -luuid" \
LDFLAGS=-Wl,-z,now
../../scripts/nukeversion
../../../scripts/nukeversion
rm -rf ../../../products/$INSTALLDIR
make install prefix=`(cd ../../../;pwd)`/products/$INSTALLDIR
Expand Up @@ -9,11 +9,11 @@ case $a in
n|no|N|NO) echo "ok but this isn't safe!!";;
*) test -f Makefile && make reallyclean
esac
test -f config.h || ../../platforms/unix/config/configure --without-npsqueak \
test -f config.h || ../../../platforms/unix/config/configure --without-npsqueak \
CC="gcc -m32" \
CFLAGS="-g3 -O0 -msse2 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -DITIMER_HEARTBEAT=1 -DCOGMTVM=0 -DDEBUGVM=1" \
LIBS="-lpthread -luuid" \
LDFLAGS=-Wl,-z,now
../../scripts/nukeversion
../../../scripts/nukeversion
rm -rf ../../../products/$INSTALLDIR
make install prefix=`(cd ../../../;pwd)`/products/$INSTALLDIR
4 changes: 2 additions & 2 deletions build.linux32x86/squeak.cog.v3/build.debug/mvm
Expand Up @@ -10,11 +10,11 @@ case $a in
n|no|N|NO) echo "ok but this isn't safe!!";;
*) test -f Makefile && make reallyclean
esac
test -f config.h || ../../platforms/unix/config/configure --without-npsqueak \
test -f config.h || ../../../platforms/unix/config/configure --without-npsqueak \
CC="gcc -m32" \
CFLAGS="-g3 -O0 -msse2 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -DCOGMTVM=0 -DDEBUGVM=1" \
LIBS="-lpthread -luuid" \
LDFLAGS=-Wl,-z,now
../../scripts/nukeversion
../../../scripts/nukeversion
rm -rf ../../../products/$INSTALLDIR
make install prefix=`(cd ../../../;pwd)`/products/$INSTALLDIR
4 changes: 2 additions & 2 deletions build.linux32x86/squeak.cog.v3/build.itimerheartbeat/mvm
Expand Up @@ -15,11 +15,11 @@ case $a in
n|no|N|NO) echo "ok but this isn't safe!!";;
*) test -f Makefile && make reallyclean
esac
test -f config.h || ../../platforms/unix/config/configure --without-npsqueak \
test -f config.h || ../../../platforms/unix/config/configure --without-npsqueak \
CC="gcc -m32" \
CFLAGS="-g $OPT -msse2 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -DNDEBUG -DITIMER_HEARTBEAT=1 -DCOGMTVM=0 -DDEBUGVM=0" \
LIBS="-lpthread -luuid" \
LDFLAGS=-Wl,-z,now
../../scripts/nukeversion
../../../scripts/nukeversion
rm -rf ../../../products/$INSTALLDIR
make install prefix=`(cd ../../../;pwd)`/products/$INSTALLDIR
4 changes: 2 additions & 2 deletions build.linux32x86/squeak.cog.v3/build.multithreaded.assert/mvm
Expand Up @@ -10,12 +10,12 @@ case $a in
n|no|N|NO) echo "ok but this isn't safe!!";;
*) test -f Makefile && make reallyclean
esac
test -f config.h || ../../platforms/unix/config/configure INTERP=cointerpmt \
test -f config.h || ../../../platforms/unix/config/configure INTERP=cointerpmt \
--without-npsqueak \
CC="gcc -m32" \
CFLAGS="-g -O1 -msse2 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -DCOGMTVM=1 -DDEBUGVM=0" \
LIBS=-lpthread \
LDFLAGS=-Wl,-z,now
../../scripts/nukeversion
../../../scripts/nukeversion
rm -rf ../../../products/$INSTALLDIR
make install prefix=`(cd ../../../;pwd)`/products/$INSTALLDIR
4 changes: 2 additions & 2 deletions build.linux32x86/squeak.cog.v3/build.multithreaded.debug/mvm
Expand Up @@ -10,12 +10,12 @@ case $a in
n|no|N|NO) echo "ok but this isn't safe!!";;
*) test -f Makefile && make reallyclean
esac
test -f config.h || ../../platforms/unix/config/configure INTERP=cointerpmt \
test -f config.h || ../../../platforms/unix/config/configure INTERP=cointerpmt \
--without-npsqueak \
CC="gcc -m32" \
CFLAGS="-g -O0 -msse2 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -DCOGMTVM=1 -DDEBUGVM=1" \
LIBS=-lpthread \
LDFLAGS=-Wl,-z,now
../../scripts/nukeversion
../../../scripts/nukeversion
rm -rf ../../../products/$INSTALLDIR
make install prefix=`(cd ../../../;pwd)`/products/$INSTALLDIR
4 changes: 2 additions & 2 deletions build.linux32x86/squeak.cog.v3/build.multithreaded/mvm
Expand Up @@ -15,12 +15,12 @@ case $a in
n|no|N|NO) echo "ok but this isn't safe!!";;
*) test -f Makefile && make reallyclean
esac
test -f config.h || ../../platforms/unix/config/configure INTERP=cointerpmt \
test -f config.h || ../../../platforms/unix/config/configure INTERP=cointerpmt \
--without-npsqueak \
CC="gcc -m32" \
CFLAGS="-g $OPT -msse2 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -DNDEBUG -DCOGMTVM=1 -DDEBUGVM=0" \
LIBS=-lpthread \
LDFLAGS=-Wl,-z,now
../../scripts/nukeversion
../../../scripts/nukeversion
rm -rf ../../../products/$INSTALLDIR
make install prefix=`(cd ../../../;pwd)`/products/$INSTALLDIR
4 changes: 2 additions & 2 deletions build.linux32x86/squeak.cog.v3/build/mvm
Expand Up @@ -16,11 +16,11 @@ case $a in
n|no|N|NO) echo "ok but this isn't safe!!";;
*) test -f Makefile && make reallyclean
esac
test -f config.h || ../../platforms/unix/config/configure --without-npsqueak \
test -f config.h || ../../../platforms/unix/config/configure --without-npsqueak \
CC="gcc -m32" \
CFLAGS="-g $OPT -msse2 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -DNDEBUG -DCOGMTVM=0 -DDEBUGVM=0" \
LIBS="-lpthread -luuid" \
LDFLAGS=-Wl,-z,now
../../scripts/nukeversion
../../../scripts/nukeversion
rm -rf ../../../products/$INSTALLDIR
make install prefix=`(cd ../../../;pwd)`/products/$INSTALLDIR
Expand Up @@ -14,14 +14,14 @@ case $a in
n|no|N|NO) echo "ok but this isn't safe!!";;
*) rm config.h; test -f Makefile && make reallyclean
esac
test -f config.h || ../../platforms/unix/config/configure \
test -f config.h || ../../../platforms/unix/config/configure \
--with-src=spurstacksrc --with-plugins=src/plugins --disable-cogit \
--without-vm-display-fbdev --without-npsqueak \
CC="gcc -m32" \
CFLAGS="-g $OPT -msse2 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -DTIIMER_HEARTBEAT=1 -DDEBUGVM=0 -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer" \
LIBS="-lpthread -luuid" \
LDFLAGS=-Wl,-z,now
../../scripts/nukeversion
../../../scripts/nukeversion
rm -rf ../../../products/$INSTALLDIR
# would prefer make install prefix=`readlink -f \`pwd\`/../../../products/$INSTALLDIR`
# but older linux readlinks lack the -f flag
Expand Down
4 changes: 2 additions & 2 deletions build.linux32x86/squeak.stack.spur/build.assert/mvm
Expand Up @@ -15,14 +15,14 @@ case $a in
n|no|N|NO) echo "ok but this isn't safe!!";;
*) rm config.h; test -f Makefile && make reallyclean
esac
test -f config.h || ../../platforms/unix/config/configure \
test -f config.h || ../../../platforms/unix/config/configure \
--with-src=spurstacksrc --with-plugins=src/plugins --disable-cogit \
--without-vm-display-fbdev --without-npsqueak \
CC="gcc -m32" \
CFLAGS="-g $OPT -msse2 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -DDEBUGVM=0 -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer" \
LIBS="-lpthread -luuid" \
LDFLAGS=-Wl,-z,now
../../scripts/nukeversion
../../../scripts/nukeversion
rm -rf ../../../products/$INSTALLDIR
# would prefer make install prefix=`readlink -f \`pwd\`/../../products/$INSTALLDIR`
# but older linux readlinks lack the -f flag
Expand Down
Expand Up @@ -14,14 +14,14 @@ case $a in
n|no|N|NO) echo "ok but this isn't safe!!";;
*) rm config.h; test -f Makefile && make reallyclean
esac
test -f config.h || ../../platforms/unix/config/configure \
test -f config.h || ../../../platforms/unix/config/configure \
--with-src=spurstacksrc --with-plugins=src/plugins --disable-cogit \
--without-vm-display-fbdev --without-npsqueak \
CC="gcc -m32" \
CFLAGS="-g $OPT -msse2 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -DITIMER_HEARTBEAT=1 -DDEBUGVM=1 -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer" \
LIBS="-lpthread -luuid" \
LDFLAGS=-Wl,-z,now
../../scripts/nukeversion
../../../scripts/nukeversion
rm -rf ../../../products/$INSTALLDIR
# would prefer make install prefix=`readlink -f \`pwd\`/../../products/$INSTALLDIR`
# but older linux readlinks lack the -f flag
Expand Down
4 changes: 2 additions & 2 deletions build.linux32x86/squeak.stack.spur/build.debug/mvm
Expand Up @@ -15,14 +15,14 @@ case $a in
n|no|N|NO) echo "ok but this isn't safe!!";;
*) rm config.h; test -f Makefile && make reallyclean
esac
test -f config.h || ../../platforms/unix/config/configure \
test -f config.h || ../../../platforms/unix/config/configure \
--with-src=spurstacksrc --with-plugins=src/plugins --disable-cogit \
--without-vm-display-fbdev --without-npsqueak \
CC="gcc -m32" \
CFLAGS="-g $OPT -msse2 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -DDEBUGVM=1 -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer" \
LIBS="-lpthread -luuid" \
LDFLAGS=-Wl,-z,now
../../scripts/nukeversion
../../../scripts/nukeversion
rm -rf ../../../products/$INSTALLDIR
# would prefer make install prefix=`readlink -f \`pwd\`/../../products/$INSTALLDIR`
# but older linux readlinks lack the -f flag
Expand Down
4 changes: 2 additions & 2 deletions build.linux32x86/squeak.stack.spur/build.itimerheartbeat/mvm
Expand Up @@ -18,14 +18,14 @@ case $a in
n|no|N|NO) echo "ok but this isn't safe!!";;
*) rm config.h; test -f Makefile && make reallyclean
esac
test -f config.h || ../../platforms/unix/config/configure \
test -f config.h || ../../../platforms/unix/config/configure \
--with-src=spurstacksrc --with-plugins=src/plugins --disable-cogit \
--without-vm-display-fbdev --without-npsqueak \
CC="gcc -m32" \
CFLAGS="-g $OPT -msse2 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -DNDEBUG -DITIMER_HEARTBEAT=1 -DDEBUGVM=0" \
LIBS="-lpthread -luuid" \
LDFLAGS=-Wl,-z,now
../../scripts/nukeversion
../../../scripts/nukeversion
rm -rf ../../../products/$INSTALLDIR
# would prefer make install prefix=`readlink -f \`pwd\`/../../products/$INSTALLDIR`
# but older linux readlinks lack the -f flag
Expand Down

0 comments on commit 92ced14

Please sign in to comment.