Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(304)

Side by Side Diff: gold/configure.tgt

Issue 10252012: [MIPS] Initial checkin for MIPS changes for GOLD. (Closed)
Patch Set: Updated MIPS code w/ SH_RELA. Created 8 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « gold/Makefile.in ('k') | gold/layout.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # configure.tgt -- target configuration for gold -*- sh -*- 1 # configure.tgt -- target configuration for gold -*- sh -*-
2 2
3 # Copyright 2006, 2007, 2008, 2009 Free Software Foundation, Inc. 3 # Copyright 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
4 # Written by Ian Lance Taylor <iant@google.com>. 4 # Written by Ian Lance Taylor <iant@google.com>.
5 5
6 # This file is part of gold. 6 # This file is part of gold.
7 7
8 # This program is free software; you can redistribute it and/or modify 8 # This program is free software; you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by 9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 3 of the License, or 10 # the Free Software Foundation; either version 3 of the License, or
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 targ_extra_big_endian=false 113 targ_extra_big_endian=false
114 ;; 114 ;;
115 arm*-*-*) 115 arm*-*-*)
116 targ_obj=arm 116 targ_obj=arm
117 targ_extra_obj=arm-reloc-property 117 targ_extra_obj=arm-reloc-property
118 targ_machine=EM_ARM 118 targ_machine=EM_ARM
119 targ_size=32 119 targ_size=32
120 targ_big_endian=false 120 targ_big_endian=false
121 # targ_extra_big_endian=true # @LOCALMOD: disable targets not used for pnacl 121 # targ_extra_big_endian=true # @LOCALMOD: disable targets not used for pnacl
122 ;; 122 ;;
123 mips*-*-*)
124 targ_obj=mips
125 targ_machine=EM_MIPS
126 targ_size=32
127 targ_big_endian=true
128 targ_extra_big_endian=false
129 ;;
130 mips*el*-*-*|mips*le*-*-*)
131 targ_obj=mips
132 targ_machine=EM_MIPS_RS3_LE
133 targ_size=32
134 targ_big_endian=false
135 targ_extra_big_endian=true
136 ;;
123 *) 137 *)
124 targ_obj=UNKNOWN 138 targ_obj=UNKNOWN
125 ;; 139 ;;
126 esac 140 esac
OLDNEW
« no previous file with comments | « gold/Makefile.in ('k') | gold/layout.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698