summaryrefslogtreecommitdiffstats
path: root/gnu/lib/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* Add more SUBDIR_PARALLEL.bdrewery2015-10-151-0/+3
| | | | | MFC after: 3 weeks Sponsored by: EMC / Isilon Storage Division
* - Record dependencies of gdb/gdbtui/kgdb on binutils/lib{bfd,iberty,opcodes},marius2015-07-191-1/+1
| | | | | | | | fixing parallel builds. - Don't build gdb/gdbtui/kgdb or libreadline when MK_BINUTILS is "no" for obvious reasons. MFC after: 3 days
* ntp is now again libreadline free, so only build libreadline for gdbbapt2015-05-251-1/+1
|
* Unbreak build where WANT_GDB == "no', as libreadline is also used by ntpdc.markm2015-05-251-1/+1
|
* Only build libreadline if gdb is going to be builtbapt2015-05-181-1/+5
| | | | gdb is the only consumer of libreadline which is an INTERNALLIB
* Build libgcov only if we're building base system GCCemaste2015-05-181-2/+2
| | | | | | | | Clang uses compiler-rt for the code coverage runtime, and ports GCC provides its own libgcov. PR: 200203 (exp-run) Sponsored by: The FreeBSD Foundation
* Build libgomp only if we're also building base system GCCemaste2015-05-151-1/+5
| | | | | | | | | | | | | Clang's OpenMP support will emit Intel OpenMP API library calls, and will therefore require libiomp (or whatever name is settled on). An up-to-date version of libgomp is included in ports or pkg GCC. Thus, there is no reason to build base libgomp without base system GCC. PR: 199979 (exp-run) Reviewed by: pfg Relnotes: Yes Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D2459
* Make MK_GNUCXX mean "build the libstdc++ and libsupc++ libraries" andimp2014-07-101-1/+1
| | | | | | | nothing more. Force it to be "no" when MK_CXX is "no" to simplify usage. It no longer also means "build g++" since we no longer have a platform where that's interesting now that pc98 no longer needs clang and gcc, but not g++. pc98 now just uses clang after boot2 changes.
* Use src.opts.mk in preference to bsd.own.mk except where we need stuffimp2014-05-061-1/+1
| | | | from the latter.
* Add placeholder Kyuafiles for various top-level hierarchies.jmmv2014-04-211-0/+4
| | | | | | | | | | | | This change adds tests/ directories in the source tree to create various subdirectories in /usr/tests/ and to install placeholder Kyuafiles for them. the relevant hierarchies are: cddl, etc, games, gnu and secure. The reason for this is to simplify the addition of new test programs for utilities or libraries under any of these directories. Doing so on a case by case basis is unnecessary and is quite an obscure process.
* It is possible that MK_GNUCXX is "yes" but MK_CXX is "no" so make sureimp2014-04-011-1/+1
| | | | MK_CXX isn't "no" before building these libraries.
* On platforms where clang is the default compiler, don't build gcc or libstdc++.theraven2013-09-061-1/+1
| | | | | | | | | | | | | | | | | | To enable them, set WITH_GCC and WITH_GNUCXX in src.conf. Make clang default to using libc++ on FreeBSD 10. Bumped __FreeBSD_version for the change. GCC is still enabled on PC98, because the PC98 bootloader requires GCC to build (or, at least, hard-codes the use of gcc into its build). Thanks to everyone who helped make the ports tree ready for this (and bapt for coordinating them all). Also to imp for reviewing this and working on the forward-porting of the changes in our gcc so that we're getting to a much better place with regard to external toolchains. Sorry to all of the people who helped who I forgot to mention by name. Reviewed by: bapt, imp, dim, ...
* Don't recurse into libssp when MK_SSP is set to no.marcel2012-05-211-1/+5
|
* libodialog: disconnect from the build and obsolete.fjoe2011-11-241-2/+1
|
* Remove libobjc and other Objective-C related components, as these aredim2011-04-171-4/+0
| | | | | | extremely outdated, and not used by anything in the base system. Silence from: current@
* Update dialog to version 20100428. This changes the license under whichnwhitehorn2011-01-121-1/+2
| | | | | | | | | | | | | dialog is distributed from GPLv2 to LGPLv2 and introduces a number of new features and a new and better libdialog API. The existing libdialog will be kept temporarily as libodialog for compatibility purposes until sade, sysinstall and tzsetup have been either updated or replaced. __FreeBSD_version is now 900030. Discussed on: -current Approved by: core Obtained from: http://invisible-island.net/dialog
* Enable GCC stack protection (aka Propolice) for userland:ru2008-06-251-5/+1
| | | | | | | | | | | | | | | | | | | | | - It is opt-out for now so as to give it maximum testing, but it may be turned opt-in for stable branches depending on the consensus. You can turn it off with WITHOUT_SSP. - WITHOUT_SSP was previously used to disable the build of GNU libssp. It is harmless to steal the knob as SSP symbols have been provided by libc for a long time, GNU libssp should not have been much used. - SSP is disabled in a few corners such as system bootstrap programs (sys/boot), process bootstrap code (rtld, csu) and SSP symbols themselves. - It should be safe to use -fstack-protector-all to build world, however libc will be automatically downgraded to -fstack-protector because it breaks rtld otherwise. - This option is unavailable on ia64. Enable GCC stack protection (aka Propolice) for kernel: - It is opt-out for now so as to give it maximum testing. - Do not compile your kernel with -fstack-protector-all, it won't work. Submitted by: Jeremie Le Hen <jeremie@le-hen.org>
* Update bmake glue to build GCC 4.2.kan2007-05-191-3/+3
| | | | | | | | | | | | | | | | | | | | | Also: Switch FreeBSD to use libgcc_s.so.1. Use dl_iterate_phdr to locate shared objects' exception frame info instead of depending on older register_frame_info machinery. This allows us to avoid depending on libgcc_s.so.1 in binaries that do not use exception handling directly. As an additional benefit it breaks circular libc <=> libgcc_s.so.1 dependency too. Build newly added libgomp.so.1 library, the runtime support bits for OpenMP. Build LGPLed libssp library. Our libc provides our own BSD-licensed SSP callbacks implementation, so this library is only built to benefit applications that have hadcoded knowledge of libssp.so and libssp_nonshared.a. When linked in from command line, these libraries override libc implementation.
* Reimplementation of world/kernel build options. For details, see:ru2006-03-171-3/+5
| | | | | | | | http://lists.freebsd.org/pipermail/freebsd-current/2006-March/061725.html The src.conf(5) manpage is to follow in a few days. Brought to you by: imp, jhb, kris, phk, ru (all bugs are mine)
* Add libgcov, a runtime support library for binaries compiled for basickan2004-08-141-1/+1
| | | | block profiling.
* Initiate deorbit burn for the i386-only a.out related support. Moves arepeter2002-09-171-6/+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
* Add some build glue for libstdc++. I'm not a C++ person, but this seemspeter2002-05-291-3/+3
| | | | | | | | | 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.
* Make sure to not yet build the GNU C++, but still allowru2002-05-151-4/+2
| | | | | for the C++ progs to be built with e.g. an old compiler, CXX=/usr/bin/c++, for the time being.
* All platforms should be on equal footing now -- no special handling forobrien2002-05-101-10/+6
| | | | Sparc64 and IA-64.
* Unbreak world (missing .else)peter2002-04-081-0/+1
| | | | | Submitted by: fenner Pointy hat to: obrien
* Some things don't compile on ia64 and sparc64 yet.obrien2002-04-081-1/+8
|
* Back out the previous revision for now. Instead, the current sparc64jhb2002-01-071-4/+0
| | | | Makefile changes are in the sparc64 p4 tree.
* Don't build csu or libgcc on sparc64 for the time being.jhb2002-01-031-0/+4
|
* Enable the new libmp in the build, and disable libgmp and itsdd2001-07-291-1/+1
| | | | henchmen.
* Use a unified libgcc rather than a seperate one for threaded andobrien2001-01-061-0/+2
| | | | | | | | non-threaded programs. This provides threaded programs with the needed exception frame symbols. parts submitted by: Max Khon <fjoe@iclub.nsu.ru> PR: 23252
* Don't compile libgcc_r twice.obrien2000-11-251-1/+1
|
* Don't build libgcc_r if "NOLIBC_R" defined. If you don't have a threadsobrien2000-11-251-0/+4
| | | | safe libc, having a threads safe libgcc isn't of much use.
* * Bring back the guts of crt{i,n}.S. This allows C++ exceptions to workobrien2000-10-281-1/+1
| | | | | | | | | | | | | | | | | | | when using the egcs and gcc-devel ports, along with GCC built from stock public FSF sources. With out this change, FreeBSD will be removed from the list of systems GCC 3.0 must be evaluated on before release. With the effort some of us put into getting FreeBSD on this list, we should not turn this effort into a waste, else we might not be worth fighting for in the future. (note that Alpha and IA-64 versions of crt{i,n}.S are needed) * Switch from our own crt{begin,in} to those created from GCC's crtstuff.c. This will allow us to switch to DWARF2 exceptions in the future, along with staying in sync with any future GCC requirements. * Break out our ELF branding bits into a seperate file. Currently this is now included by our crt1.c files (since this functionality was part of our native crtbegin.c). Later crtbrand.o will be merged in the creation of crti.o.
* Add "NO_CXX" knob to match src/gnu/usr.bin/cc/Makefile.obrien2000-10-241-1/+5
|
* Make ObjC bits optional. NO_OBJC ==> don't need `em.obrien1999-11-271-2/+5
|
* $Id$ -> $FreeBSD$peter1999-08-271-1/+1
|
* Hookup libg2c. (define NO_FORTRAN if you don't want it built)obrien1999-04-181-1/+5
|
* Create a libgcc with POSIX threads support.obrien1999-04-141-2/+3
| | | | Submitted by: Luoqi Chen <luoqi@chen.ml.org> (reorganized by me)
* Minimum set of changes to switch from Gcc 2.7.2 (in contrib/gcc) to Egcs 1.1.2obrien1999-04-041-2/+2
| | | | (in contrib/egcs)
* Hookup libgcc at gnu/lib instead of gnu/usr.bin/ccobrien1999-03-311-2/+2
| | | | (libgcc was repository copied for me by Peter)
* Fixed munging of the SUBDIR list in rev.1.16-1.18.bde1998-09-021-4/+2
|
* All libs build on alpha now.dfr1998-08-311-6/+2
|
* Just one of these libs left to port to alpha.jb1998-02-191-5/+5
|
* Avoid building x86 specific libraries on Alpha.jb1998-01-101-2/+8
|
* Revert $FreeBSD$ to $Id$peter1997-02-221-1/+1
|
* Make the long-awaited change from $Id$ to $FreeBSD$jkh1997-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.
* Add libstdc++ to the SUBDIR listpeter1996-10-041-2/+2
|
* Add libobjc, the Objective-C runtime library.peter1996-09-191-2/+2
|
* gnumalloc is gone.phk1996-02-111-2/+2
|
* Add libgmp.markm1995-11-131-2/+2
|
OpenPOWER on IntegriCloud