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

Side by Side Diff: gdb/configure.tgt

Issue 10365030: Configure gdb for nacl target (Closed) Base URL: http://git.chromium.org/native_client/nacl-gdb.git@nacl-stub
Patch Set: 80 symbols Created 8 years, 7 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
« bfd/config.bfd ('K') | « bfd/config.bfd ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Mappings from configurations to GDB target definitions. This is 1 # Mappings from configurations to GDB target definitions. This is
2 # invoked from the autoconf generated configure script. 2 # invoked from the autoconf generated configure script.
3 3
4 # This file sets the following shell variables: 4 # This file sets the following shell variables:
5 # gdb_target_obs target-specific object files to use 5 # gdb_target_obs target-specific object files to use
6 # gdb_sim simulator library for target 6 # gdb_sim simulator library for target
7 # gdb_osabi default OS ABI to use with target 7 # gdb_osabi default OS ABI to use with target
8 # build_gdbserver set to "yes" if gdbserver supports target 8 # build_gdbserver set to "yes" if gdbserver supports target
9 9
10 # NOTE: Every file added to a gdb_target_obs variable for any target here 10 # NOTE: Every file added to a gdb_target_obs variable for any target here
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after
217 # Target: Intel 386 running GNU/Linux 217 # Target: Intel 386 running GNU/Linux
218 gdb_target_obs="i386-tdep.o i386-linux-tdep.o glibc-tdep.o i387-tdep.o \ 218 gdb_target_obs="i386-tdep.o i386-linux-tdep.o glibc-tdep.o i387-tdep.o \
219 solib.o solib-svr4.o symfile-mem.o corelow.o \ 219 solib.o solib-svr4.o symfile-mem.o corelow.o \
220 linux-tdep.o linux-record.o" 220 linux-tdep.o linux-record.o"
221 if test "x$enable_64_bit_bfd" = "xyes"; then 221 if test "x$enable_64_bit_bfd" = "xyes"; then
222 # Target: GNU/Linux x86-64 222 # Target: GNU/Linux x86-64
223 gdb_target_obs="amd64-tdep.o amd64-linux-tdep.o ${gdb_target_obs}" 223 gdb_target_obs="amd64-tdep.o amd64-linux-tdep.o ${gdb_target_obs}"
224 fi 224 fi
225 build_gdbserver=yes 225 build_gdbserver=yes
226 ;; 226 ;;
227 *nacl*)
eaeltsin 2012/05/05 16:20:47 We need to be more specific here - imagine we want
halyavin 2012/05/10 08:21:42 Done.
228 # Target: NaCl, remote debugging only.
229 gdb_target_obs="i386-tdep.o glibc-tdep.o i387-tdep.o solib.o \
230 solib-svr4.o symfile-mem.o amd64-tdep.o"
231 ;;
227 i[34567]86-*-gnu*) 232 i[34567]86-*-gnu*)
228 # Target: Intel 386 running the GNU Hurd 233 # Target: Intel 386 running the GNU Hurd
229 gdb_target_obs="i386-tdep.o i387-tdep.o i386gnu-tdep.o \ 234 gdb_target_obs="i386-tdep.o i387-tdep.o i386gnu-tdep.o \
230 solib.o solib-svr4.o" 235 solib.o solib-svr4.o"
231 ;; 236 ;;
232 i[34567]86-*-cygwin*) 237 i[34567]86-*-cygwin*)
233 # Target: Intel 386 running win32 238 # Target: Intel 386 running win32
234 gdb_target_obs="i386-tdep.o i386-cygwin-tdep.o i387-tdep.o \ 239 gdb_target_obs="i386-tdep.o i386-cygwin-tdep.o i387-tdep.o \
235 solib-target.o corelow.o windows-tdep.o" 240 solib-target.o corelow.o windows-tdep.o"
236 build_gdbserver=yes 241 build_gdbserver=yes
(...skipping 424 matching lines...) Expand 10 before | Expand all | Expand 10 after
661 *-*-solaris*) gdb_osabi=GDB_OSABI_SOLARIS ;; 666 *-*-solaris*) gdb_osabi=GDB_OSABI_SOLARIS ;;
662 *-*-*-gnu*) ;; # prevent non-GNU kernels to match the Hurd rule below 667 *-*-*-gnu*) ;; # prevent non-GNU kernels to match the Hurd rule below
663 *-*-gnu*) gdb_osabi=GDB_OSABI_HURD ;; 668 *-*-gnu*) gdb_osabi=GDB_OSABI_HURD ;;
664 *-*-mingw32ce*) gdb_osabi=GDB_OSABI_WINCE ;; 669 *-*-mingw32ce*) gdb_osabi=GDB_OSABI_WINCE ;;
665 *-*-mingw* | *-*-cygwin*) 670 *-*-mingw* | *-*-cygwin*)
666 gdb_osabi=GDB_OSABI_CYGWIN ;; 671 gdb_osabi=GDB_OSABI_CYGWIN ;;
667 *-*-dicos*) gdb_osabi=GDB_OSABI_DICOS ;; 672 *-*-dicos*) gdb_osabi=GDB_OSABI_DICOS ;;
668 *-*-symbianelf*) 673 *-*-symbianelf*)
669 gdb_osabi=GDB_OSABI_SYMBIAN ;; 674 gdb_osabi=GDB_OSABI_SYMBIAN ;;
670 esac 675 esac
OLDNEW
« bfd/config.bfd ('K') | « bfd/config.bfd ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698