This is the mail archive of the newlib-cvs@sourceware.org mailing list for the newlib 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]

[newlib-cygwin] Fix libgloss being built for disabled multilibs


https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=fa14f445ba1fb360fb5c4957798bf788345b0ef2

commit fa14f445ba1fb360fb5c4957798bf788345b0ef2
Author: Jozef Lawrynowicz <jozef.l@mittosystems.com>
Date:   Wed Oct 30 14:35:21 2019 +0000

    Fix libgloss being built for disabled multilibs
    
    Target libraries are considered to be built for GCC's "host", not GCC's
    "target".  The "host" variable must be set by configure scripts using
    "config-ml.in" to determine multilib support, otherwise disabled
    multilibs (specified as a configure argument with --disable-<multilib>)
    will still be built for the subdirectories those configure scripts
    reside in.

Diff:
---
 libgloss/configure    | 1 +
 libgloss/configure.in | 1 +
 2 files changed, 2 insertions(+)

diff --git a/libgloss/configure b/libgloss/configure
index eb116b5..6c592b1 100755
--- a/libgloss/configure
+++ b/libgloss/configure
@@ -3883,6 +3883,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"
 srcdir=${srcdir}
 target=${target}
+host=${host}
 with_multisubdir=${with_multisubdir}
 ac_configure_args="--enable-multilib ${ac_configure_args}"
 CONFIG_SHELL=${CONFIG_SHELL-/bin/sh}
diff --git a/libgloss/configure.in b/libgloss/configure.in
index a681f23..16f413f 100644
--- a/libgloss/configure.in
+++ b/libgloss/configure.in
@@ -229,6 +229,7 @@ AC_CONFIG_FILES([Makefile],
 fi],
 srcdir=${srcdir}
 target=${target}
+host=${host}
 with_multisubdir=${with_multisubdir}
 ac_configure_args="--enable-multilib ${ac_configure_args}"
 CONFIG_SHELL=${CONFIG_SHELL-/bin/sh}


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