aboutsummaryrefslogtreecommitdiff
path: root/gnu/lib/libstdc++
Commit message (Collapse)AuthorAgeFilesLines
* $Id$ -> $FreeBSD$Peter Wemm1999-08-291-1/+1
| | | | Notes: svn path=/stable/3/; revision=50569
* Switch to using ".So" as the extension for PIC object files ratherJohn Polstra1999-01-091-3/+3
| | | | | | | | | | | than ".so". The old extension conflicted with well-established naming conventions for dynamically loadable modules. The "clean" targets continue to remove ".so" files too, to deal with old systems. Notes: svn path=/head/; revision=42450
* Avoid using `ld -O' (as in bsd.lib.mk). `ld -O' seems to have caused onlyBruce Evans1998-12-271-7/+15
| | | | | | | | non-problems for elf -- `ld -elf -O foo.tmp -x -r foo' apparently puts the result in a.out so it has essentially no effect. Notes: svn path=/head/; revision=42093
* libg++ and libstdc++ also have internal calls to libm. Programs using thePeter Wemm1998-10-111-1/+4
| | | | | | | | | | | | | | | shared versions should not need to add -lm unless the program uses libm itself. Strictly speaking, libg++ depends on libstdc++, but libstdc++ has dynamic dependencies on some exception tables and binutils doesn't seem to like it when a secondary library has undefined references. It doesn't seem to care when -lstdc++ is added on the command line to ld though. Anyway, the c++ driver adds -lstdc++ explicitly, so that should be OK. c++ also adds -lm explicitly too, even though it wouldn't need to now. [except for statically linked binaries as .a files don't have an equivalent of automatic internal shared object dependencies.] Notes: svn path=/head/; revision=40204
* Get definition of va_list from <stdarg.h>.Doug Rabson1998-08-311-1/+2
| | | | Notes: svn path=/head/; revision=38695
* This was broken for ELF builds.Doug Rabson1998-04-301-1/+1
| | | | Notes: svn path=/head/; revision=35528
* Don't use beforedepend to complicate and break things. The usualBruce Evans1998-03-201-140/+65
| | | | | | | | | | | | | fix of putting generated source files in SRCS breaks many special cases (many dependencies had to be incomplete for ${.ALLSRC} not to give .h files that would break compiling with c++ -c). Reduce these special cases to the general case so that SRCS works normally and bsd.lib.mk handles most of the complications. Now we only have to duplicate rules from bsd.lib.mk to add special CFLAGS in some cases. Notes: svn path=/head/; revision=34707
* Don't add streambuf.cc to SRCS twice.Bruce Evans1998-02-251-2/+2
| | | | Notes: svn path=/head/; revision=33799
* _G_VTABLE_LABLE_PREFIX is different between ELF and a.outPeter Wemm1997-09-201-0/+6
| | | | | | | ('_vt.' vs '__vt$') Notes: svn path=/head/; revision=29637
* Add ${DESTDIR} in front of absolute paths.Satoshi Asami1997-05-231-2/+2
| | | | | | | Reviewed by: bde Notes: svn path=/head/; revision=26049
* Bye bye CPLUSPLUSLIB hack! It's not needed any more.John Polstra1997-05-061-2/+1
| | | | | | | | Don't merge this into -2.2 unless you understand the dependencies on c++rt0, bsd.lib.mk, and gcc -shared. I.e., let me do it. Notes: svn path=/head/; revision=25501
* Oops. Missed the Complex number add case of code generation.. :-]Peter Wemm1997-04-091-4/+4
| | | | | | | | | Fixes PR#3239. Submitted by: Takeshi WATANABE <watanabe@crayon.earth.s.kobe-u.ac.jp> Notes: svn path=/head/; revision=24749
* Revert $FreeBSD$ to $Id$Peter Wemm1997-02-221-1/+1
| | | | Notes: svn path=/head/; revision=22996
* Make the long-awaited change from $Id$ to $FreeBSD$Jordan K. Hubbard1997-01-141-1/+1
| | | | | | | | | | | This will make a number of things easier in the future, as well as (finally!) avoiding the Id-smashing problem which has plagued developers for so long. Boy, I'm glad we're not using sup anymore. This update would have been insane otherwise. Notes: svn path=/head/; revision=21673
* STL object files missing from libstdc++ - fix.Jordan K. Hubbard1996-11-151-2/+8
| | | | | | | | | | | | This closes PR#1975 and was on my TODO list, so I'm breaking my own "no more commits before I fly!" rule and taking care of this, since it was at the very top and Peter shamed me in to taking care of it. This is definitely a 2.2 candidate. Submitted-By: Mark Diekhans <markd@Grizzly.COM> Notes: svn path=/head/; revision=19786
* Initial shot at a bmakefile for libstdc++Peter Wemm1996-10-032-0/+364
Notes: svn path=/head/; revision=18666