diff options
author | schwenke@lmy003.wdf.sap.corp <> | 2005-05-18 15:28:51 +0200 |
---|---|---|
committer | schwenke@lmy003.wdf.sap.corp <> | 2005-05-18 15:28:51 +0200 |
commit | badfc2e4a9a39da7d288a9c09e999334074426ad (patch) | |
tree | a50d6ae3feda04b1a4bb88cd5065af45f9d6f092 /BUILD | |
parent | be4920cd813fdb5ce92897bfb710b43eaf189cac (diff) | |
download | mariadb-git-badfc2e4a9a39da7d288a9c09e999334074426ad.tar.gz |
new build scripts for SAP team
Diffstat (limited to 'BUILD')
-rwxr-xr-x | BUILD/compile-sap | 9 | ||||
-rwxr-xr-x | BUILD/compile-sap-debug | 9 |
2 files changed, 18 insertions, 0 deletions
diff --git a/BUILD/compile-sap b/BUILD/compile-sap new file mode 100755 index 00000000000..376afaf6f56 --- /dev/null +++ b/BUILD/compile-sap @@ -0,0 +1,9 @@ +#! /bin/sh + +path=`dirname $0` +. "$path/SETUP.sh" + +extra_flags="$pentium_cflags" +extra_configs="$pentium_configs --without-berkeley-db" + +. "$path/FINISH.sh" diff --git a/BUILD/compile-sap-debug b/BUILD/compile-sap-debug new file mode 100755 index 00000000000..d7e70f868cc --- /dev/null +++ b/BUILD/compile-sap-debug @@ -0,0 +1,9 @@ +#! /bin/sh + +path=`dirname $0` +. "$path/SETUP.sh" + +extra_flags="$pentium_cflags $debug_cflags" +extra_configs="$pentium_configs $debug_configs --without-berkeley-db $static_link" + +. "$path/FINISH.sh" |