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 ...@@ -11,19 +11,29 @@ esac
set -e set -e
set -x set -x
docompile4() { docompile5() {
mkdir test1 mkdir test1
cd test1 cd test1
$SRCPATH/src/configure --cache-file ../testcache $SRCPATH/src/configure --cache-file ../testcache
d="DEBUGDEF=$1"
make "$d" # Modify makefile to simplify debugging...
make verify "$d" mv Makefile Makefile.orig
make verify LPCOPTS=-d2 "$d" sed <Makefile.orig >Makefile "s/^DEBUGDEF=.*$/DEBUGDEF=$1/g"
# make verify LPCOPTS=-d99 "$d"
make
make verify
make verify LPCOPTS=-d2
# make verify LPCOPTS=-d99
cd .. cd ..
rm -rf test1 rm -rf test1
} }
docompile4() {
docompile5 "$1"
# docompile5 "$1 -DDYNAMIC_STACK"
# docompile5 "$1 -DDYNAMIC_STACK -DREALLOC_STACK_ALWAYS"
}
docompile3() { docompile3() {
docompile4 "$1" docompile4 "$1"
docompile4 "$1 -DFLAT_MAPPINGS" 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