diff options
Diffstat (limited to 'gdb/arch/tic6x.c')
-rw-r--r-- | gdb/arch/tic6x.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gdb/arch/tic6x.c b/gdb/arch/tic6x.c index 680a794..5724305 100644 --- a/gdb/arch/tic6x.c +++ b/gdb/arch/tic6x.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2017-2024 Free Software Foundation, Inc. +/* Copyright (C) 2017-2025 Free Software Foundation, Inc. This file is part of GDB. @@ -16,6 +16,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ #include "gdbsupport/tdesc.h" +#include "gdbsupport/osabi.h" #include "tic6x.h" #include "../features/tic6x-core.c" @@ -30,7 +31,7 @@ tic6x_create_target_description (enum c6x_feature feature) target_desc_up tdesc = allocate_target_description (); set_tdesc_architecture (tdesc.get (), "tic6x"); - set_tdesc_osabi (tdesc.get (), "GNU/Linux"); + set_tdesc_osabi (tdesc.get (), GDB_OSABI_LINUX); long regnum = 0; |