mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-21 04:42:53 +08:00
d6d7ce5623
gdbserver/ * configure.srv: Add new files. * linux-aarch64-ipa.c (get_ipa_tdesc): Call aarch64_linux_read_description. * linux-aarch64-low.c (aarch64_linux_read_description): Merge with aarch64_arch_setup. (aarch64_arch_setup): Call aarch64_linux_read_description. * linux-aarch64-tdesc.c: New file. * linux-aarch64-tdesc.h: New file.
38 lines
1.2 KiB
C
38 lines
1.2 KiB
C
/* GNU/Linux/aarch64 specific target description, for the remote server
|
|
for GDB.
|
|
Copyright (C) 2017 Free Software Foundation, Inc.
|
|
|
|
This file is part of GDB.
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
|
|
|
#include "server.h"
|
|
#include "tdesc.h"
|
|
#include "arch/aarch64.h"
|
|
#include "linux-aarch32-low.h"
|
|
|
|
/* Create the aarch64 target description. */
|
|
|
|
const target_desc *
|
|
aarch64_linux_read_description ()
|
|
{
|
|
static target_desc *aarch64_tdesc = NULL;
|
|
target_desc **tdesc = &aarch64_tdesc;
|
|
|
|
if (*tdesc == NULL)
|
|
*tdesc = aarch64_create_target_description ();
|
|
|
|
return *tdesc;
|
|
}
|