|
Revision tags: release/12.2.0, release/11.4.0, release/12.1.0, release/11.3.0, release/12.0.0, release/11.2.0, release/10.4.0 |
|
| #
1d8776b2 |
| 03-Aug-2017 |
Enji Cooper <[email protected]> |
Diff reduce with ^/head
|
|
Revision tags: release/11.1.0 |
|
| #
da484521 |
| 22-Jun-2017 |
Enji Cooper <[email protected]> |
Add COV_CXXFLAGS for gnu/lib/lib{std,sup}c++
Mark libstdc++ with MK_COVERAGE?= no to disable runtime coverage instrumentation with libstdc++.
For reasons I don't yet understand, COV_CXXFLAGS isn't
Add COV_CXXFLAGS for gnu/lib/lib{std,sup}c++
Mark libstdc++ with MK_COVERAGE?= no to disable runtime coverage instrumentation with libstdc++.
For reasons I don't yet understand, COV_CXXFLAGS isn't being passed down properly to my bsd.lib.mk static rules -- coming in the next commit.
show more ...
|
|
Revision tags: release/11.0.1, release/11.0.0, release/10.3.0 |
|
| #
b791fbe6 |
| 25-Nov-2015 |
Bryan Drewery <[email protected]> |
META MODE: Don't create .meta files when symlinking sources into the obj directory.
Tracking these leads to situations where meta mode will consider the file to be out of date if /bin/sh or /bin/ln
META MODE: Don't create .meta files when symlinking sources into the obj directory.
Tracking these leads to situations where meta mode will consider the file to be out of date if /bin/sh or /bin/ln are newer than the source file. There's no reason for meta mode to do this as make is already handling the rebuild dependency fine.
Sponsored by: EMC / Isilon Storage Division
show more ...
|
|
Revision tags: release/10.2.0, release/10.1.0 |
|
| #
6d4766c1 |
| 01-Oct-2014 |
Andrew Turner <[email protected]> |
Remove MK_ARM_EABI, the armeb issues have been fixed. The code to support the oabi is still in the tree, but it is expected this will be removed as developers work on surrounding code.
With this com
Remove MK_ARM_EABI, the armeb issues have been fixed. The code to support the oabi is still in the tree, but it is expected this will be removed as developers work on surrounding code.
With this commit the ARM EABI is the only supported supported ABI by FreeBSD on ARMa 32-bit processors.
X-MFC after: never Relnotes: yes Differential Revision: https://reviews.freebsd.org/D876
show more ...
|
|
Revision tags: release/9.3.0 |
|
| #
aee7bee5 |
| 16-May-2014 |
Simon J. Gerraty <[email protected]> |
Fix building libstdc++ with clang
Reviewed by: theraven
|
| #
eb941910 |
| 11-May-2014 |
Dimitry Andric <[email protected]> |
Allow libstdc++ and libsupc++ to compile with clang again, after the bsd.*.mk infrastructure changes. Apparently, you must now modify CXXFLAGS *before* including bsd.lib.mk, or your changes will be
Allow libstdc++ and libsupc++ to compile with clang again, after the bsd.*.mk infrastructure changes. Apparently, you must now modify CXXFLAGS *before* including bsd.lib.mk, or your changes will be lost.
show more ...
|
| #
c6063d0d |
| 06-May-2014 |
Warner Losh <[email protected]> |
Use src.opts.mk in preference to bsd.own.mk except where we need stuff from the latter.
|
|
Revision tags: release/10.0.0 |
|
| #
b294993d |
| 22-Dec-2013 |
Dimitry Andric <[email protected]> |
To avoid having to explicitly test COMPILER_TYPE for setting clang-specific or gcc-specific flags, introduce the following new variables for use in Makefiles:
CFLAGS.clang CFLAGS.gcc CXXFLAGS.clang
To avoid having to explicitly test COMPILER_TYPE for setting clang-specific or gcc-specific flags, introduce the following new variables for use in Makefiles:
CFLAGS.clang CFLAGS.gcc CXXFLAGS.clang CXXFLAGS.gcc
In bsd.sys.mk, these get appended to the regular CFLAGS or CXXFLAGS for the right compiler.
MFC after: 1 week
show more ...
|
|
Revision tags: release/9.2.0 |
|
| #
44acc1e1 |
| 12-Sep-2013 |
Dimitry Andric <[email protected]> |
After r255321, clang uses libc++ by default. This leads to a lot of errors when you enable WITH_GNUCXX to build libstdc++, since it will include C++ headers from the libc++ installation under ${WORL
After r255321, clang uses libc++ by default. This leads to a lot of errors when you enable WITH_GNUCXX to build libstdc++, since it will include C++ headers from the libc++ installation under ${WORLDTMP}, and those are not compatible with libstdc++ at all.
To fix this, add -stdlib=libstdc++ to CXXFLAGS when building libstdc++ (and its companion libsupc++) with clang.
Approved by: re (delphij)
show more ...
|
|
Revision tags: release/8.4.0 |
|
| #
621cd629 |
| 22-Mar-2013 |
Olivier Houchard <[email protected]> |
As it's done for libstdc++, use SJLJ-based exceptions on arm when we're not using EABI, and use unwind-arm.h instead of unwind-generic.h when using EABI.
|
|
Revision tags: release/9.1.0 |
|
| #
f289fa66 |
| 23-Oct-2012 |
Dimitry Andric <[email protected]> |
For building GNU libstdc++ and libsupc++, filter out libc++-specific and -std= flags above c++98 or gnu++98 from CXXFLAGS *after* including bsd.lib.mk, otherwise some additions to CXXFLAGS done in bs
For building GNU libstdc++ and libsupc++, filter out libc++-specific and -std= flags above c++98 or gnu++98 from CXXFLAGS *after* including bsd.lib.mk, otherwise some additions to CXXFLAGS done in bsd.*.mk might not be preserved.
MFC after: 1 week
show more ...
|
| #
69714daa |
| 25-Aug-2012 |
Dimitry Andric <[email protected]> |
For building libstdc++ and libsupc++, filter out any -stdlib=libc++ option from CXXFLAGS, otherwise these libraries will not build. Similarly, filter out any -std=xxx options that aren't supported.
For building libstdc++ and libsupc++, filter out any -stdlib=libc++ option from CXXFLAGS, otherwise these libraries will not build. Similarly, filter out any -std=xxx options that aren't supported.
Submitted by: Yamaya Takashi <[email protected]> MFC after: 2 weeks
show more ...
|
|
Revision tags: release/8.3.0 |
|
| #
cf56074e |
| 31-Mar-2012 |
David Chisnall <[email protected]> |
Make libsupc++ build as a shared library and make libstdc++ a filter library for it.
This allows people to swap out libsupc++ for libcxxrt easily, so we can begin the libstdc++ -> libc++ migration.
Make libsupc++ build as a shared library and make libstdc++ a filter library for it.
This allows people to swap out libsupc++ for libcxxrt easily, so we can begin the libstdc++ -> libc++ migration.
Approved by: dim (mentor)
show more ...
|
|
Revision tags: release/7.4.0, release/8.2.0, release/8.1.0 |
|
| #
680e78b3 |
| 12-May-2010 |
David E. O'Brien <[email protected]> |
Non-GCC gcc compatible compilers may provide the same multimedia intrinsic headers as GCC, but of their own implementation. So put the GCC ones into their own header "namespace".
Requested by: ed
|
|
Revision tags: release/7.3.0 |
|
| #
a070c499 |
| 22-Jan-2010 |
Stephane E. Potvin <[email protected]> |
Use the new PO_CXXFLAGS from r202807 to remove the '-ffunction-sections' flag when compiling profiled objects as it's ignored by the compiler. This removes the associated warning for each file compil
Use the new PO_CXXFLAGS from r202807 to remove the '-ffunction-sections' flag when compiling profiled objects as it's ignored by the compiler. This removes the associated warning for each file compiled.
MFC after: 1 month
show more ...
|
|
Revision tags: release/8.0.0, release/7.2.0, release/7.1.0, release/6.4.0, release/7.0.0, release/6.3.0 |
|
| #
afb57df6 |
| 19-May-2007 |
Alexander Kabaev <[email protected]> |
Update bmake glue to build GCC 4.2.
Also: Switch FreeBSD to use libgcc_s.so.1.
Use dl_iterate_phdr to locate shared objects' exception frame info instead of depending on old
Update bmake glue to build GCC 4.2.
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.
show more ...
|
|
Revision tags: release/6.2.0 |
|
| #
ae8cd67d |
| 19-Aug-2006 |
Alexander Kabaev <[email protected]> |
Update libsupc++ to include missing files. This was fixed in libstdc++ a long time ago, but libsupc++ was left out somehow,
PR: gnu/99702 Submitted by: George Mitchell
|
|
Revision tags: release/5.5.0, release/6.1.0, release/6.0.0 |
|
| #
5c2f3990 |
| 17-Aug-2005 |
Colin Percival <[email protected]> |
Repeatability is Considered Good when building this library, too. (And I think this is the last one which needs it.)
|
|
Revision tags: release/5.4.0, release/4.11.0, release/5.3.0 |
|
| #
81efba8c |
| 28-Jul-2004 |
Alexander Kabaev <[email protected]> |
Bmake glue for GCC 3.4.2-prerelease.
|
|
Revision tags: release/4.10.0, release/5.2.1, release/5.2.0, release/4.9.0 |
|
| #
e67810e6 |
| 11-Jul-2003 |
Alexander Kabaev <[email protected]> |
Update bmake bits to build GCC 3.3.1-prerelease.
|
|
Revision tags: release/5.1.0, release/4.8.0, release/5.0.0, release/4.6.2 |
|
| #
b5ad6294 |
| 29-May-2002 |
Peter Wemm <[email protected]> |
Add some build glue for libstdc++. I'm not a C++ person, but this seems 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
Add some build glue for libstdc++. I'm not a C++ person, but this seems 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.
show more ...
|
| #
c7b111cb |
| 12-May-2002 |
Ruslan Ermilov <[email protected]> |
Added new bsd.incs.mk which handles installing of header files via INCS. Implemented INCSLINKS (equivalent to SYMLINKS) to handle symlinking include files. Allow for multiple groups of include file
Added new bsd.incs.mk which handles installing of header files via INCS. Implemented INCSLINKS (equivalent to SYMLINKS) to handle symlinking include files. Allow for multiple groups of include files to be installed, with the powerful INCSGROUPS knob. Documentation to follow.
Added standard `includes' and `incsinstall' targets, use them in Makefile.inc1. Headers from the following makefiles were not installed before (during `includes' in Makefile.inc1):
kerberos5/lib/libtelnet/Makefile lib/libbz2/Makefile lib/libdevinfo/Makefile lib/libform/Makefile lib/libisc/Makefile lib/libmenu/Makefile lib/libmilter/Makefile lib/libpanel/Makefile
Replaced all `beforeinstall' targets for installing includes with the INCS stuff.
Renamed INCDIR to INCSDIR, for consistency with FILES and SCRIPTS, and for compatibility with NetBSD. Similarly for INCOWN, INCGRP, and INCMODE.
Consistently use INCLUDEDIR instead of /usr/include.
gnu/lib/libstdc++/Makefile and gnu/lib/libsupc++/Makefile changes were only lightly tested due to the missing contrib/libstdc++-v3. I fully tested the pre-WIP_GCC31 version of this patch with the contrib/libstdc++.295 stuff.
These changes have been tested on i386 with the -DNO_WERROR "make world" and "make release".
show more ...
|
| #
68866c8c |
| 07-May-2002 |
David E. O'Brien <[email protected]> |
Mostly filled in contents for GCC 3.1.
Bribed by: peter
|
| #
bc2fcd34 |
| 06-May-2002 |
cvs2svn <[email protected]> |
This commit was manufactured by cvs2svn to create branch 'WIP_GCC31'.
|
| #
91004f18 |
| 06-May-2002 |
David E. O'Brien <[email protected]> |
GCC's libstdc++ version 3 has the "libgcc" like bits (start up / terminate code, `new' handler, exception handling, etc.) split out into libsupc++.
|