public inbox for gcc-prs@sourceware.org
help / color / mirror / Atom feed
* Re: bootstrap/4113: 3.0.1 build dies in libstdc++-v3/include (various platforms)
@ 2001-08-24 14:04 ljrittle
  0 siblings, 0 replies; 2+ messages in thread
From: ljrittle @ 2001-08-24 14:04 UTC (permalink / raw)
  To: gcc-bugs, gcc-prs, nobody, partain

Synopsis: 3.0.1 build dies in libstdc++-v3/include (various platforms)

State-Changed-From-To: open->closed
State-Changed-By: ljrittle
State-Changed-When: Fri Aug 24 14:04:14 2001
State-Changed-Why:
    Added Will to PR4082 since it is the same root problem.
    
    BTW, libstdc++-v3 is documented as only configuring
    properly when srcdir!=objdir.  That appears to be the
    root cause of this problem.

http://gcc.gnu.org/cgi-bin/gnatsweb.pl?cmd=view&pr=4113&database=gcc


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

* bootstrap/4113: 3.0.1 build dies in libstdc++-v3/include (various platforms)
@ 2001-08-24  4:06 Will Partain
  0 siblings, 0 replies; 2+ messages in thread
From: Will Partain @ 2001-08-24  4:06 UTC (permalink / raw)
  To: gcc-gnats

>Number:         4113
>Category:       bootstrap
>Synopsis:       3.0.1 build dies in libstdc++-v3/include (various platforms)
>Confidential:   no
>Severity:       serious
>Priority:       medium
>Responsible:    unassigned
>State:          open
>Class:          sw-bug
>Submitter-Id:   net
>Arrival-Date:   Fri Aug 24 04:06:02 PDT 2001
>Closed-Date:
>Last-Modified:
>Originator:     Will Partain
>Release:        3.0.1
>Organization:
>Environment:
System: SunOS slicker 5.6 Generic_105181-25 sun4u sparc SUNW,Ultra-5_10
Architecture: sun4

	
host: sparc-sun-solaris2.6
build: sparc-sun-solaris2.6
target: sparc-sun-solaris2.6
configured with: ./configure --prefix=/.-ark-deploy/gcc--3.0.1 --enable-languages=c,c++ --disable-nls : (reconfigured) ./configure --prefix=/.-ark-deploy/gcc--3.0.1 --enable-languages=c,c++ --disable-nls
>Description:
	'make bootstrap' fails in libstdc++-v3/include, because
	of a file-not-found problem (see diffs below).  It
	*may* be something about my local environment, but it is
	less than obvious what that might be.
>How-To-Repeat:
	
>Fix:
	This patch works for me.

diff -ru2 ../gcc-3.0.1/libstdc++-v3/include/Makefile.am ./libstdc++-v3/include/Makefile.am
--- ../gcc-3.0.1/libstdc++-v3/include/Makefile.am	Sat Aug 18 06:03:40 2001
+++ ./libstdc++-v3/include/Makefile.am	Fri Aug 24 09:54:52 2001
@@ -400,10 +400,10 @@
 	sed -e '/^#/s/\(${uppercase}${uppercase}*\)/_GLIBCPP_\1/g' \
 	    -e 's,^#include "\(.*\)",#include <bits/\1>,g' \
-	    < ${glibcpp_srcdir}/../gcc/gthr.h > $@
+	    < ${glibcpp_srcdir}/../../gcc/gthr.h > $@
 
 ${thread_builddir}/gthr-single.h:
 	sed -e 's/\(UNUSED\)/_GLIBCPP_\1/g' \
 	    -e 's/\(GCC${uppercase}*_H\)/_GLIBCPP_\1/g' \
-	    < ${glibcpp_srcdir}/../gcc/gthr-single.h > $@
+	    < ${glibcpp_srcdir}/../../gcc/gthr-single.h > $@
 
 ${thread_builddir}/gthr-default.h:
@@ -411,5 +411,5 @@
 	    -e 's/\(GCC${uppercase}*_H\)/_GLIBCPP_\1/g' \
 	    -e 's/\(${uppercase}*WEAK\)/_GLIBCPP_\1/g' \
-	    < ${glibcpp_srcdir}/../gcc/${glibcpp_thread_h} > $@
+	    < ${glibcpp_srcdir}/../../gcc/${glibcpp_thread_h} > $@
 
 # One big happy istallation:  just copy everything from the build to the
diff -ru2 ../gcc-3.0.1/libstdc++-v3/include/Makefile.in ./libstdc++-v3/include/Makefile.in
--- ../gcc-3.0.1/libstdc++-v3/include/Makefile.in	Sat Aug 18 06:02:27 2001
+++ ./libstdc++-v3/include/Makefile.in	Fri Aug 24 09:54:52 2001
@@ -378,10 +378,10 @@
 	sed -e '/^#/s/\(${uppercase}${uppercase}*\)/_GLIBCPP_\1/g' \
 	    -e 's,^#include "\(.*\)",#include <bits/\1>,g' \
-	    < ${glibcpp_srcdir}/../gcc/gthr.h > $@
+	    < ${glibcpp_srcdir}/../../gcc/gthr.h > $@
 
 ${thread_builddir}/gthr-single.h:
 	sed -e 's/\(UNUSED\)/_GLIBCPP_\1/g' \
 	    -e 's/\(GCC${uppercase}*_H\)/_GLIBCPP_\1/g' \
-	    < ${glibcpp_srcdir}/../gcc/gthr-single.h > $@
+	    < ${glibcpp_srcdir}/../../gcc/gthr-single.h > $@
 
 ${thread_builddir}/gthr-default.h:
@@ -389,5 +389,5 @@
 	    -e 's/\(GCC${uppercase}*_H\)/_GLIBCPP_\1/g' \
 	    -e 's/\(${uppercase}*WEAK\)/_GLIBCPP_\1/g' \
-	    < ${glibcpp_srcdir}/../gcc/${glibcpp_thread_h} > $@
+	    < ${glibcpp_srcdir}/../../gcc/${glibcpp_thread_h} > $@
 
 install-data-local:
>Release-Note:
>Audit-Trail:
>Unformatted:


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

end of thread, other threads:[~2001-08-24 14:04 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2001-08-24 14:04 bootstrap/4113: 3.0.1 build dies in libstdc++-v3/include (various platforms) ljrittle
  -- strict thread matches above, loose matches on Subject: below --
2001-08-24  4:06 Will Partain

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