Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 18 Nov 1996 14:43:51 +0100 (MET)
From:      cracauer@cons.org
To:        FreeBSD-gnats-submit@freebsd.org
Subject:   gnu/2050: gnu/libstdc++ files are in source tree, but don't make it into lib
Message-ID:  <199611181343.OAA28588@knight.cons.org>
Resent-Message-ID: <199611181350.FAA10291@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         2050
>Category:       gnu
>Synopsis:       libstdc++ missed three source files
>Confidential:   no
>Severity:       critical
>Priority:       high
>Responsible:    freebsd-bugs
>State:          open
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Mon Nov 18 05:50:09 PST 1996
>Last-Modified:
>Originator:     Martin Cracauer
>Organization:
private
>Release:        FreeBSD RELENG_2_2 and FreeBSD 3.0-current
>Environment:

FreeBSD RELENG_2_2 and FreeBSD 3.0-current

>Description:

the files from directory /usr/src/contrib/libg++/libstdc++/stl
should be included in /usr/lib/libstdc++.{a,so...},
but they are missing from the Makefile
/usr/src/gnu/lib/libstdc++/Makefile

As a reult, most application using the stl will not work. These
include the popular guavac JAVA compiler.

>How-To-Repeat:

Try to build guavac (a Java compiler) from ports.

>Fix:

Diff below. Remember, this is both for RELENG_2_2 and 3.0-current
	
===================================================================
RCS file: src/gnu/lib/libstdc++/Makefile,v
retrieving revision 1.1
diff -r1.1 Makefile
7c7
< .PATH:        ${GPPDIR}/libstdc++ ${GPPDIR}/libio ${GPPDIR}/libiberty
---
> .PATH:        ${GPPDIR}/libstdc++ ${GPPDIR}/libstdc++/stl ${GPPDIR}/libio ${GPPDIR}/libiberty
40c40
<       projectn.h set.h stack.h tempbuf.h tree.h vector.h
---
>       projectn.h set.h stack.h tempbuf.h tree.h vector.h
43c43,45
<       stdexcepti.cc cstdlibi.cc cmathi.cc
---
>       stdexcepti.cc cstdlibi.cc cmathi.cc \
>       random.cc tree.cc tempbuf.cc
>


>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199611181343.OAA28588>