public inbox for glibc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug build/14628] New: Inconsistent multi-arch setting
@ 2012-09-26 13:37 hjl.tools at gmail dot com
  2012-09-26 14:02 ` [Bug build/14628] " schwab@linux-m68k.org
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: hjl.tools at gmail dot com @ 2012-09-26 13:37 UTC (permalink / raw)
  To: glibc-bugs


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.


^ permalink raw reply	[flat|nested] 10+ messages in thread

* [Bug build/14628] Inconsistent multi-arch setting
  2012-09-26 13:37 [Bug build/14628] New: Inconsistent multi-arch setting hjl.tools at gmail dot com
@ 2012-09-26 14:02 ` schwab@linux-m68k.org
  2012-09-26 14:06 ` hjl.tools at gmail dot com
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: schwab@linux-m68k.org @ 2012-09-26 14:02 UTC (permalink / raw)
  To: glibc-bugs


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

--- Comment #1 from Andreas Schwab <schwab@linux-m68k.org> 2012-09-26 14:02:15 UTC ---
Which is wrong in which way?

-- 
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.


^ permalink raw reply	[flat|nested] 10+ messages in thread

* [Bug build/14628] Inconsistent multi-arch setting
  2012-09-26 13:37 [Bug build/14628] New: Inconsistent multi-arch setting hjl.tools at gmail dot com
  2012-09-26 14:02 ` [Bug build/14628] " schwab@linux-m68k.org
@ 2012-09-26 14:06 ` hjl.tools at gmail dot com
  2012-09-26 14:49 ` schwab@linux-m68k.org
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: hjl.tools at gmail dot com @ 2012-09-26 14:06 UTC (permalink / raw)
  To: glibc-bugs


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

--- Comment #2 from H.J. Lu <hjl.tools at gmail dot com> 2012-09-26 14:05:42 UTC ---
What does "default" mean? It it "yes" or "no"?

-- 
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.


^ permalink raw reply	[flat|nested] 10+ messages in thread

* [Bug build/14628] Inconsistent multi-arch setting
  2012-09-26 13:37 [Bug build/14628] New: Inconsistent multi-arch setting hjl.tools at gmail dot com
  2012-09-26 14:02 ` [Bug build/14628] " schwab@linux-m68k.org
  2012-09-26 14:06 ` hjl.tools at gmail dot com
@ 2012-09-26 14:49 ` schwab@linux-m68k.org
  2012-09-26 14:58 ` hjl.tools at gmail dot com
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: schwab@linux-m68k.org @ 2012-09-26 14:49 UTC (permalink / raw)
  To: glibc-bugs


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

--- Comment #3 from Andreas Schwab <schwab@linux-m68k.org> 2012-09-26 14:48:52 UTC ---
It is not no, which is all that matters.

-- 
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.


^ permalink raw reply	[flat|nested] 10+ messages in thread

* [Bug build/14628] Inconsistent multi-arch setting
  2012-09-26 13:37 [Bug build/14628] New: Inconsistent multi-arch setting hjl.tools at gmail dot com
                   ` (2 preceding siblings ...)
  2012-09-26 14:49 ` schwab@linux-m68k.org
@ 2012-09-26 14:58 ` hjl.tools at gmail dot com
  2012-09-26 15:10 ` schwab@linux-m68k.org
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: hjl.tools at gmail dot com @ 2012-09-26 14:58 UTC (permalink / raw)
  To: glibc-bugs


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

