Skip to content
Snippets Groups Projects
Commit 42f10583 authored by Fredrik Hübinette (Hubbe)'s avatar Fredrik Hübinette (Hubbe)
Browse files

now modifies makefile

Rev: bin/metatest:1.3
parent b27b7cc5
No related branches found
No related tags found
No related merge requests found
......@@ -11,19 +11,29 @@ esac
set -e
set -x
docompile4() {
docompile5() {
mkdir test1
cd test1
$SRCPATH/src/configure --cache-file ../testcache
d="DEBUGDEF=$1"
make "$d"
make verify "$d"
make verify LPCOPTS=-d2 "$d"
# make verify LPCOPTS=-d99 "$d"
# Modify makefile to simplify debugging...
mv Makefile Makefile.orig
sed <Makefile.orig >Makefile "s/^DEBUGDEF=.*$/DEBUGDEF=$1/g"
make
make verify
make verify LPCOPTS=-d2
# make verify LPCOPTS=-d99
cd ..
rm -rf test1
}
docompile4() {
docompile5 "$1"
# docompile5 "$1 -DDYNAMIC_STACK"
# docompile5 "$1 -DDYNAMIC_STACK -DREALLOC_STACK_ALWAYS"
}
docompile3() {
docompile4 "$1"
docompile4 "$1 -DFLAT_MAPPINGS"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment