X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=gold%2Fconfigure.tgt;h=a3cb34dafcbf3c63975e7e1e42a408b83d86e9fb;hb=0d5bbdb0e1d193fa6f6804f2620fbdfc950c57a4;hp=504de2f2353dbc8c03e1386b1abde9b9a8b9f3d8;hpb=5c0b3823c66fbdf7f9d1ddbc395307b1793fd600;p=deliverable%2Fbinutils-gdb.git diff --git a/gold/configure.tgt b/gold/configure.tgt index 504de2f235..a3cb34dafc 100644 --- a/gold/configure.tgt +++ b/gold/configure.tgt @@ -1,6 +1,6 @@ # configure.tgt -- target configuration for gold -*- sh -*- -# Copyright 2006, 2007, 2008, 2009 Free Software Foundation, Inc. +# Copyright (C) 2006-2015 Free Software Foundation, Inc. # Written by Ian Lance Taylor . # This file is part of gold. @@ -104,6 +104,14 @@ powerpc-*) targ_big_endian=true targ_extra_big_endian=false ;; +powerpcle-*) + targ_obj=powerpc + targ_machine=EM_PPC + targ_size=32 + targ_extra_size=64 + targ_big_endian=false + targ_extra_big_endian=true + ;; powerpc64-*) targ_obj=powerpc targ_machine=EM_PPC64 @@ -112,6 +120,14 @@ powerpc64-*) targ_big_endian=true targ_extra_big_endian=false ;; +powerpc64le-*) + targ_obj=powerpc + targ_machine=EM_PPC64 + targ_size=64 + targ_extra_size=32 + targ_big_endian=false + targ_extra_big_endian=true + ;; armeb*-*-*|armbe*-*-*) targ_obj=arm targ_extra_obj=arm-reloc-property @@ -128,6 +144,29 @@ arm*-*-*) targ_big_endian=false targ_extra_big_endian=true ;; +aarch64*-*) + targ_obj=aarch64 + targ_extra_obj=aarch64-reloc-property + targ_machine=EM_AARCH64 + targ_size=64 + targ_extra_size=32 + targ_big_endian=false + targ_extra_big_endian=true + ;; +mips*el*-*-*|mips*le*-*-*) + targ_obj=mips + targ_machine=EM_MIPS_RS3_LE + targ_size=32 + targ_big_endian=false + targ_extra_big_endian=true + ;; +mips*-*-*) + targ_obj=mips + targ_machine=EM_MIPS + targ_size=32 + targ_big_endian=true + targ_extra_big_endian=false + ;; *) targ_obj=UNKNOWN ;;