This is the mail archive of the gdb-cvs@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[binutils-gdb] Don't configure gdb for vxworks target


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=78836e904d99c7e167d19d1d5421e9c6fe07f18b

commit 78836e904d99c7e167d19d1d5421e9c6fe07f18b
Author: Yao Qi <yao.qi@linaro.org>
Date:   Thu Oct 20 11:33:07 2016 +0100

    Don't configure gdb for vxworks target
    
    VxWorks support was removed in 2004.
    
    commit e84ecc995d6a5e4e9114d3cea61717b8a573afb6
    Author: Andrew Cagney <cagney@redhat.com>
    Date:   Sat Nov 13 23:10:02 2004 +0000
    
        2004-11-13  Andrew Cagney  <cagney@gnu.org>
    
            * configure.tgt: Delete i[34567]86-*-vxworks*, m68*-netx-*,
            m68*-*-vxworks*, mips*-*-vxworks*, powerpc-*-vxworks*, and
            sparc-*-vxworks*.
            * NEWS: Mention that vxworks was deleted.
    
    This patch adds *-*-vxworks* in a list of targets GDB doesn't
    support.
    
    gdb:
    
    2016-10-20  Yao Qi  <yao.qi@linaro.org>
    
    	* configure.tgt: Don't configure if target is *-*-vxworks*.

Diff:
---
 gdb/ChangeLog     | 4 ++++
 gdb/configure.tgt | 1 +
 2 files changed, 5 insertions(+)

diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 7fc2b90..ab3f5d4 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,7 @@
+2016-10-20  Yao Qi  <yao.qi@linaro.org>
+
+	* configure.tgt: Don't configure if target is *-*-vxworks*.
+
 2016-10-19  Pedro Alves  <palves@redhat.com>
 
 	* config.in: Regenerate.
diff --git a/gdb/configure.tgt b/gdb/configure.tgt
index a64fe42..d428dff 100644
--- a/gdb/configure.tgt
+++ b/gdb/configure.tgt
@@ -26,6 +26,7 @@ case $targ in
  sh*-*-pe | \
  hppa*-*-hpux* | \
  ia64-*-hpux* | \
+ *-*-vxworks* | \
  null)
     echo "*** Configuration $targ is obsolete." >&2
     echo "*** Support has been REMOVED." >&2


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]