[PATCH] Disable gdb and sim builds for ARC in top-level configure.ac
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 * configure.ac: Disable gdb and sim for ARC. * configure: Regenerate. --- configure| 3 +++ configure.ac | 3 +++ 2 files changed, 6 insertions(+) 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" ;; -- 2.8.1
[PATCH] Disable sim build for ARC in top-level configure.ac
Hi, This disables "sim" build for ARC, otherwise it is required to pass --disable-sim to top-level configure. Anton 0001-Disable-sim-builds-for-ARC-in-top-level-configure.ac.patch Description: 0001-Disable-sim-builds-for-ARC-in-top-level-configure.ac.patch
[PATCH] Enable libgloss support for ARC in top-level configure.ac
ARC support has been added to libgloss in this patch to newlib repository: https://sourceware.org/git/?p=newlib-cygwin.git;a=commit;h=acdfcb0a0af54715bc37ed1c767bfe901b679357 2016-05-13 Anton Kolesov * configure.ac: Add ARC support to libgloss. * configure: Regenerate --- configure| 3 --- configure.ac | 3 --- 2 files changed, 6 deletions(-) diff --git a/configure b/configure index 24e5157..ea63784 100755 --- a/configure +++ b/configure @@ -3756,9 +3756,6 @@ case "${target}" in sh*-*-pe|mips*-*-pe|*arm-wince-pe) noconfigdirs="$noconfigdirs tcl tk itcl libgui sim" ;; - arc-*-*|arceb-*-*) -noconfigdirs="$noconfigdirs target-libgloss" -;; arm-*-pe*) noconfigdirs="$noconfigdirs target-libgloss" ;; diff --git a/configure.ac b/configure.ac index 20dfbb4..54558df 100644 --- a/configure.ac +++ b/configure.ac @@ -1092,9 +1092,6 @@ case "${target}" in sh*-*-pe|mips*-*-pe|*arm-wince-pe) noconfigdirs="$noconfigdirs tcl tk itcl libgui sim" ;; - arc-*-*|arceb-*-*) -noconfigdirs="$noconfigdirs target-libgloss" -;; arm-*-pe*) noconfigdirs="$noconfigdirs target-libgloss" ;; -- 2.8.1