2005-06-08 20:08:13 -04:00
|
|
|
#!/bin/bash
|
|
|
|
|
2011-05-20 03:41:57 -04:00
|
|
|
if [ $# -lt 3 ]
|
|
|
|
then
|
2013-03-15 06:08:54 -04:00
|
|
|
echo "usage is: ${0##*/} <which makefile and other make options> <additional defines> <path to math provider>"
|
|
|
|
echo "e.g. \"${0##*/} \"makefile -j3\" \"-DUSE_LTM -DLTM_DESC -I/path/to/libtommath\" /path/to/libtommath/libtommath.a\""
|
2011-05-20 03:41:57 -04:00
|
|
|
exit -1
|
|
|
|
fi
|
|
|
|
|
2005-06-08 20:08:13 -04:00
|
|
|
# date
|
|
|
|
echo "date="`date`
|
|
|
|
|
|
|
|
# output version
|
2013-02-13 05:33:39 -05:00
|
|
|
version=$(git describe --tags --always --dirty 2>/dev/null)
|
|
|
|
if [ ! -e ".git" ] || [ -z $version ]
|
|
|
|
then
|
|
|
|
version=$(grep "^VERSION=" makefile | sed "s/.*=//")
|
|
|
|
fi
|
|
|
|
echo "Testing version:" $version
|
2005-06-08 20:08:13 -04:00
|
|
|
#grep "VERSION=" makefile | perl -e "@a = split('=', <>); print @a[1];"`
|
|
|
|
|
|
|
|
# get uname
|
|
|
|
echo "uname="`uname -a`
|
2005-08-01 12:36:47 -04:00
|
|
|
|
|
|
|
# get gcc name
|
|
|
|
echo "gcc="`gcc -dumpversion`
|
2005-06-08 20:08:13 -04:00
|
|
|
echo
|
|
|
|
|
|
|
|
# stock build
|
2005-08-01 12:36:47 -04:00
|
|
|
bash run.sh "STOCK" " " "$1" "$2" "$3" || exit 1
|
2005-06-08 20:08:13 -04:00
|
|
|
|
|
|
|
# SMALL code
|
2005-08-01 12:36:47 -04:00
|
|
|
bash run.sh "SMALL" "-DLTC_SMALL_CODE" "$1" "$2" "$3" || exit 1
|
2005-06-08 20:08:13 -04:00
|
|
|
|
|
|
|
# NOTABLES
|
2005-08-01 12:36:47 -04:00
|
|
|
bash run.sh "NOTABLES" "-DLTC_NO_TABLES" "$1" "$2" "$3" || exit 1
|
2005-06-08 20:08:13 -04:00
|
|
|
|
|
|
|
# SMALL+NOTABLES
|
2005-08-01 12:36:47 -04:00
|
|
|
bash run.sh "SMALL+NOTABLES" "-DLTC_SMALL_CODE -DLTC_NO_TABLES" "$1" "$2" "$3" || exit 1
|
2005-06-08 20:08:13 -04:00
|
|
|
|
|
|
|
# CLEANSTACK
|
2005-08-01 12:36:47 -04:00
|
|
|
bash run.sh "CLEANSTACK" "-DLTC_CLEAN_STACK" "$1" "$2" "$3" || exit 1
|
2005-06-08 20:08:13 -04:00
|
|
|
|
|
|
|
# CLEANSTACK + SMALL
|
2005-08-01 12:36:47 -04:00
|
|
|
bash run.sh "CLEANSTACK+SMALL" "-DLTC_SMALL_CODE -DLTC_CLEAN_STACK" "$1" "$2" "$3" || exit 1
|
2005-06-08 20:08:13 -04:00
|
|
|
|
|
|
|
# CLEANSTACK + NOTABLES
|
2005-08-01 12:36:47 -04:00
|
|
|
bash run.sh "CLEANSTACK+NOTABLES" "-DLTC_NO_TABLES -DLTC_CLEAN_STACK" "$1" "$2" "$3" || exit 1
|
2005-06-08 20:08:13 -04:00
|
|
|
|
|
|
|
# CLEANSTACK + NOTABLES + SMALL
|
2005-08-01 12:36:47 -04:00
|
|
|
bash run.sh "CLEANSTACK+NOTABLES+SMALL" "-DLTC_NO_TABLES -DLTC_CLEAN_STACK -DLTC_SMALL_CODE" "$1" "$2" "$3" || exit 1
|
2005-06-08 20:08:13 -04:00
|
|
|
|
|
|
|
# NO_FAST
|
2005-08-01 12:36:47 -04:00
|
|
|
bash run.sh "NO_FAST" "-DLTC_NO_FAST" "$1" "$2" "$3" || exit 1
|
2005-06-08 20:08:13 -04:00
|
|
|
|
2006-01-26 13:11:56 -05:00
|
|
|
# NO_FAST + NOTABLES
|
|
|
|
bash run.sh "NO_FAST+NOTABLES" "-DLTC_NO_FAST -DLTC_NO_TABLES" "$1" "$2" "$3" || exit 1
|
|
|
|
|
2005-06-08 20:08:13 -04:00
|
|
|
# NO_ASM
|
2005-08-01 12:36:47 -04:00
|
|
|
bash run.sh "NO_ASM" "-DLTC_NO_ASM" "$1" "$2" "$3" || exit 1
|
2005-06-08 20:08:13 -04:00
|
|
|
|
|
|
|
# test build with no testing
|
2005-08-01 12:36:47 -04:00
|
|
|
bash testbuild.sh "NOTEST" "-DLTC_NO_TEST" "$1" "$2" "$3" || exit 1
|
2005-06-08 20:08:13 -04:00
|
|
|
|
|
|
|
# test build with no file routines
|
2005-08-01 12:36:47 -04:00
|
|
|
bash testbuild.sh "NOFILE" "-DLTC_NO_FILE" "$1" "$2" "$3" || exit 1
|
2005-06-08 20:08:13 -04:00
|
|
|
|
2010-06-15 10:36:36 -04:00
|
|
|
# $Source$
|
|
|
|
# $Revision$
|
|
|
|
# $Date$
|