summaryrefslogtreecommitdiff
path: root/gnu/lib
Commit message (Collapse)AuthorAgeFilesLines
* Upgrade to 4.3Andrey A. Chernov2003-08-313-16/+68
| | | | Notes: svn path=/head/; revision=119616
* Stage 3 of dynamic root support. Make all the libraries needed to runGordon Tetlow2003-08-171-0/+1
| | | | | | | | | binaries in /bin and /sbin installed in /lib. Only the versioned files reside in /lib, the .so symlink continues to live /usr/lib so the toolchain doesn't need to be modified. Notes: svn path=/head/; revision=119017
* Remove collate_range_cmp() stabilization, it conflicts with rangesAndrey A. Chernov2003-08-031-7/+4
| | | | Notes: svn path=/head/; revision=118375
* Including dynamically generated osreldate.h wasn't such a goodAlexander Kabaev2003-07-131-0/+1
| | | | | | | | | | | idea after all. Fix cross-builds and ia64 builds. gnu/lib/csu/Makefile is modified to pre-include osreldate.h and gnu/usr.bin/cc/cc_tools/auto-host.h will avoid including sys/param.h if __FreeBSD_version is already defined. Notes: svn path=/head/; revision=117496
* Update bmake bits to build GCC 3.3.1-prerelease.Alexander Kabaev2003-07-112-31/+43
| | | | Notes: svn path=/head/; revision=117429
* Update for GCC 3.3.1-pre.Alexander Kabaev2003-07-112-24/+96
| | | | Notes: svn path=/head/; revision=117428
* Add unwind-c.c file required for -fexceptions in C sources.Alexander Kabaev2003-07-111-2/+2
| | | | Notes: svn path=/head/; revision=117425
* Change CFLAGS to more closely follow options used when GCC is builtAlexander Kabaev2003-07-111-1/+2
| | | | | | | from stock FSF sources. Notes: svn path=/head/; revision=117424
* Catch up with bsd.lib.mk,v 1.143.Ruslan Ermilov2003-06-302-19/+0
| | | | Notes: svn path=/head/; revision=117082
* Oops, remove hack to stop libstdc++.so being built now that gcc usesPeter Wemm2003-06-261-5/+0
| | | | | | | -lgcc_pic by default on -fpic stuff. I forgot about this here. Notes: svn path=/head/; revision=116858
* Do not bogusly set CSTD to the empty string.Dag-Erling Smørgrav2003-06-142-2/+0
| | | | Notes: svn path=/head/; revision=116335
* Build/install the PIC version of libgcc (libcc_pic.a) for use by sharedPeter Wemm2003-06-131-0/+3
| | | | | | | libraries that do exception unwinding. Notes: svn path=/head/; revision=116318
* The .Fn functionPhilippe Charnier2003-06-081-30/+60
| | | | Notes: svn path=/head/; revision=116020
* Something funky is going on here... disabling CSTD makes it go away...David E. O'Brien2003-06-021-0/+1
| | | | Notes: svn path=/head/; revision=115680
* Don't set a C standard level for ObjC code.David E. O'Brien2003-06-021-0/+1
| | | | Notes: svn path=/head/; revision=115664
* Use ?= before someone brings it up.David E. O'Brien2003-06-021-1/+1
| | | | Notes: svn path=/head/; revision=115663
* crtstuff needs isn't compilable with C99 on Sparc64, so set CSTD to gnu89.David E. O'Brien2003-06-011-0/+1
| | | | Notes: svn path=/head/; revision=115646
* libstdc++.so breaks on amd64 due to bogons in our build, so prevent thePeter Wemm2003-05-241-0/+5
| | | | | | | | | | | | | | | | | shared library being built for amd64. The problem is that libstdc++.so is produced with 'cc -shared'. This has an internal -lgcc, which is not PIC. libstdc++.so uses exceptions and the dwarf2 unwinder, which are in libgcc.a. As a result, non-PIC code gets pulled into libstdc++.so. This is fatal on amd64 when certain relocation types cannot be used in PIC mode. The official FSF solution to this is to have libgcc.so with internal ELF symbol versioning to solve the ABI problem, but I dont want to fight that battle yet. I tried making libgcc_pic.a (which worked fine), but thats not something for the 11th hour before a release. Approved by: re (amd64 "safe" stuff) Notes: svn path=/head/; revision=115287
* Use __FBSDID over rcsid[].David E. O'Brien2003-05-0332-80/+86
| | | | Notes: svn path=/head/; revision=114603
* This is WARNS=2 clean.David E. O'Brien2003-05-031-0/+1
| | | | Notes: svn path=/head/; revision=114602
* Enable wchar_t support in libstdc++.Alexander Kabaev2003-04-292-2/+2
| | | | Notes: svn path=/head/; revision=114234
* Enable ISO-C99 compatibility -- among other things, this tells libstdc++David E. O'Brien2003-04-252-9/+9
| | | | | | | | | | not to blindly undef isnan() and other functions that became macros in C99. Enable use of newly grown C99 functions: strtof(), strtold(), wcstof() Submitted by: das Notes: svn path=/head/; revision=114037
* Forced non-forced commit by adding a comment mentioning what theMarcel Moolenaar2003-03-171-0/+1
| | | | | | | | previous commit log should have mentioned: PR: ia64/49081 Notes: svn path=/head/; revision=112327
* libobjc is linked against shared objects and since we don't have aMarcel Moolenaar2003-03-161-0/+4
| | | | | | | | | | | | | | | | | | | | | shared object of libobjc, we end up linking in from the archive version. This is wrong, because we don't compile the archive version suitable for inclusion in shared objects. On ia64 this causes actual breakages. Compile the archive version with PIC on ia64 to avoid the breakage there and also to avoid changing the status quo on other architectures. If other architectures have the same problem, we probably should start building a shared library. There's no indication however that other architectures actually need it. Building the archive version with PIC on ia64 does pessimize linking complete binaries (ie fully archive), but we don't use Objective-C ourselves and so far I haven't seen non-shared executables written in Objective-C, so I'm sure this will be nothing but academic. Trigger case: ports/lang/gnustep-base Notes: svn path=/head/; revision=112324
* Only cross-tools may use TARGET_ARCH/TARGET, everyone elseRuslan Ermilov2003-02-271-3/+3
| | | | | | | should use the normal MACHINE_ARCH/MACHINE instead. Notes: svn path=/head/; revision=111608
* Update for GCC 3.2.2Alexander Kabaev2003-02-192-11/+17
| | | | Notes: svn path=/head/; revision=111116
* Install one more header file which is new with GCC 3.2.2.Alexander Kabaev2003-02-101-0/+1
| | | | Notes: svn path=/head/; revision=110632
* C++ exceptions with shared libraries are working on sparc64 now.Alexander Kabaev2002-12-051-2/+0
| | | | | | | | | Build shared libstdc++so on sparc64 platform too. Approved: re (rwatson) Notes: svn path=/head/; revision=107639
* Update for Gcc 3.2.1 release.David E. O'Brien2002-12-042-80/+125
| | | | | | | We also have more wide char support in libc now. Notes: svn path=/head/; revision=107615
* Remove files no longer part of the gcc_3_2_anoncvs_20021009 libstdc++.David E. O'Brien2002-11-271-1/+1
| | | | | | | Approved by: re(jhb) Notes: svn path=/head/; revision=107331
* Build Objective-C runtime support library with thr-posix.c.Alexander Kabaev2002-10-301-1/+1
| | | | | | | | Submitted by: davidc Requested by: obrien Notes: svn path=/head/; revision=106213
* Disallow libdialog to be used in setugid applications; it is chock fullKris Kennaway2002-10-121-0/+8
| | | | | | | | | of buffer overflows. MFC after: 3 days Notes: svn path=/head/; revision=104997
* Zap now-unused SHLIB_MINORPeter Wemm2002-09-286-6/+0
| | | | Notes: svn path=/head/; revision=104073
* Avoid linting GNU contrib'ed stuff, even if the build engineer askedMark Murray2002-09-252-0/+5
| | | | | | | for it (via WANT_LINT). It's Just Too Noisy. Notes: svn path=/head/; revision=103959
* Bmake bits for GCC 3.2.1-prerelease libstdc++.Alexander Kabaev2002-09-171-2/+3
| | | | | | | | | Connect two new source and one header file to the build. Approved by: obrien Notes: svn path=/head/; revision=103456
* Initiate deorbit burn for the i386-only a.out related support. Moves arePeter Wemm2002-09-172-13/+0
| | | | | | | | | | | | | | | | | | under way to move the remnants of the a.out toolchain to ports. As the comment in src/Makefile said, this stuff is deprecated and one should not expect this to remain beyond 4.0-REL. It has already lasted WAY beyond that. Notable exceptions: gcc - I have not touched the a.out generation stuff there. ldd/ldconfig - still have some code to interface with a.out rtld. old as/ld/etc - I have not removed these yet, pending their move to ports. some includes - necessary for ldd/ldconfig for now. Tested on: i386 (extensively), alpha Notes: svn path=/head/; revision=103436
* Quiet another annoying warning.Garrett Wollman2002-09-091-0/+1
| | | | Notes: svn path=/head/; revision=103140
* Connect new files added with GCC 3.2.1 import to the build.Alexander Kabaev2002-09-011-2/+3
| | | | | | | Approved by: obrien Notes: svn path=/head/; revision=102806
* Drop support for COPY, -c has been the default mode of install(1)Ruslan Ermilov2002-07-292-2/+2
| | | | | | | | | for a long time now. Approved by: bde Notes: svn path=/head/; revision=100872
* s/${INSTALL} -c/${INSTALL} ${COPY}/Ruslan Ermilov2002-07-181-1/+1
| | | | Notes: svn path=/head/; revision=100313
* Bandaid for sparc64. Do not build libstdc++.so for now on sparc64.Peter Wemm2002-07-081-0/+2
| | | | | | | Binaries compiled with it segfault. Notes: svn path=/head/; revision=99584
* Disconnect the docs until we figure out if there are any with v3.David E. O'Brien2002-06-191-1/+1
| | | | Notes: svn path=/head/; revision=98413
* In addition to exiting the dialog via ESC, the user could also haveDoug Barton2002-06-131-1/+1
| | | | | | | | exited via \r, \n, or ' ' (space); all of which are valid, non-error responses. Notes: svn path=/head/; revision=98195
* Use POSIX macros for wait(2)-style status information instead of theMike Barcroft2002-06-031-3/+2
| | | | | | | | deprecated 4.2/4.3BSD wait union. Fix some nearby pid_t/int confusion. Notes: svn path=/head/; revision=97788
* Turn on the math function stub stubs.David E. O'Brien2002-06-021-1/+1
| | | | | | | | Submitted by: Martin Blapp <mb@imp.ch> I believe OK with: peter Notes: svn path=/head/; revision=97745
* The new bsd.incs.mk is powerful enough to handle this wrinkle.Ruslan Ermilov2002-05-318-212/+99
| | | | Notes: svn path=/head/; revision=97657
* Add used includes of <stdlib.h>.Garrett Wollman2002-05-302-0/+3
| | | | Notes: svn path=/head/; revision=97623
* Tweak so that .o's are written into src/contrib/gccDavid E. O'Brien2002-05-291-2/+2
| | | | Notes: svn path=/head/; revision=97523
* Build docs not out of libobc++.295David E. O'Brien2002-05-291-1/+1
| | | | Notes: svn path=/head/; revision=97517
* Add some build glue for libstdc++. I'm not a C++ person, but this seemsPeter Wemm2002-05-2912-173/+1422
| | | | | | | | | | | | to work at least for the non-hairy stuff. The main wrinkle here is that a whole mess of include files get installed and under different names. An earlier version of this built a shadow include tree first in the obj directory, but this depends on the 'make includes' functionality. More tweaking is certainly going to be needed. Notes: svn path=/head/; revision=97433