diff options
Diffstat (limited to 'gold/configure.tgt')
-rw-r--r-- | gold/configure.tgt | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/gold/configure.tgt b/gold/configure.tgt index b4ef376..de6d4f9 100644 --- a/gold/configure.tgt +++ b/gold/configure.tgt @@ -104,6 +104,20 @@ powerpc64-*) targ_big_endian=true targ_extra_big_endian=false ;; +armeb*-*-*|armbe*-*-*) + targ_obj=arm + targ_machine=EM_ARM + targ_size=32 + targ_big_endian=true + targ_extra_big_endian=false + ;; +arm*-*-*) + targ_obj=arm + targ_machine=EM_ARM + targ_size=32 + targ_big_endian=false + targ_extra_big_endian=true + ;; *) targ_obj=UNKNOWN ;; |