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

[Bug build/14628] New: Inconsistent multi-arch setting


http://sourceware.org/bugzilla/show_bug.cgi?id=14628

             Bug #: 14628
           Summary: Inconsistent multi-arch setting
           Product: glibc
           Version: unspecified
            Status: NEW
          Severity: normal
          Priority: P2
         Component: build
        AssignedTo: unassigned@sourceware.org
        ReportedBy: hjl.tools@gmail.com
                CC: carlos@systemhalted.org
    Classification: Unclassified


When --enable-multi-arch isn't used, we get

# grep multi-arch config.make 
multi-arch = default
# grep USE_MULTIARCH config.h 
#define USE_MULTIARCH 1

due to

# If the assembler supports gnu_indirect_function symbol type and the
# architecture supports multi-arch, we enable multi-arch by default.
case $sysnames_add_ons$sysnames in
*"$multi_arch_d"*)
  ;;
*)
  test x"$multi_arch" = xdefault && multi_arch=no
  ;;
esac
if test x"$multi_arch" != xno; then 
  AC_DEFINE(USE_MULTIARCH)
fi
AC_SUBST(multi_arch)

in configure.in.

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.


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