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 06:39:05 +0300
committerMike Frysinger <vapier@gentoo.org>2024-01-20 04:26:52 +0300
commit56211d0e14fe5e97000884d21d003759f2906422 (patch)
tree00e8ffdeb403870216c93556bbcbcf5db117b5b4 /libgloss/configure.ac
parent20dcee2c2726c4a6698c04a6f210f42872c2fd79 (diff)
libgloss: merge i386 into top-level Makefile
Avoid a recursive make to speed things up a bit. A i386-elf build shows installed objects & libs produce same code other than a rename from cygmon-gmon.o & cygmon-salib.o to i386_libcygmon_a-*.o due to the use of custom CPPFLAGS in here.
Diffstat (limited to 'libgloss/configure.ac')
-rw-r--r--libgloss/configure.ac5
1 files changed, 2 insertions, 3 deletions
diff --git a/libgloss/configure.ac b/libgloss/configure.ac
index 1214e890a..0f768947c 100644
--- a/libgloss/configure.ac
+++ b/libgloss/configure.ac
@@ -63,8 +63,7 @@ case "${target}" in
config_testsuite=true
;;
i[[3456]]86-*-elf* | i[[3456]]86-*-coff*)
- AC_CONFIG_FILES([i386/Makefile])
- subdirs="$subdirs i386"
+ config_i386=true
;;
m32r-*-*)
AC_CONFIG_FILES([m32r/Makefile])
@@ -245,7 +244,7 @@ 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 frv i960 iq2000 libnosys lm32 moxie msp430
+ aarch64 arc arm bfin csky d30v frv i386 i960 iq2000 libnosys lm32 moxie msp430
nios2 riscv v850 wince xtensa
], [dnl
AM_CONDITIONAL([CONFIG_]m4_toupper(SUBDIR), [test x$config_]SUBDIR = xtrue)