--- Comment #4 from H.J. Lu <hjl.tools at gmail dot com> 2012-09-26 14:57:55 UTC ---
(In reply to comment #3)
> It is not no, which is all that matters.

When multi-arch isn't supported for any reason, if
--enable-multi-arch nor --disable-multi-arch are used, you will get

multi-arch = default

in config.make.  Setting multi-arch to default doesn't tell if
multi-arch is used or not.

-- 
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.


^ permalink raw reply	[flat|nested] 10+ messages in thread

* [Bug build/14628] Inconsistent multi-arch setting
  2012-09-26 13:37 [Bug build/14628] New: Inconsistent multi-arch setting hjl.tools at gmail dot com
                   ` (3 preceding siblings ...)
  2012-09-26 14:58 ` hjl.tools at gmail dot com
@ 2012-09-26 15:10 ` schwab@linux-m68k.org
  2012-09-26 15:29 ` hjl.tools at gmail dot com
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: schwab@linux-m68k.org @ 2012-09-26 15:10 UTC (permalink / raw)
  To: glibc-bugs


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

--- Comment #5 from Andreas Schwab <schwab@linux-m68k.org> 2012-09-26 15:09:45 UTC ---
If muti-arch is not supported then it is set to no, always.

-- 
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.


^ permalink raw reply	[flat|nested] 10+ messages in thread

* [Bug build/14628] Inconsistent multi-arch setting
  2012-09-26 13:37 [Bug build/14628] New: Inconsistent multi-arch setting hjl.tools at gmail dot com
                   ` (4 preceding siblings ...)
  2012-09-26 15:10 ` schwab@linux-m68k.org
@ 2012-09-26 15:29 ` hjl.tools at gmail dot com
  2012-09-26 15:42 ` schwab@linux-m68k.org
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: hjl.tools at gmail dot com @ 2012-09-26 15:29 UTC (permalink / raw)
  To: glibc-bugs


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

--- Comment #6 from H.J. Lu <hjl.tools at gmail dot com> 2012-09-26 15:28:47 UTC ---
(In reply to comment #5)
> If muti-arch is not supported then it is set to no, always.

Then setting muti-arch to yes makes it more clear.

-- 
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.


^ permalink raw reply	[flat|nested] 10+ messages in thread

* [Bug build/14628] Inconsistent multi-arch setting
  2012-09-26 13:37 [Bug build/14628] New: Inconsistent multi-arch setting hjl.tools at gmail dot com
                   ` (5 preceding siblings ...)
  2012-09-26 15:29 ` hjl.tools at gmail dot com
@ 2012-09-26 15:42 ` schwab@linux-m68k.org
  2012-09-26 17:45 ` hjl.tools at gmail dot com
  2014-06-17  4:18 ` fweimer at redhat dot com
  8 siblings, 0 replies; 10+ messages in thread
From: schwab@linux-m68k.org @ 2012-09-26 15:42 UTC (permalink / raw)
  To: glibc-bugs


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

--- Comment #7 from Andreas Schwab <schwab@linux-m68k.org> 2012-09-26 15:42:25 UTC ---
No, it removes information.

-- 
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.


^ permalink raw reply	[flat|nested] 10+ messages in thread

* [Bug build/14628] Inconsistent multi-arch setting
  2012-09-26 13:37 [Bug build/14628] New: Inconsistent multi-arch setting hjl.tools at gmail dot com
                   ` (6 preceding siblings ...)
  2012-09-26 15:42 ` schwab@linux-m68k.org
@ 2012-09-26 17:45 ` hjl.tools at gmail dot com
  2014-06-17  4:18 ` fweimer at redhat dot com
  8 siblings, 0 replies; 10+ messages in thread
From: hjl.tools at gmail dot com @ 2012-09-26 17:45 UTC (permalink / raw)
  To: glibc-bugs


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

H.J. Lu <hjl.tools at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |INVALID

--- Comment #8 from H.J. Lu <hjl.tools at gmail dot com> 2012-09-26 17:44:59 UTC ---
Work as expected.

-- 
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.


^ permalink raw reply	[flat|nested] 10+ messages in thread

* [Bug build/14628] Inconsistent multi-arch setting
  2012-09-26 13:37 [Bug build/14628] New: Inconsistent multi-arch setting hjl.tools at gmail dot com
                   ` (7 preceding siblings ...)
  2012-09-26 17:45 ` hjl.tools at gmail dot com
@ 2014-06-17  4:18 ` fweimer at redhat dot com
  8 siblings, 0 replies; 10+ messages in thread
From: fweimer at redhat dot com @ 2014-06-17  4:18 UTC (permalink / raw)
  To: glibc-bugs

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

Florian Weimer <fweimer at redhat dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
              Flags|                            |security-

-- 
You are receiving this mail because:
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2014-06-17  4:18 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-09-26 13:37 [Bug build/14628] New: Inconsistent multi-arch setting hjl.tools at gmail dot com
2012-09-26 14:02 ` [Bug build/14628] " schwab@linux-m68k.org
2012-09-26 14:06 ` hjl.tools at gmail dot com
2012-09-26 14:49 ` schwab@linux-m68k.org
2012-09-26 14:58 ` hjl.tools at gmail dot com
2012-09-26 15:10 ` schwab@linux-m68k.org
2012-09-26 15:29 ` hjl.tools at gmail dot com
2012-09-26 15:42 ` schwab@linux-m68k.org
2012-09-26 17:45 ` hjl.tools at gmail dot com
2014-06-17  4:18 ` fweimer at redhat dot com

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).