svn commit: r358454 - in head: . etc/mtree gnu/lib gnu/lib/libgcov gnu/lib/libgomp gnu/lib/libstdc++ gnu/lib/libsupc++ gnu/usr.bin gnu/usr.bin/cc gnu/usr.bin/gperf share/mk targets/pseudo/bootstrap...
Ed Maste
emaste at FreeBSD.org
Sat Feb 29 03:25:53 UTC 2020
Author: emaste
Date: Sat Feb 29 03:25:51 2020
New Revision: 358454
URL: https://svnweb.freebsd.org/changeset/base/358454
Log:
remove GCC 4.2.1 build infrastructure
As described in Warner's email message[1] to the FreeBSD-arch mailing
list we have reached GCC 4.2.1's retirement date. At this time all
supported architectures either use in-tree Clang, or rely on external
toolchain (i.e., a contemporary GCC version from ports).
GCC 4.2.1 was released July 18, 2007 and was imported into FreeBSD later
that year, in r171825. GCC has served us well, but version 4.2.1 is
obsolete and not used by default on any architecture in FreeBSD. It
does not support modern C and does not support arm64 or RISC-V.
Thanks to everyone responsible for maintaining, updating, and testing
GCC in the FreeBSD base system over the years.
So long, and thanks for all the fish.
[1] https://lists.freebsd.org/pipermail/freebsd-arch/2020-January/019823.html
PR: 228919
Reviewed by: brooks, imp
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D23124
Deleted:
head/gnu/lib/libgcov/
head/gnu/lib/libgomp/
head/gnu/lib/libstdc++/
head/gnu/lib/libsupc++/
head/gnu/usr.bin/cc/
head/gnu/usr.bin/gperf/
Modified:
head/Makefile.inc1
head/ObsoleteFiles.inc
head/UPDATING
head/etc/mtree/BSD.include.dist
head/gnu/lib/Makefile
head/gnu/usr.bin/Makefile
head/share/mk/local.dirdeps.mk
head/share/mk/src.libnames.mk
head/share/mk/src.opts.mk
head/targets/pseudo/bootstrap-tools/Makefile
head/targets/pseudo/toolchain/Makefile.depend
head/targets/pseudo/userland/gnu/Makefile.depend
head/tools/build/mk/OptionalObsoleteFiles.inc
head/tools/build/options/WITHOUT_CLANG_IS_CC
head/tools/build/options/WITHOUT_SYSTEM_COMPILER
head/tools/build/options/WITH_SYSTEM_COMPILER
head/tools/tools/nanobsd/dhcpd/common
head/tools/tools/nanobsd/embedded/common
head/usr.bin/clang/llvm-cov/Makefile
Modified: head/Makefile.inc1
==============================================================================
--- head/Makefile.inc1 Fri Feb 28 22:00:50 2020 (r358453)
+++ head/Makefile.inc1 Sat Feb 29 03:25:51 2020 (r358454)
@@ -87,7 +87,6 @@ X${COMPILER}?= ${${COMPILER}}
# a cross compiler.
.if ${XCC:N${CCACHE_BIN}:M/*}
MK_CLANG_BOOTSTRAP= no
-MK_GCC_BOOTSTRAP= no
.endif
# Pull in compiler metadata from buildworld/toolchain if possible to avoid
@@ -207,8 +206,6 @@ _WANT_TOOLCHAIN_CROSS_VARS= t
# Which compiler is expected to be used?
.if ${MK_CLANG_BOOTSTRAP} == "yes"
WANT_COMPILER_TYPE= clang
-.elif ${MK_GCC_BOOTSTRAP} == "yes"
-WANT_COMPILER_TYPE= gcc
.else
WANT_COMPILER_TYPE=
.endif
@@ -224,15 +221,6 @@ WANT_COMPILER_VERSION_FILE= lib/clang/include/clang/Ba
WANT_COMPILER_VERSION!= \
awk '$$2 == "CLANG_VERSION" {split($$3, a, "."); print a[1] * 10000 + a[2] * 100 + a[3]}' \
${SRCDIR}/${WANT_COMPILER_VERSION_FILE} || echo unknown
-.elif ${WANT_COMPILER_TYPE} == "gcc"
-WANT_COMPILER_FREEBSD_VERSION_FILE= gnu/usr.bin/cc/cc_tools/freebsd-native.h
-WANT_COMPILER_FREEBSD_VERSION!= \
- awk '$$2 == "FBSD_CC_VER" {printf("%d\n", $$3)}' \
- ${SRCDIR}/${WANT_COMPILER_FREEBSD_VERSION_FILE} || echo unknown
-WANT_COMPILER_VERSION_FILE= contrib/gcc/BASE-VER
-WANT_COMPILER_VERSION!= \
- awk -F. '{print $$1 * 10000 + $$2 * 100 + $$3}' \
- ${SRCDIR}/${WANT_COMPILER_VERSION_FILE} || echo unknown
.endif
.export WANT_COMPILER_FREEBSD_VERSION WANT_COMPILER_VERSION
.endif # !defined(WANT_COMPILER_FREEBSD_VERSION)
@@ -243,7 +231,7 @@ WANT_COMPILER_VERSION!= \
# TARGET_ARCH!=MACHINE_ARCH.
.if ${MK_SYSTEM_COMPILER} == "yes" && \
defined(WANT_COMPILER_FREEBSD_VERSION) && \
- (${MK_CLANG_BOOTSTRAP} == "yes" || ${MK_GCC_BOOTSTRAP} == "yes") && \
+ ${MK_CLANG_BOOTSTRAP} == "yes" && \
!make(xdev*) && \
${X_COMPILER_TYPE} == ${WANT_COMPILER_TYPE} && \
(${X_COMPILER_TYPE} == "clang" || ${TARGET_ARCH} == ${MACHINE_ARCH}) && \
@@ -251,7 +239,6 @@ WANT_COMPILER_VERSION!= \
${X_COMPILER_FREEBSD_VERSION} == ${WANT_COMPILER_FREEBSD_VERSION}
# Everything matches, disable the bootstrap compiler.
MK_CLANG_BOOTSTRAP= no
-MK_GCC_BOOTSTRAP= no
USING_SYSTEM_COMPILER= yes
.endif # ${WANT_COMPILER_TYPE} == ${COMPILER_TYPE}
@@ -305,7 +292,7 @@ USING_SYSTEM_LINKER?= no
TEST_SYSTEM_COMPILER_VARS= \
USING_SYSTEM_COMPILER MK_SYSTEM_COMPILER \
- MK_CROSS_COMPILER MK_CLANG_BOOTSTRAP MK_GCC_BOOTSTRAP \
+ MK_CROSS_COMPILER MK_CLANG_BOOTSTRAP \
WANT_COMPILER_TYPE WANT_COMPILER_VERSION WANT_COMPILER_VERSION_FILE \
WANT_COMPILER_FREEBSD_VERSION WANT_COMPILER_FREEBSD_VERSION_FILE \
CC COMPILER_TYPE COMPILER_FEATURES COMPILER_VERSION \
@@ -2128,10 +2115,6 @@ BOOTSTRAPPING_OSRELDATE:= 0
_strfile= usr.bin/fortune/strfile
.endif
-.if ${MK_GCC} != "no" && ${MK_CXX} != "no"
-_gperf= gnu/usr.bin/gperf
-.endif
-
.if ${MK_VT} != "no"
_vtfontcvt= usr.bin/vtfontcvt
.endif
@@ -2377,7 +2360,6 @@ bootstrap-tools: ${_bt}-links .PHONY
${_clang_tblgen} \
${_kerberos5_bootstrap_tools} \
${_strfile} \
- ${_gperf} \
${_dtc} \
${_cat} \
${_kbdcontrol} \
@@ -2419,10 +2401,6 @@ bootstrap-tools: ${_bt}-${_tool}
_share= share/syscons/scrnmaps
.endif
-.if ${MK_GCC} != "no"
-_gcc_tools= gnu/usr.bin/cc/cc_tools
-.endif
-
.if ${MK_RESCUE} != "no"
# rescue includes programs that have build-tools targets
_rescue=rescue/rescue
@@ -2460,8 +2438,7 @@ _bt_clean= ${CLEANDIR}
${_libmagic} \
usr.bin/mkesdb_static \
usr.bin/mkcsmapper_static \
- usr.bin/vi/catalog \
- ${_gcc_tools}
+ usr.bin/vi/catalog
build-tools_${_tool}: .PHONY
${_+_}@${ECHODIR} "===> ${_tool} (${_bt_clean:D${_bt_clean},}obj,build-tools)"; \
cd ${.CURDIR}/${_tool}; \
@@ -2530,9 +2507,6 @@ _lld= usr.bin/clang/lld
.if ${MK_CLANG_BOOTSTRAP} != "no" || ${MK_LLD_BOOTSTRAP} != "no"
_clang_libs= lib/clang
.endif
-.if ${MK_GCC_BOOTSTRAP} != "no"
-_gcc= gnu/usr.bin/cc
-.endif
.if ${MK_USB} != "no"
_usb_tools= stand/usb/tools
.endif
@@ -2551,7 +2525,6 @@ cross-tools: .MAKE .PHONY
${_binutils} \
${_elftctools} \
${_dtrace_tools} \
- ${_gcc} \
${_btxld} \
${_usb_tools}
${_+_}@${ECHODIR} "===> ${_tool} (obj,all,install)"; \
@@ -2647,9 +2620,6 @@ SUBDIR_DEPEND_usr.bin/clang= lib/clang
NXBDIRS+= lib/clang
NXBDIRS+= usr.bin/clang
.endif
-.if ${MK_GCC} != "no"
-NXBDIRS+= gnu/usr.bin/cc
-.endif
.if ${MK_BINUTILS} != "no"
NXBDIRS+= gnu/usr.bin/binutils
.endif
@@ -2713,27 +2683,23 @@ NXBMAKE+= ${NXBMAKEENV} ${MAKE} -f Makefile.inc1 ${NXB
TARGET=${NXB_TARGET} TARGET_ARCH=${NXB_TARGET_ARCH} \
TARGET_TRIPLE=${MACHINE_TRIPLE:Q}
# NXBDIRS is improperly based on MACHINE rather than NXB_TARGET. Need to
-# invoke a sub-make to reevaluate MK_GCC, etc, for NXBDIRS.
+# invoke a sub-make to reevaluate MK_CLANG, etc, for NXBDIRS.
NXBMAKE+= SUBDIR_OVERRIDE='$${NXBDIRS:M*}'
# Need to avoid the -isystem logic when using clang as an external toolchain
# even if the TARGET being built for wants GCC.
NXBMAKE+= WANT_COMPILER_TYPE='$${X_COMPILER_TYPE}'
native-xtools: .PHONY
- ${_+_}cd ${.CURDIR}; ${NXBTMAKE} _cleanobj MK_GCC=yes
+ ${_+_}cd ${.CURDIR}; ${NXBTMAKE} _cleanobj
# Build the bootstrap/host/cross tools that produce native binaries
- # Pass along MK_GCC=yes to ensure GCC-needed build tools are built.
- # We don't quite know what the NXB_TARGET wants so just build it.
- ${_+_}cd ${.CURDIR}; ${NXBTMAKE} kernel-toolchain MK_GCC=yes
+ ${_+_}cd ${.CURDIR}; ${NXBTMAKE} kernel-toolchain
# Populate includes/libraries sysroot that produce native binaries.
# This is split out from 'toolchain' above mostly so that target LLVM
# libraries have a proper LLVM_DEFAULT_TARGET_TRIPLE without
# polluting the cross-compiler build. The LLVM/GCC libs are skipped
# here to avoid the problem but are kept in 'toolchain' so that
# needed build tools are built.
- ${_+_}cd ${.CURDIR}; ${NXBTMAKE} _includes MK_CLANG=no MK_GCC=no
- ${_+_}cd ${.CURDIR}; ${NXBTMAKE} _libraries MK_CLANG=no MK_GCC=no
- # Clean out improper TARGET=MACHINE files
- ${_+_}cd ${.CURDIR}/gnu/usr.bin/cc/cc_tools; ${NXBTMAKE} cleandir
+ ${_+_}cd ${.CURDIR}; ${NXBTMAKE} _includes MK_CLANG=no
+ ${_+_}cd ${.CURDIR}; ${NXBTMAKE} _libraries MK_CLANG=no
.if !defined(NO_OBJWALK)
${_+_}cd ${.CURDIR}; ${NXBMAKE} _obj
.endif
@@ -2832,12 +2798,6 @@ _prebuild_libs= ${_kerberos5_lib_libasn1} \
${_secure_lib_libcrypto} ${_secure_lib_libssl} \
${_lib_libldns} ${_secure_lib_libssh}
-.if ${MK_GNUCXX} != "no"
-_prebuild_libs+= gnu/lib/libstdc++ gnu/lib/libsupc++
-gnu/lib/libstdc++__L: lib/msun__L
-gnu/lib/libsupc++__L: gnu/lib/libstdc++__L
-.endif
-
.if ${MK_DIALOG} != "no"
_prebuild_libs+= gnu/lib/libdialog
gnu/lib/libdialog__L: lib/msun__L lib/ncurses/ncursesw__L
@@ -2995,13 +2955,9 @@ lib/libradius__L: lib/libmd__L
lib/libproc__L: \
${_cddl_lib_libctf:D${_cddl_lib_libctf}__L} lib/libelf__L lib/librtld_db__L lib/libutil__L
-.if ${MK_CXX} != "no"
-.if ${MK_LIBCPLUSPLUS} != "no"
+.if ${MK_CXX} != "no" && ${MK_LIBCPLUSPLUS} != "no"
lib/libproc__L: lib/libcxxrt__L
-.else # This implies MK_GNUCXX != "no"; see lib/libproc
-lib/libproc__L: gnu/lib/libsupc++__L
.endif
-.endif
.for _lib in ${_prereq_libs}
${_lib}__PL: .PHONY .MAKE
@@ -3358,7 +3314,6 @@ _xb-worldtmp: .PHONY
_xb-bootstrap-tools: .PHONY
.for _tool in \
${_clang_tblgen} \
- ${_gperf} \
${_yacc}
${_+_}@${ECHODIR} "===> ${_tool} (obj,all,install)"; \
cd ${.CURDIR}/${_tool}; \
@@ -3377,8 +3332,7 @@ XDEVDIRS= \
${_binutils} \
${_elftctools} \
usr.bin/ar \
- ${_clang} \
- ${_gcc}
+ ${_clang}
_xb-cross-tools: .PHONY
.for _tool in ${XDEVDIRS}
Modified: head/ObsoleteFiles.inc
==============================================================================
--- head/ObsoleteFiles.inc Fri Feb 28 22:00:50 2020 (r358453)
+++ head/ObsoleteFiles.inc Sat Feb 29 03:25:51 2020 (r358454)
@@ -36,6 +36,621 @@
# xargs -n1 | sort | uniq -d;
# done
+# 20200229: GCC 4.2.1 removed
+.if !defined(WITH_PORT_BASE_GCC)
+OLD_FILES+=usr/bin/g++
+OLD_FILES+=usr/bin/gcc
+OLD_FILES+=usr/share/man/man1/g++.1.gz
+OLD_FILES+=usr/share/man/man1/gcc.1.gz
+.endif
+OLD_FILES+=usr/bin/gcpp
+OLD_FILES+=usr/bin/gperf
+OLD_FILES+=usr/include/c++/4.2/algorithm
+OLD_FILES+=usr/include/c++/4.2/backward/algo.h
+OLD_FILES+=usr/include/c++/4.2/backward/algobase.h
+OLD_FILES+=usr/include/c++/4.2/backward/alloc.h
+OLD_FILES+=usr/include/c++/4.2/backward/backward_warning.h
+OLD_FILES+=usr/include/c++/4.2/backward/bvector.h
+OLD_FILES+=usr/include/c++/4.2/backward/complex.h
+OLD_FILES+=usr/include/c++/4.2/backward/defalloc.h
+OLD_FILES+=usr/include/c++/4.2/backward/deque.h
+OLD_FILES+=usr/include/c++/4.2/backward/fstream.h
+OLD_FILES+=usr/include/c++/4.2/backward/function.h
+OLD_FILES+=usr/include/c++/4.2/backward/hash_map.h
+OLD_FILES+=usr/include/c++/4.2/backward/hash_set.h
+OLD_FILES+=usr/include/c++/4.2/backward/hashtable.h
+OLD_FILES+=usr/include/c++/4.2/backward/heap.h
+OLD_FILES+=usr/include/c++/4.2/backward/iomanip.h
+OLD_FILES+=usr/include/c++/4.2/backward/iostream.h
+OLD_FILES+=usr/include/c++/4.2/backward/istream.h
+OLD_FILES+=usr/include/c++/4.2/backward/iterator.h
+OLD_FILES+=usr/include/c++/4.2/backward/list.h
+OLD_FILES+=usr/include/c++/4.2/backward/map.h
+OLD_FILES+=usr/include/c++/4.2/backward/multimap.h
+OLD_FILES+=usr/include/c++/4.2/backward/multiset.h
+OLD_FILES+=usr/include/c++/4.2/backward/new.h
+OLD_FILES+=usr/include/c++/4.2/backward/ostream.h
+OLD_FILES+=usr/include/c++/4.2/backward/pair.h
+OLD_FILES+=usr/include/c++/4.2/backward/queue.h
+OLD_FILES+=usr/include/c++/4.2/backward/rope.h
+OLD_FILES+=usr/include/c++/4.2/backward/set.h
+OLD_FILES+=usr/include/c++/4.2/backward/slist.h
+OLD_FILES+=usr/include/c++/4.2/backward/stack.h
+OLD_FILES+=usr/include/c++/4.2/backward/stream.h
+OLD_FILES+=usr/include/c++/4.2/backward/streambuf.h
+OLD_FILES+=usr/include/c++/4.2/backward/strstream
+OLD_FILES+=usr/include/c++/4.2/backward/tempbuf.h
+OLD_FILES+=usr/include/c++/4.2/backward/tree.h
+OLD_FILES+=usr/include/c++/4.2/backward/vector.h
+OLD_FILES+=usr/include/c++/4.2/bits/allocator.h
+OLD_FILES+=usr/include/c++/4.2/bits/atomic_word.h
+OLD_FILES+=usr/include/c++/4.2/bits/basic_file.h
+OLD_FILES+=usr/include/c++/4.2/bits/basic_ios.h
+OLD_FILES+=usr/include/c++/4.2/bits/basic_ios.tcc
+OLD_FILES+=usr/include/c++/4.2/bits/basic_string.h
+OLD_FILES+=usr/include/c++/4.2/bits/basic_string.tcc
+OLD_FILES+=usr/include/c++/4.2/bits/boost_concept_check.h
+OLD_FILES+=usr/include/c++/4.2/bits/c++allocator.h
+OLD_FILES+=usr/include/c++/4.2/bits/c++config.h
+OLD_FILES+=usr/include/c++/4.2/bits/c++io.h
+OLD_FILES+=usr/include/c++/4.2/bits/c++locale.h
+OLD_FILES+=usr/include/c++/4.2/bits/c++locale_internal.h
+OLD_FILES+=usr/include/c++/4.2/bits/char_traits.h
+OLD_FILES+=usr/include/c++/4.2/bits/cmath.tcc
+OLD_FILES+=usr/include/c++/4.2/bits/codecvt.h
+OLD_FILES+=usr/include/c++/4.2/bits/compatibility.h
+OLD_FILES+=usr/include/c++/4.2/bits/concept_check.h
+OLD_FILES+=usr/include/c++/4.2/bits/cpp_type_traits.h
+OLD_FILES+=usr/include/c++/4.2/bits/cpu_defines.h
+OLD_FILES+=usr/include/c++/4.2/bits/ctype_base.h
+OLD_FILES+=usr/include/c++/4.2/bits/ctype_inline.h
+OLD_FILES+=usr/include/c++/4.2/bits/ctype_noninline.h
+OLD_FILES+=usr/include/c++/4.2/bits/cxxabi_tweaks.h
+OLD_FILES+=usr/include/c++/4.2/bits/deque.tcc
+OLD_FILES+=usr/include/c++/4.2/bits/fstream.tcc
+OLD_FILES+=usr/include/c++/4.2/bits/functexcept.h
+OLD_FILES+=usr/include/c++/4.2/bits/gslice.h
+OLD_FILES+=usr/include/c++/4.2/bits/gslice_array.h
+OLD_FILES+=usr/include/c++/4.2/bits/gthr-default.h
+OLD_FILES+=usr/include/c++/4.2/bits/gthr-posix.h
+OLD_FILES+=usr/include/c++/4.2/bits/gthr-single.h
+OLD_FILES+=usr/include/c++/4.2/bits/gthr-tpf.h
+OLD_FILES+=usr/include/c++/4.2/bits/gthr.h
+OLD_FILES+=usr/include/c++/4.2/bits/indirect_array.h
+OLD_FILES+=usr/include/c++/4.2/bits/ios_base.h
+OLD_FILES+=usr/include/c++/4.2/bits/istream.tcc
+OLD_FILES+=usr/include/c++/4.2/bits/list.tcc
+OLD_FILES+=usr/include/c++/4.2/bits/locale_classes.h
+OLD_FILES+=usr/include/c++/4.2/bits/locale_facets.h
+OLD_FILES+=usr/include/c++/4.2/bits/locale_facets.tcc
+OLD_FILES+=usr/include/c++/4.2/bits/localefwd.h
+OLD_FILES+=usr/include/c++/4.2/bits/mask_array.h
+OLD_FILES+=usr/include/c++/4.2/bits/messages_members.h
+OLD_FILES+=usr/include/c++/4.2/bits/os_defines.h
+OLD_FILES+=usr/include/c++/4.2/bits/ostream.tcc
+OLD_FILES+=usr/include/c++/4.2/bits/ostream_insert.h
+OLD_FILES+=usr/include/c++/4.2/bits/postypes.h
+OLD_FILES+=usr/include/c++/4.2/bits/slice_array.h
+OLD_FILES+=usr/include/c++/4.2/bits/sstream.tcc
+OLD_FILES+=usr/include/c++/4.2/bits/stl_algo.h
+OLD_FILES+=usr/include/c++/4.2/bits/stl_algobase.h
+OLD_FILES+=usr/include/c++/4.2/bits/stl_bvector.h
+OLD_FILES+=usr/include/c++/4.2/bits/stl_construct.h
+OLD_FILES+=usr/include/c++/4.2/bits/stl_deque.h
+OLD_FILES+=usr/include/c++/4.2/bits/stl_function.h
+OLD_FILES+=usr/include/c++/4.2/bits/stl_heap.h
+OLD_FILES+=usr/include/c++/4.2/bits/stl_iterator.h
+OLD_FILES+=usr/include/c++/4.2/bits/stl_iterator_base_funcs.h
+OLD_FILES+=usr/include/c++/4.2/bits/stl_iterator_base_types.h
+OLD_FILES+=usr/include/c++/4.2/bits/stl_list.h
+OLD_FILES+=usr/include/c++/4.2/bits/stl_map.h
+OLD_FILES+=usr/include/c++/4.2/bits/stl_multimap.h
+OLD_FILES+=usr/include/c++/4.2/bits/stl_multiset.h
+OLD_FILES+=usr/include/c++/4.2/bits/stl_numeric.h
+OLD_FILES+=usr/include/c++/4.2/bits/stl_pair.h
+OLD_FILES+=usr/include/c++/4.2/bits/stl_queue.h
+OLD_FILES+=usr/include/c++/4.2/bits/stl_raw_storage_iter.h
+OLD_FILES+=usr/include/c++/4.2/bits/stl_relops.h
+OLD_FILES+=usr/include/c++/4.2/bits/stl_set.h
+OLD_FILES+=usr/include/c++/4.2/bits/stl_stack.h
+OLD_FILES+=usr/include/c++/4.2/bits/stl_tempbuf.h
+OLD_FILES+=usr/include/c++/4.2/bits/stl_tree.h
+OLD_FILES+=usr/include/c++/4.2/bits/stl_uninitialized.h
+OLD_FILES+=usr/include/c++/4.2/bits/stl_vector.h
+OLD_FILES+=usr/include/c++/4.2/bits/stream_iterator.h
+OLD_FILES+=usr/include/c++/4.2/bits/streambuf.tcc
+OLD_FILES+=usr/include/c++/4.2/bits/streambuf_iterator.h
+OLD_FILES+=usr/include/c++/4.2/bits/stringfwd.h
+OLD_FILES+=usr/include/c++/4.2/bits/time_members.h
+OLD_FILES+=usr/include/c++/4.2/bits/valarray_after.h
+OLD_FILES+=usr/include/c++/4.2/bits/valarray_array.h
+OLD_FILES+=usr/include/c++/4.2/bits/valarray_array.tcc
+OLD_FILES+=usr/include/c++/4.2/bits/valarray_before.h
+OLD_FILES+=usr/include/c++/4.2/bits/vector.tcc
+OLD_FILES+=usr/include/c++/4.2/bitset
+OLD_FILES+=usr/include/c++/4.2/cassert
+OLD_FILES+=usr/include/c++/4.2/cctype
+OLD_FILES+=usr/include/c++/4.2/cerrno
+OLD_FILES+=usr/include/c++/4.2/cfloat
+OLD_FILES+=usr/include/c++/4.2/ciso646
+OLD_FILES+=usr/include/c++/4.2/climits
+OLD_FILES+=usr/include/c++/4.2/clocale
+OLD_FILES+=usr/include/c++/4.2/cmath
+OLD_FILES+=usr/include/c++/4.2/complex
+OLD_FILES+=usr/include/c++/4.2/csetjmp
+OLD_FILES+=usr/include/c++/4.2/csignal
+OLD_FILES+=usr/include/c++/4.2/cstdarg
+OLD_FILES+=usr/include/c++/4.2/cstddef
+OLD_FILES+=usr/include/c++/4.2/cstdio
+OLD_FILES+=usr/include/c++/4.2/cstdlib
+OLD_FILES+=usr/include/c++/4.2/cstring
+OLD_FILES+=usr/include/c++/4.2/ctime
+OLD_FILES+=usr/include/c++/4.2/cwchar
+OLD_FILES+=usr/include/c++/4.2/cwctype
+OLD_FILES+=usr/include/c++/4.2/cxxabi.h
+OLD_FILES+=usr/include/c++/4.2/debug/bitset
+OLD_FILES+=usr/include/c++/4.2/debug/debug.h
+OLD_FILES+=usr/include/c++/4.2/debug/deque
+OLD_FILES+=usr/include/c++/4.2/debug/formatter.h
+OLD_FILES+=usr/include/c++/4.2/debug/functions.h
+OLD_FILES+=usr/include/c++/4.2/debug/hash_map
+OLD_FILES+=usr/include/c++/4.2/debug/hash_map.h
+OLD_FILES+=usr/include/c++/4.2/debug/hash_multimap.h
+OLD_FILES+=usr/include/c++/4.2/debug/hash_multiset.h
+OLD_FILES+=usr/include/c++/4.2/debug/hash_set
+OLD_FILES+=usr/include/c++/4.2/debug/hash_set.h
+OLD_FILES+=usr/include/c++/4.2/debug/list
+OLD_FILES+=usr/include/c++/4.2/debug/macros.h
+OLD_FILES+=usr/include/c++/4.2/debug/map
+OLD_FILES+=usr/include/c++/4.2/debug/map.h
+OLD_FILES+=usr/include/c++/4.2/debug/multimap.h
+OLD_FILES+=usr/include/c++/4.2/debug/multiset.h
+OLD_FILES+=usr/include/c++/4.2/debug/safe_base.h
+OLD_FILES+=usr/include/c++/4.2/debug/safe_iterator.h
+OLD_FILES+=usr/include/c++/4.2/debug/safe_iterator.tcc
+OLD_FILES+=usr/include/c++/4.2/debug/safe_sequence.h
+OLD_FILES+=usr/include/c++/4.2/debug/set
+OLD_FILES+=usr/include/c++/4.2/debug/set.h
+OLD_FILES+=usr/include/c++/4.2/debug/string
+OLD_FILES+=usr/include/c++/4.2/debug/vector
+OLD_FILES+=usr/include/c++/4.2/deque
+OLD_FILES+=usr/include/c++/4.2/exception
+OLD_FILES+=usr/include/c++/4.2/exception_defines.h
+OLD_FILES+=usr/include/c++/4.2/ext/algorithm
+OLD_FILES+=usr/include/c++/4.2/ext/array_allocator.h
+OLD_FILES+=usr/include/c++/4.2/ext/atomicity.h
+OLD_FILES+=usr/include/c++/4.2/ext/bitmap_allocator.h
+OLD_FILES+=usr/include/c++/4.2/ext/codecvt_specializations.h
+OLD_FILES+=usr/include/c++/4.2/ext/concurrence.h
+OLD_FILES+=usr/include/c++/4.2/ext/debug_allocator.h
+OLD_FILES+=usr/include/c++/4.2/ext/functional
+OLD_FILES+=usr/include/c++/4.2/ext/hash_fun.h
+OLD_FILES+=usr/include/c++/4.2/ext/hash_map
+OLD_FILES+=usr/include/c++/4.2/ext/hash_set
+OLD_FILES+=usr/include/c++/4.2/ext/hashtable.h
+OLD_FILES+=usr/include/c++/4.2/ext/iterator
+OLD_FILES+=usr/include/c++/4.2/ext/malloc_allocator.h
+OLD_FILES+=usr/include/c++/4.2/ext/memory
+OLD_FILES+=usr/include/c++/4.2/ext/mt_allocator.h
+OLD_FILES+=usr/include/c++/4.2/ext/new_allocator.h
+OLD_FILES+=usr/include/c++/4.2/ext/numeric
+OLD_FILES+=usr/include/c++/4.2/ext/numeric_traits.h
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/assoc_container.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/basic_tree_policy/basic_tree_policy_base.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/basic_tree_policy/null_node_metadata.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/basic_tree_policy/traits.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/basic_types.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/bin_search_tree_/bin_search_tree_.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/bin_search_tree_/cond_dtor_entry_dealtor.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/bin_search_tree_/cond_key_dtor_entry_dealtor.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/bin_search_tree_/constructors_destructor_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/bin_search_tree_/debug_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/bin_search_tree_/erase_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/bin_search_tree_/find_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/bin_search_tree_/info_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/bin_search_tree_/insert_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/bin_search_tree_/iterators_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/bin_search_tree_/node_iterators.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/bin_search_tree_/point_iterators.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/bin_search_tree_/policy_access_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/bin_search_tree_/r_erase_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/bin_search_tree_/rotate_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/bin_search_tree_/split_join_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/bin_search_tree_/traits.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/binary_heap_/binary_heap_.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/binary_heap_/const_iterator.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/binary_heap_/const_point_iterator.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/binary_heap_/constructors_destructor_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/binary_heap_/debug_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/binary_heap_/entry_cmp.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/binary_heap_/entry_pred.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/binary_heap_/erase_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/binary_heap_/find_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/binary_heap_/info_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/binary_heap_/insert_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/binary_heap_/iterators_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/binary_heap_/policy_access_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/binary_heap_/resize_policy.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/binary_heap_/split_join_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/binary_heap_/trace_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/binomial_heap_/binomial_heap_.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/binomial_heap_/constructors_destructor_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/binomial_heap_/debug_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/binomial_heap_base_/binomial_heap_base_.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/binomial_heap_base_/constructors_destructor_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/binomial_heap_base_/debug_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/binomial_heap_base_/erase_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/binomial_heap_base_/find_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/binomial_heap_base_/insert_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/binomial_heap_base_/split_join_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/cc_hash_table_map_/cc_ht_map_.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/cc_hash_table_map_/cmp_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/cc_hash_table_map_/cond_key_dtor_entry_dealtor.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/cc_hash_table_map_/debug_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/cc_hash_table_map_/debug_no_store_hash_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/cc_hash_table_map_/debug_store_hash_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/cc_hash_table_map_/entry_list_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/cc_hash_table_map_/erase_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/cc_hash_table_map_/erase_no_store_hash_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/cc_hash_table_map_/erase_store_hash_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/cc_hash_table_map_/find_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/cc_hash_table_map_/find_store_hash_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/cc_hash_table_map_/info_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/cc_hash_table_map_/insert_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/cc_hash_table_map_/insert_no_store_hash_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/cc_hash_table_map_/insert_store_hash_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/cc_hash_table_map_/iterators_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/cc_hash_table_map_/policy_access_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/cc_hash_table_map_/resize_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/cc_hash_table_map_/resize_no_store_hash_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/cc_hash_table_map_/resize_store_hash_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/cc_hash_table_map_/size_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/cc_hash_table_map_/standard_policies.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/cc_hash_table_map_/trace_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/cond_dealtor.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/constructors_destructor_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/container_base_dispatch.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/eq_fn/eq_by_less.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/eq_fn/hash_eq_fn.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/gp_hash_table_map_/debug_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/gp_hash_table_map_/debug_no_store_hash_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/gp_hash_table_map_/debug_store_hash_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/gp_hash_table_map_/erase_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/gp_hash_table_map_/erase_no_store_hash_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/gp_hash_table_map_/erase_store_hash_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/gp_hash_table_map_/find_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/gp_hash_table_map_/find_no_store_hash_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/gp_hash_table_map_/find_store_hash_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/gp_hash_table_map_/gp_ht_map_.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/gp_hash_table_map_/info_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/gp_hash_table_map_/insert_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/gp_hash_table_map_/insert_no_store_hash_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/gp_hash_table_map_/insert_store_hash_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/gp_hash_table_map_/iterator_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/gp_hash_table_map_/policy_access_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/gp_hash_table_map_/resize_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/gp_hash_table_map_/resize_no_store_hash_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/gp_hash_table_map_/resize_store_hash_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/gp_hash_table_map_/standard_policies.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/gp_hash_table_map_/trace_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/hash_fn/direct_mask_range_hashing_imp.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/hash_fn/direct_mod_range_hashing_imp.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/hash_fn/linear_probe_fn_imp.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/hash_fn/mask_based_range_hashing.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/hash_fn/mod_based_range_hashing.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/hash_fn/probe_fn_base.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/hash_fn/quadratic_probe_fn_imp.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/hash_fn/ranged_hash_fn.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/hash_fn/ranged_probe_fn.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/hash_fn/sample_probe_fn.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/hash_fn/sample_range_hashing.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/hash_fn/sample_ranged_hash_fn.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/hash_fn/sample_ranged_probe_fn.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/left_child_next_sibling_heap_/const_iterator.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/left_child_next_sibling_heap_/const_point_iterator.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/left_child_next_sibling_heap_/constructors_destructor_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/left_child_next_sibling_heap_/debug_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/left_child_next_sibling_heap_/erase_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/left_child_next_sibling_heap_/info_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/left_child_next_sibling_heap_/insert_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/left_child_next_sibling_heap_/iterators_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/left_child_next_sibling_heap_/left_child_next_sibling_heap_.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/left_child_next_sibling_heap_/node.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/left_child_next_sibling_heap_/null_metadata.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/left_child_next_sibling_heap_/policy_access_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/left_child_next_sibling_heap_/trace_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/list_update_map_/constructor_destructor_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/list_update_map_/debug_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/list_update_map_/entry_metadata_base.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/list_update_map_/erase_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/list_update_map_/find_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/list_update_map_/info_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/list_update_map_/insert_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/list_update_map_/iterators_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/list_update_map_/lu_map_.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/list_update_map_/trace_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/list_update_policy/counter_lu_metadata.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/list_update_policy/counter_lu_policy_imp.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/list_update_policy/mtf_lu_policy_imp.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/list_update_policy/sample_update_policy.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/map_debug_base.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/ov_tree_map_/cond_dtor.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/ov_tree_map_/constructors_destructor_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/ov_tree_map_/debug_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/ov_tree_map_/erase_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/ov_tree_map_/info_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/ov_tree_map_/insert_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/ov_tree_map_/iterators_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/ov_tree_map_/node_iterators.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/ov_tree_map_/ov_tree_map_.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/ov_tree_map_/policy_access_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/ov_tree_map_/split_join_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/ov_tree_map_/traits.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pairing_heap_/constructors_destructor_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pairing_heap_/debug_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pairing_heap_/erase_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pairing_heap_/find_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pairing_heap_/insert_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pairing_heap_/pairing_heap_.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pairing_heap_/split_join_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pat_trie_/child_iterator.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pat_trie_/cond_dtor_entry_dealtor.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pat_trie_/const_child_iterator.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pat_trie_/constructors_destructor_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pat_trie_/debug_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pat_trie_/erase_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pat_trie_/find_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pat_trie_/head.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pat_trie_/info_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pat_trie_/insert_join_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pat_trie_/internal_node.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pat_trie_/iterators_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pat_trie_/leaf.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pat_trie_/node_base.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pat_trie_/node_iterators.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pat_trie_/node_metadata_base.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pat_trie_/pat_trie_.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pat_trie_/point_iterators.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pat_trie_/policy_access_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pat_trie_/r_erase_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pat_trie_/rotate_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pat_trie_/split_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pat_trie_/split_join_branch_bag.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pat_trie_/synth_e_access_traits.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pat_trie_/trace_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pat_trie_/traits.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pat_trie_/update_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/priority_queue_base_dispatch.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/rb_tree_map_/constructors_destructor_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/rb_tree_map_/debug_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/rb_tree_map_/erase_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/rb_tree_map_/find_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/rb_tree_map_/info_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/rb_tree_map_/insert_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/rb_tree_map_/node.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/rb_tree_map_/rb_tree_.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/rb_tree_map_/split_join_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/rb_tree_map_/traits.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/rc_binomial_heap_/constructors_destructor_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/rc_binomial_heap_/debug_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/rc_binomial_heap_/erase_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/rc_binomial_heap_/insert_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/rc_binomial_heap_/rc.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/rc_binomial_heap_/rc_binomial_heap_.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/rc_binomial_heap_/split_join_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/rc_binomial_heap_/trace_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/resize_policy/cc_hash_max_collision_check_resize_trigger_imp.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/resize_policy/hash_exponential_size_policy_imp.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/resize_policy/hash_load_check_resize_trigger_imp.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/resize_policy/hash_load_check_resize_trigger_size_base.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/resize_policy/hash_prime_size_policy_imp.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/resize_policy/hash_standard_resize_policy_imp.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/resize_policy/sample_resize_policy.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/resize_policy/sample_resize_trigger.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/resize_policy/sample_size_policy.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/splay_tree_/constructors_destructor_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/splay_tree_/debug_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/splay_tree_/erase_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/splay_tree_/find_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/splay_tree_/info_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/splay_tree_/insert_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/splay_tree_/node.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/splay_tree_/splay_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/splay_tree_/splay_tree_.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/splay_tree_/split_join_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/splay_tree_/traits.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/standard_policies.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/thin_heap_/constructors_destructor_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/thin_heap_/debug_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/thin_heap_/erase_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/thin_heap_/find_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/thin_heap_/insert_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/thin_heap_/split_join_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/thin_heap_/thin_heap_.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/thin_heap_/trace_fn_imps.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/tree_policy/node_metadata_selector.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/tree_policy/null_node_update_imp.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/tree_policy/order_statistics_imp.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/tree_policy/sample_tree_node_update.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/tree_trace_base.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/trie_policy/node_metadata_selector.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/trie_policy/null_node_update_imp.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/trie_policy/order_statistics_imp.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/trie_policy/prefix_search_node_update_imp.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/trie_policy/sample_trie_e_access_traits.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/trie_policy/sample_trie_node_update.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/trie_policy/string_trie_e_access_traits_imp.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/trie_policy/trie_policy_base.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/type_utils.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/types_traits.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/unordered_iterator/const_iterator.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/unordered_iterator/const_point_iterator.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/unordered_iterator/iterator.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/unordered_iterator/point_iterator.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/exception.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/hash_policy.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/list_update_policy.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/priority_queue.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/tag_and_trait.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/tree_policy.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/trie_policy.hpp
+OLD_FILES+=usr/include/c++/4.2/ext/pod_char_traits.h
+OLD_FILES+=usr/include/c++/4.2/ext/pool_allocator.h
+OLD_FILES+=usr/include/c++/4.2/ext/rb_tree
+OLD_FILES+=usr/include/c++/4.2/ext/rc_string_base.h
+OLD_FILES+=usr/include/c++/4.2/ext/rope
+OLD_FILES+=usr/include/c++/4.2/ext/ropeimpl.h
+OLD_FILES+=usr/include/c++/4.2/ext/slist
+OLD_FILES+=usr/include/c++/4.2/ext/sso_string_base.h
+OLD_FILES+=usr/include/c++/4.2/ext/stdio_filebuf.h
+OLD_FILES+=usr/include/c++/4.2/ext/stdio_sync_filebuf.h
+OLD_FILES+=usr/include/c++/4.2/ext/throw_allocator.h
+OLD_FILES+=usr/include/c++/4.2/ext/type_traits.h
+OLD_FILES+=usr/include/c++/4.2/ext/typelist.h
+OLD_FILES+=usr/include/c++/4.2/ext/vstring.h
+OLD_FILES+=usr/include/c++/4.2/ext/vstring.tcc
+OLD_FILES+=usr/include/c++/4.2/ext/vstring_fwd.h
+OLD_FILES+=usr/include/c++/4.2/ext/vstring_util.h
+OLD_FILES+=usr/include/c++/4.2/fstream
+OLD_FILES+=usr/include/c++/4.2/functional
+OLD_FILES+=usr/include/c++/4.2/iomanip
+OLD_FILES+=usr/include/c++/4.2/ios
+OLD_FILES+=usr/include/c++/4.2/iosfwd
+OLD_FILES+=usr/include/c++/4.2/iostream
+OLD_FILES+=usr/include/c++/4.2/istream
+OLD_FILES+=usr/include/c++/4.2/iterator
+OLD_FILES+=usr/include/c++/4.2/limits
+OLD_FILES+=usr/include/c++/4.2/list
+OLD_FILES+=usr/include/c++/4.2/locale
+OLD_FILES+=usr/include/c++/4.2/map
+OLD_FILES+=usr/include/c++/4.2/memory
+OLD_FILES+=usr/include/c++/4.2/new
+OLD_FILES+=usr/include/c++/4.2/numeric
+OLD_FILES+=usr/include/c++/4.2/ostream
+OLD_FILES+=usr/include/c++/4.2/queue
+OLD_FILES+=usr/include/c++/4.2/set
+OLD_FILES+=usr/include/c++/4.2/sstream
+OLD_FILES+=usr/include/c++/4.2/stack
+OLD_FILES+=usr/include/c++/4.2/stdexcept
+OLD_FILES+=usr/include/c++/4.2/streambuf
+OLD_FILES+=usr/include/c++/4.2/string
+OLD_FILES+=usr/include/c++/4.2/tr1/array
+OLD_FILES+=usr/include/c++/4.2/tr1/bind_iterate.h
+OLD_FILES+=usr/include/c++/4.2/tr1/bind_repeat.h
+OLD_FILES+=usr/include/c++/4.2/tr1/boost_shared_ptr.h
+OLD_FILES+=usr/include/c++/4.2/tr1/cctype
+OLD_FILES+=usr/include/c++/4.2/tr1/cfenv
+OLD_FILES+=usr/include/c++/4.2/tr1/cfloat
+OLD_FILES+=usr/include/c++/4.2/tr1/cinttypes
+OLD_FILES+=usr/include/c++/4.2/tr1/climits
+OLD_FILES+=usr/include/c++/4.2/tr1/cmath
+OLD_FILES+=usr/include/c++/4.2/tr1/common.h
+OLD_FILES+=usr/include/c++/4.2/tr1/complex
+OLD_FILES+=usr/include/c++/4.2/tr1/cstdarg
+OLD_FILES+=usr/include/c++/4.2/tr1/cstdbool
+OLD_FILES+=usr/include/c++/4.2/tr1/cstdint
+OLD_FILES+=usr/include/c++/4.2/tr1/cstdio
+OLD_FILES+=usr/include/c++/4.2/tr1/cstdlib
+OLD_FILES+=usr/include/c++/4.2/tr1/ctgmath
+OLD_FILES+=usr/include/c++/4.2/tr1/ctime
+OLD_FILES+=usr/include/c++/4.2/tr1/ctype.h
+OLD_FILES+=usr/include/c++/4.2/tr1/cwchar
+OLD_FILES+=usr/include/c++/4.2/tr1/cwctype
+OLD_FILES+=usr/include/c++/4.2/tr1/fenv.h
+OLD_FILES+=usr/include/c++/4.2/tr1/float.h
+OLD_FILES+=usr/include/c++/4.2/tr1/functional
+OLD_FILES+=usr/include/c++/4.2/tr1/functional_hash.h
+OLD_FILES+=usr/include/c++/4.2/tr1/functional_iterate.h
+OLD_FILES+=usr/include/c++/4.2/tr1/hashtable
+OLD_FILES+=usr/include/c++/4.2/tr1/hashtable_policy.h
+OLD_FILES+=usr/include/c++/4.2/tr1/inttypes.h
+OLD_FILES+=usr/include/c++/4.2/tr1/limits.h
+OLD_FILES+=usr/include/c++/4.2/tr1/math.h
+OLD_FILES+=usr/include/c++/4.2/tr1/memory
+OLD_FILES+=usr/include/c++/4.2/tr1/mu_iterate.h
+OLD_FILES+=usr/include/c++/4.2/tr1/random
+OLD_FILES+=usr/include/c++/4.2/tr1/random.tcc
+OLD_FILES+=usr/include/c++/4.2/tr1/ref_fwd.h
+OLD_FILES+=usr/include/c++/4.2/tr1/ref_wrap_iterate.h
+OLD_FILES+=usr/include/c++/4.2/tr1/repeat.h
+OLD_FILES+=usr/include/c++/4.2/tr1/stdarg.h
+OLD_FILES+=usr/include/c++/4.2/tr1/stdbool.h
+OLD_FILES+=usr/include/c++/4.2/tr1/stdint.h
+OLD_FILES+=usr/include/c++/4.2/tr1/stdio.h
+OLD_FILES+=usr/include/c++/4.2/tr1/stdlib.h
+OLD_FILES+=usr/include/c++/4.2/tr1/tgmath.h
+OLD_FILES+=usr/include/c++/4.2/tr1/tuple
+OLD_FILES+=usr/include/c++/4.2/tr1/tuple_defs.h
+OLD_FILES+=usr/include/c++/4.2/tr1/tuple_iterate.h
+OLD_FILES+=usr/include/c++/4.2/tr1/type_traits
+OLD_FILES+=usr/include/c++/4.2/tr1/type_traits_fwd.h
+OLD_FILES+=usr/include/c++/4.2/tr1/unordered_map
+OLD_FILES+=usr/include/c++/4.2/tr1/unordered_set
+OLD_FILES+=usr/include/c++/4.2/tr1/utility
+OLD_FILES+=usr/include/c++/4.2/tr1/wchar.h
+OLD_FILES+=usr/include/c++/4.2/tr1/wctype.h
+OLD_FILES+=usr/include/c++/4.2/typeinfo
+OLD_FILES+=usr/include/c++/4.2/utility
+OLD_FILES+=usr/include/c++/4.2/valarray
+OLD_FILES+=usr/include/c++/4.2/vector
+.if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "i386"
+OLD_FILES+=usr/include/gcc/4.2/__wmmintrin_aes.h
+OLD_FILES+=usr/include/gcc/4.2/__wmmintrin_pclmul.h
+OLD_FILES+=usr/include/gcc/4.2/ammintrin.h
+OLD_FILES+=usr/include/gcc/4.2/emmintrin.h
+OLD_FILES+=usr/include/gcc/4.2/mm3dnow.h
+OLD_FILES+=usr/include/gcc/4.2/mm_malloc.h
+OLD_FILES+=usr/include/gcc/4.2/mmintrin.h
+OLD_FILES+=usr/include/gcc/4.2/pmmintrin.h
+OLD_FILES+=usr/include/gcc/4.2/tmmintrin.h
+OLD_FILES+=usr/include/gcc/4.2/wmmintrin.h
+OLD_FILES+=usr/include/gcc/4.2/xmmintrin.h
+.elif ${TARGET_ARCH} == "arm"
+OLD_FILES+=usr/include/gcc/4.2/mmintrin.h
+.elif ${TARGET_ARCH} == "powerpc" || ${TARGET_ARCH} == "powerpc64"
+OLD_FILES+=usr/include/gcc/4.2/altivec.h
+OLD_FILES+=usr/include/gcc/4.2/ppc-asm.h
+OLD_FILES+=usr/include/gcc/4.2/spe.h
+.endif
+OLD_FILES+=usr/lib/libgcov.a
+OLD_FILES+=usr/lib/libgomp.a
+OLD_FILES+=usr/lib/libstdc++.a
+OLD_FILES+=usr/lib/libstdc++.so
+OLD_LIBS+=usr/lib/libstdc++.so.6
+OLD_FILES+=usr/lib/libstdc++_p.a
+OLD_FILES+=usr/lib/libsupc++.a
+OLD_FILES+=usr/lib/libsupc++.so
+OLD_LIBS+=usr/lib/libsupc++.so.1
+OLD_FILES+=usr/lib/libsupc++_p.a
+.if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "powerpc64"
+OLD_FILES+=usr/lib32/libstdc++.a
+OLD_FILES+=usr/lib32/libstdc++.so
+OLD_LIBS+=usr/lib32/libstdc++.so.6
+OLD_FILES+=usr/lib32/libstdc++_p.a
+OLD_FILES+=usr/lib32/libsupc++.a
+OLD_FILES+=usr/lib32/libsupc++.so
+OLD_LIBS+=usr/lib32/libsupc++.so.1
+OLD_FILES+=usr/lib32/libsupc++_p.a
+.endif
+OLD_FILES+=usr/libexec/cc1plus
+OLD_LIBS+=usr/lib/libgomp.so.1
+OLD_FILES+=usr/lib/libgomp_p.a
+OLD_FILES+=usr/lib32/libgcov.a
+OLD_FILES+=usr/lib32/libgomp.a
+OLD_LIBS+=usr/lib32/libgomp.so.1
+OLD_FILES+=usr/lib32/libgomp_p.a
+OLD_FILES+=usr/libexec/cc1
+OLD_FILES+=usr/libexec/cc1plus
+OLD_FILES+=usr/share/man/man1/gcpp.1.gz
+OLD_FILES+=usr/share/man/man1/gperf.1.gz
+OLD_FILES+=usr/share/man/man1/gperf.7.gz
+
# 20200220: Upgrade of ncurses, shlib bumped to version 9
OLD_LIBS+=lib/libncurses.so.8
OLD_LIBS+=lib/libncursesw.so.8
Modified: head/UPDATING
==============================================================================
--- head/UPDATING Fri Feb 28 22:00:50 2020 (r358453)
+++ head/UPDATING Sat Feb 29 03:25:51 2020 (r358454)
@@ -26,6 +26,12 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 13.x IS SLOW:
disable the most expensive debugging functionality run
"ln -s 'abort:false,junk:false' /etc/malloc.conf".)
+20200229:
+ GCC 4.2.1 has been removed from the tree. The WITH_GCC,
+ WITH_GCC_BOOTSTRAP, and WITH_GNUCXX options are no longer available.
+ Users who wish to build FreeBSD with GCC must use the external toolchain
+ ports or packages.
+
20200220:
ncurses has been updated to a newer version (6.2-20200215). Given the ABI
has changed, users will have to rebuild all the ports that are linked to
Modified: head/etc/mtree/BSD.include.dist
==============================================================================
--- head/etc/mtree/BSD.include.dist Fri Feb 28 22:00:50 2020 (r358453)
+++ head/etc/mtree/BSD.include.dist Sat Feb 29 03:25:51 2020 (r358454)
@@ -16,68 +16,6 @@
bsnmp
..
c++
- 4.2
- backward
- ..
- bits
- ..
- debug
- ..
- ext
- pb_ds
- detail
- basic_tree_policy
- ..
- bin_search_tree_
- ..
- binary_heap_
- ..
- binomial_heap_
- ..
- binomial_heap_base_
- ..
- cc_hash_table_map_
- ..
- eq_fn
- ..
- gp_hash_table_map_
- ..
- hash_fn
- ..
- left_child_next_sibling_heap_
- ..
- list_update_map_
- ..
- list_update_policy
- ..
- ov_tree_map_
- ..
- pairing_heap_
- ..
- pat_trie_
- ..
- rb_tree_map_
- ..
- rc_binomial_heap_
- ..
- resize_policy
- ..
- splay_tree_
- ..
- thin_heap_
- ..
- tree_policy
- ..
- trie_policy
- ..
- unordered_iterator
- ..
- ..
- ..
- ..
- tr1
- ..
- ..
v1
experimental
..
Modified: head/gnu/lib/Makefile
==============================================================================
--- head/gnu/lib/Makefile Fri Feb 28 22:00:50 2020 (r358453)
+++ head/gnu/lib/Makefile Sat Feb 29 03:25:51 2020 (r358454)
@@ -4,22 +4,11 @@
SUBDIR=
SUBDIR.${MK_DIALOG}+= libdialog
-SUBDIR.${MK_GCC}+= libgcov
-.if ${MK_GCC} != "no" && ${MK_OPENMP} == "no"
-SUBDIR+= libgomp
-.endif
SUBDIR.${MK_TESTS}+= tests
.if ${MK_GNU_GREP} != "no" || ${MK_GNU_GREP_COMPAT} != "no" || \
${MK_GDB} != "no"
SUBDIR+= libregex
-.endif
-
-# libsupc++ uses libstdc++ headers, although 'make includes' should
-# have taken care of that already.
-.if ${MK_GNUCXX} != "no"
-SUBDIR+= libstdc++ libsupc++
-SUBDIR_DEPENDS_libsupc++:= libstdc++
.endif
SUBDIR_PARALLEL=
Modified: head/gnu/usr.bin/Makefile
==============================================================================
--- head/gnu/usr.bin/Makefile Fri Feb 28 22:00:50 2020 (r358453)
+++ head/gnu/usr.bin/Makefile Sat Feb 29 03:25:51 2020 (r358454)
@@ -3,16 +3,11 @@
.include <src.opts.mk>
-.if ${MK_CXX} != "no"
-SUBDIR.${MK_GCC}+= gperf
-.endif
-
.if ${MK_GDB} != "no" || ${MK_BINUTILS} != "no"
SUBDIR+= binutils
.endif
SUBDIR.${MK_DIALOG}+= dialog
-SUBDIR.${MK_GCC}+= cc
SUBDIR.${MK_GNU_DIFF}+= diff3
SUBDIR.${MK_GNU_GREP}+= grep
SUBDIR.${MK_GDB}+= gdb
Modified: head/share/mk/local.dirdeps.mk
==============================================================================
--- head/share/mk/local.dirdeps.mk Fri Feb 28 22:00:50 2020 (r358453)
+++ head/share/mk/local.dirdeps.mk Sat Feb 29 03:25:51 2020 (r358454)
@@ -172,8 +172,6 @@ DIRDEPS+= ${C_DIRDEPS}
DIRDEPS+= ${C_DIRDEPS}
.if ${MK_CLANG} == "yes"
DIRDEPS+= lib/libc++ lib/libcxxrt
-.else
-DIRDEPS+= gnu/lib/libstdc++ gnu/lib/libsupc++
.endif
# XXX: Clang and GCC always adds -lm currently, even when not needed.
DIRDEPS+= lib/msun
Modified: head/share/mk/src.libnames.mk
==============================================================================
--- head/share/mk/src.libnames.mk Fri Feb 28 22:00:50 2020 (r358453)
+++ head/share/mk/src.libnames.mk Sat Feb 29 03:25:51 2020 (r358454)
@@ -564,12 +564,9 @@ LIBOPENSMDIR= ${OBJTOP}/lib/ofed/libopensm
LIBOSMVENDORDIR=${OBJTOP}/lib/ofed/libvendor
LIBDIALOGDIR= ${OBJTOP}/gnu/lib/libdialog
-LIBGCOVDIR= ${OBJTOP}/gnu/lib/libgcov
-LIBGOMPDIR= ${OBJTOP}/gnu/lib/libgomp
LIBGNUREGEXDIR= ${OBJTOP}/gnu/lib/libregex
LIBSSPDIR= ${OBJTOP}/lib/libssp
LIBSSP_NONSHAREDDIR= ${OBJTOP}/lib/libssp_nonshared
-LIBSUPCPLUSPLUSDIR= ${OBJTOP}/gnu/lib/libsupc++
LIBASN1DIR= ${OBJTOP}/kerberos5/lib/libasn1
LIBGSSAPI_KRB5DIR= ${OBJTOP}/kerberos5/lib/libgssapi_krb5
LIBGSSAPI_NTLMDIR= ${OBJTOP}/kerberos5/lib/libgssapi_ntlm
Modified: head/share/mk/src.opts.mk
==============================================================================
--- head/share/mk/src.opts.mk Fri Feb 28 22:00:50 2020 (r358453)
+++ head/share/mk/src.opts.mk Sat Feb 29 03:25:51 2020 (r358454)
@@ -199,10 +199,6 @@ __DEFAULT_NO_OPTIONS = \
CLANG_EXTRAS \
DTRACE_TESTS \
EXPERIMENTAL \
- GCC \
- GCC_BOOTSTRAP \
- GCOV \
- GNUCXX \
GNU_GREP_COMPAT \
GPL_DTC \
*** DIFF OUTPUT TRUNCATED AT 1000 LINES ***
More information about the svn-src-all
mailing list