Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2023-12-27 05:11:58 +0300
committerMike Frysinger <vapier@gentoo.org>2024-01-20 04:21:05 +0300
commit787b83bb9ba9f7508c9808a3acee64dda0140c94 (patch)
tree2885535a71de099f4b47dc85808b7da0c7f0005a /libgloss/configure.ac
parentf9047928083511340dca8b76afca00bc6e248c96 (diff)
libgloss: merge msp430 into top-level Makefile
Avoid a recursive make to speed things up a bit. A msp430-elf build shows installed objects & libs produce same code.
Diffstat (limited to 'libgloss/configure.ac')
-rw-r--r--libgloss/configure.ac7
1 files changed, 3 insertions, 4 deletions
diff --git a/libgloss/configure.ac b/libgloss/configure.ac
index 575565c6a..e1659d880 100644
--- a/libgloss/configure.ac
+++ b/libgloss/configure.ac
@@ -200,8 +200,7 @@ case "${target}" in
subdirs="$subdirs m32c"
;;
msp430-*-elf*)
- AC_CONFIG_FILES([msp430/Makefile])
- subdirs="$subdirs msp430"
+ config_msp430=true
config_libnosys=false
;;
rl78*-*-elf)
@@ -247,8 +246,8 @@ AC_SUBST(subdirs)
dnl These subdirs have converted to non-recursive make. Hopefully someday all
dnl the ports above will too!
m4_foreach_w([SUBDIR], [
- aarch64 arc arm bfin csky d30v i960 iq2000 libnosys lm32 moxie nios2 riscv
- v850 wince xtensa
+ aarch64 arc arm bfin csky d30v i960 iq2000 libnosys lm32 moxie msp430 nios2
+ riscv v850 wince xtensa
], [dnl
AM_CONDITIONAL([CONFIG_]m4_toupper(SUBDIR), [test x$config_]SUBDIR = xtrue)
])