diff options
author | Walter Lee <walt@tilera.com> | 2012-09-15 17:11:28 +0000 |
---|---|---|
committer | Walter Lee <walt@tilera.com> | 2012-09-15 17:11:28 +0000 |
commit | 5c0b3823c66fbdf7f9d1ddbc395307b1793fd600 (patch) | |
tree | 9eab63950674e353fff309ff9f0b4c69b5a5b346 /gold/testsuite | |
parent | b132a67daa01d296540697e3632f162f6ba45170 (diff) | |
download | gdb-5c0b3823c66fbdf7f9d1ddbc395307b1793fd600.zip gdb-5c0b3823c66fbdf7f9d1ddbc395307b1793fd600.tar.gz gdb-5c0b3823c66fbdf7f9d1ddbc395307b1793fd600.tar.bz2 |
Add support for tilegx in gold.
* configure.ac (ENABLE_GOLD): support tilegx*
* configure: rebuild
elfcpp:
* tilegx.h: New file.
* elfcpp.h: add EM_TILEGX.
gold:
* tilegx.cc: New file.
* Makefile.am (TARGETSOURCES): Add tilegx.cc
(ALL_TARGETOBJS): Add tilegx.$(OBJEXT)
* configure.tgt: Add entries for tilegx*.
* configure.ac: Likewise.
* Makefile.in: Rebuild.
* configure: Likewise.
* testsuite/icf_safe_test.sh (arch_specific_safe_fold): Handle
tilegx.
Diffstat (limited to 'gold/testsuite')
-rwxr-xr-x | gold/testsuite/icf_safe_test.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gold/testsuite/icf_safe_test.sh b/gold/testsuite/icf_safe_test.sh index 74a7fb9..3b2795a 100755 --- a/gold/testsuite/icf_safe_test.sh +++ b/gold/testsuite/icf_safe_test.sh @@ -51,7 +51,7 @@ check_fold() arch_specific_safe_fold() { - grep_x86=`grep -q -e "Advanced Micro Devices X86-64" -e "Intel 80386" -e "ARM" $2` + grep_x86=`grep -q -e "Advanced Micro Devices X86-64" -e "Intel 80386" -e "ARM" -e "TILE" $2` if [ $? -eq 0 ]; then check_fold $1 $3 $4 |