diff mbox

Disable gdb and sim builds for ARC in top-level configure.ac

Message ID 1466510310-2069-1-git-send-email-Anton.Kolesov@synopsys.com
State New
Headers show

Commit Message

Anton Kolesov June 21, 2016, 11:58 a.m. UTC
As of now GDB and sim cannot be built from upstream binutils-gdb repository,
so they should be disabled by default.

2016-06-21  Anton Kolesov  <anton.kolesov@synopsys.com>

	* configure.ac: Disable gdb and sim for ARC.
	* configure: Regenerate.
---
 configure    | 3 +++
 configure.ac | 3 +++
 2 files changed, 6 insertions(+)
diff mbox

Patch

diff --git a/configure b/configure
index ea63784..805fbe9 100755
--- a/configure
+++ b/configure
@@ -3756,6 +3756,9 @@  case "${target}" in
   sh*-*-pe|mips*-*-pe|*arm-wince-pe)
     noconfigdirs="$noconfigdirs tcl tk itcl libgui sim"
     ;;
+  arc*-*-*)
+    noconfigdirs="$noconfigdirs gdb sim"
+    ;;
   arm-*-pe*)
     noconfigdirs="$noconfigdirs target-libgloss"
     ;;
diff --git a/configure.ac b/configure.ac
index 54558df..04ed98e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1092,6 +1092,9 @@  case "${target}" in
   sh*-*-pe|mips*-*-pe|*arm-wince-pe)
     noconfigdirs="$noconfigdirs tcl tk itcl libgui sim"
     ;;
+  arc*-*-*)
+    noconfigdirs="$noconfigdirs gdb sim"
+    ;;
   arm-*-pe*)
     noconfigdirs="$noconfigdirs target-libgloss"
     ;;