public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug bootstrap/53731] New: [4.7] Bootstrap fails for libgfortran on Solaris 10 x86 with error "Where has __float128 gone?"
@ 2012-06-20 12:05 windward at gmx dot com
  2012-06-26  8:54 ` [Bug bootstrap/53731] " windward at gmx dot com
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: windward at gmx dot com @ 2012-06-20 12:05 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53731

             Bug #: 53731
           Summary: [4.7] Bootstrap fails for libgfortran on Solaris 10
                    x86 with error "Where has __float128 gone?"
    Classification: Unclassified
           Product: gcc
           Version: 4.7.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: bootstrap
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: windward@gmx.com


Created attachment 27665
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=27665
Details

GCC 4.7.1 fails to bootstrap on Solaris 10 due to a linker / multilib problem
affecting the configure script.

In file included from ./kinds.h:75:0,
                 from
/opt/SP/build/gcc/gcc-4.7.1/libgfortran/libgfortran.h:232,
                 from /opt/SP/build/gcc/gcc-4.7.1/libgfortran/fmain.c:4:
/opt/SP/build/gcc/gcc-4.7.1/libgfortran/kinds-override.h:40:5: error: #error
"Where has __float128 gone?"
gmake[6]: *** [fmain.lo] Error 1
gmake[6]: Leaving directory
`/opt/SP/build/gcc/gcc-4.7.1-build/i386-pc-solaris2.10/amd64/libgfortran'

Root cause is that the check for __float128 in the configure script fails since
the linker does not use the 64bit libgcc due to a wrong LD_LIBRARY_PATH
definition passed to the configure script (see attachment).

configure:24967: checking whether we have a usable __float128 type
configure:25054: /opt/SP/build/gcc/gcc-4.7.1-build/./gcc/xgcc
-B/opt/SP/build/gcc/gcc-4.7.1-build/./gcc/ -B/opt/SP/gcc/g
cc-4.7.1/i386-pc-solaris2.10/bin/
-B/opt/SP/gcc/gcc-4.7.1/i386-pc-solaris2.10/lib/ -isystem
/opt/SP/gcc/gcc-4.7.1/i386-p
c-solaris2.10/include -isystem
/opt/SP/gcc/gcc-4.7.1/i386-pc-solaris2.10/sys-include  -m64 -o conftest
-std=gnu99 -g -O2
 -march=core2 -mfpmath=sse -msse3 -mno-ssse3 -mno-avx
-I/opt/SP/gcc/gcc-4.7.1/include -I/opt/SP/gcc/current/include -I/u
sr/sfw/include   conftest.c  >&5
ld: warning: file
/opt/SP/gcc/current/lib/gcc/platform/current//libgcc.a(_divtc3.o): wrong ELF
class: ELFCLASS32
Undefined                       first referenced
 symbol                             in file
__divtc3                            /var/tmp//cc6TdICW.o
__divtf3                            /var/tmp//cc6TdICW.o
__multf3                            /var/tmp//cc6TdICW.o
ld: fatal: Symbol referencing errors. No output written to conftest
collect2: error: ld returned 1 exit status


One workaround is to add MULTISUBDIR to the HOST_LIB_PATH_gcc in the Makefile.
I patched ./Makefile.in and the build works, although I don't know if this is
the right way to achieve this...

