diff options
author | sje <sje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-06-02 17:12:16 +0000 |
---|---|---|
committer | sje <sje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-06-02 17:12:16 +0000 |
commit | 8ad38f2fe891f04aa05ae8ad1e0c139f1b20b576 (patch) | |
tree | c5597f2310f4f256698d91129727befc601a4e1a /contrib/test_installed | |
parent | 5b9761f58bf4e15d10c7c22918decda9ea9463ba (diff) | |
download | gcc-8ad38f2fe891f04aa05ae8ad1e0c139f1b20b576.tar.gz |
2015-06-02 Steve Ellcey <sellcey@imgtec.com>
* test_installed (--target=): New option.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@224034 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'contrib/test_installed')
-rwxr-xr-x | contrib/test_installed | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/contrib/test_installed b/contrib/test_installed index e518cbcf79e..54a8396bb46 100755 --- a/contrib/test_installed +++ b/contrib/test_installed @@ -46,7 +46,7 @@ while true; do case "$1" in --with-testsuite=*) testsuite=`echo "$1" | sed 's/[^=]*=//'`; shift;; --srcdir=*) srcdir=`echo "$1" | sed 's/[^=]*=//'`; shift;; - + --target=*) target=`echo "$1" | sed 's/[^=]*=//'`; shift;; --prefix=*) prefix=`echo "$1" | sed 's/[^=]*=//'`; shift;; --with-gcc=*) GCC_UNDER_TEST=`echo "$1" | sed 's/[^=]*=//'`; shift;; --with-g++=*) GXX_UNDER_TEST=`echo "$1" | sed 's/[^=]*=//'`; shift;; @@ -71,6 +71,9 @@ Supported arguments: --srcdir=/some/dir same as --with-testsuite=/some/dir/gcc/testsuite [deduced from shell-script pathname] +--target=triplet The target architecture of the compiler being + tested if different than the host. + --prefix=/some/dir use gcc, g++ and gfortran from /some/dir/bin [PATH] --with-gcc=/some/dir/bin/gcc use specified gcc program [gcc] --with-g++=/some/dir/bin/g++ use specified g++ program [g++] @@ -112,6 +115,10 @@ set GXX_UNDER_TEST "${GXX_UNDER_TEST-${prefix}${prefix+/bin/}g++}" set GFORTRAN_UNDER_TEST "${GFORTRAN_UNDER_TEST-${prefix}${prefix+/bin/}gfortran}" set OBJC_UNDER_TEST "${OBJC_UNDER_TEST-${prefix}${prefix+/bin/}gcc}" EOF +if test x${target} != x; then + echo "set target_triplet $target" >> site.exp + echo "set target_alias $target" >> site.exp +fi test x"${GCC_UNDER_TEST}" = x"no" || runtest --tool gcc ${1+"$@"} test x"${GXX_UNDER_TEST}" = x"no" || runtest --tool g++ ${1+"$@"} |