@@ -629,7 +629,7 @@ HOST_LIB_PATH = $(HOST_LIB_PATH_bfd)$(HO

 # Define HOST_LIB_PATH_gcc here, for the sake of TARGET_LIB_PATH, ouch
 @if gcc
-HOST_LIB_PATH_gcc =
$$r/$(HOST_SUBDIR)/gcc$(MULTISUBDIR)$(GCC_SHLIB_SUBDIR):$$r/$(HOST_SUBDIR)/prev-gcc$(MULTISUBDIR)$(GCC_SHLIB_SUBDIR):
+HOST_LIB_PATH_gcc =
$$r/$(HOST_SUBDIR)/gcc$(GCC_SHLIB_SUBDIR):$$r/$(HOST_SUBDIR)/prev-gcc$(GCC_SHLIB_SUBDIR):
 @endif gcc


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

* [Bug bootstrap/53731] [4.7] Bootstrap fails for libgfortran on Solaris 10 x86 with error "Where has __float128 gone?"
  2012-06-20 12:05 [Bug bootstrap/53731] New: [4.7] Bootstrap fails for libgfortran on Solaris 10 x86 with error "Where has __float128 gone?" windward at gmx dot com
@ 2012-06-26  8:54 ` windward at gmx dot com
  2012-06-28 14:15 ` windward at gmx dot com
  2013-02-21 10:53 ` windward at gmx dot com
  2 siblings, 0 replies; 4+ messages in thread
From: windward at gmx dot com @ 2012-06-26  8:54 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53731

Martin <windward at gmx dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Severity|normal                      |major


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

* [Bug bootstrap/53731] [4.7] Bootstrap fails for libgfortran on Solaris 10 x86 with error "Where has __float128 gone?"
  2012-06-20 12:05 [Bug bootstrap/53731] New: [4.7] Bootstrap fails for libgfortran on Solaris 10 x86 with error "Where has __float128 gone?" windward at gmx dot com
  2012-06-26  8:54 ` [Bug bootstrap/53731] " windward at gmx dot com
@ 2012-06-28 14:15 ` windward at gmx dot com
  2013-02-21 10:53 ` windward at gmx dot com
  2 siblings, 0 replies; 4+ messages in thread
From: windward at gmx dot com @ 2012-06-28 14:15 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53731

--- Comment #1 from Martin <windward at gmx dot com> 2012-06-28 14:14:49 UTC ---
Just realized the diff output is in the wrong order, sorry.


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

* [Bug bootstrap/53731] [4.7] Bootstrap fails for libgfortran on Solaris 10 x86 with error "Where has __float128 gone?"
  2012-06-20 12:05 [Bug bootstrap/53731] New: [4.7] Bootstrap fails for libgfortran on Solaris 10 x86 with error "Where has __float128 gone?" windward at gmx dot com
  2012-06-26  8:54 ` [Bug bootstrap/53731] " windward at gmx dot com
  2012-06-28 14:15 ` windward at gmx dot com
@ 2013-02-21 10:53 ` windward at gmx dot com
  2 siblings, 0 replies; 4+ messages in thread
From: windward at gmx dot com @ 2013-02-21 10:53 UTC (permalink / raw)
  To: gcc-bugs


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53731

Martin <windward at gmx dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Version|4.7.1                       |4.7.2

--- Comment #2 from Martin <windward at gmx dot com> 2013-02-21 10:53:07 UTC ---
Ping?
Bug still exists in 4.7.2, workaround stays the same:

--- gcc-4.7.2_unpatched/Makefile.tpl    2012-08-06 16:34:27.000000000 +0200
+++ gcc-4.7.2_patched/Makefile.tpl      2013-02-21 12:11:44.817759549 +0100
@@ -555,7 +555,7 @@ HOST_LIB_PATH = [+ FOR host_modules +][+

 # Define HOST_LIB_PATH_gcc here, for the sake of TARGET_LIB_PATH, ouch
 @if gcc
-HOST_LIB_PATH_gcc =
$$r/$(HOST_SUBDIR)/gcc$(GCC_SHLIB_SUBDIR):$$r/$(HOST_SUBDIR)/prev-gcc$(GCC_SHLIB_SUBDIR):
+HOST_LIB_PATH_gcc =
$$r/$(HOST_SUBDIR)/gcc$(MULTISUBDIR)$(GCC_SHLIB_SUBDIR):$$r/$(HOST_SUBDIR)/prev-gcc$(MULTISUBDIR)$(GCC_SHLIB_SUBDIR):
 @endif gcc

 [+ FOR host_modules +][+ IF lib_path +]


--- gcc-4.7.2_unpatched/Makefile.in     2012-08-06 16:34:27.000000000 +0200
+++ gcc-4.7.2_patched/Makefile.in       2013-02-21 12:11:44.817793304 +0100
@@ -629,7 +629,7 @@ HOST_LIB_PATH = $(HOST_LIB_PATH_bfd)$(HO

 # Define HOST_LIB_PATH_gcc here, for the sake of TARGET_LIB_PATH, ouch
 @if gcc
-HOST_LIB_PATH_gcc =
$$r/$(HOST_SUBDIR)/gcc$(GCC_SHLIB_SUBDIR):$$r/$(HOST_SUBDIR)/prev-gcc$(GCC_SHLIB_SUBDIR):
+HOST_LIB_PATH_gcc =
$$r/$(HOST_SUBDIR)/gcc$(MULTISUBDIR)$(GCC_SHLIB_SUBDIR):$$r/$(HOST_SUBDIR)/prev-gcc$(MULTISUBDIR)$(GCC_SHLIB_SUBDIR):
 @endif gcc


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

end of thread, other threads:[~2013-02-21 10:53 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-06-20 12:05 [Bug bootstrap/53731] New: [4.7] Bootstrap fails for libgfortran on Solaris 10 x86 with error "Where has __float128 gone?" windward at gmx dot com
2012-06-26  8:54 ` [Bug bootstrap/53731] " windward at gmx dot com
2012-06-28 14:15 ` windward at gmx dot com
2013-02-21 10:53 ` windward at gmx 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).