From 871207da387a204bb88eb08abde6574b448ed870 Mon Sep 17 00:00:00 2001
From: Marcel Telka <marcel@telka.sk>
Date: Mon, 25 Dec 2023 10:30:59 +0100
Subject: [PATCH] illumos-gcc: fix build

---
 components/openindiana/illumos-gcc/illumos-gcc.p5m                  | 1714 ++++++++++++++--------------
 components/openindiana/illumos-gcc/patches/01-texinfo.patch         |   23 
 components/openindiana/illumos-gcc/patches/03-mpfr-headers.patch    |    4 
 components/openindiana/illumos-gcc/patches/06-64bit.patch           |   21 
 components/openindiana/illumos-gcc/manifests/sample-manifest.p5m    | 1723 ++++++++++++++---------------
 components/openindiana/illumos-gcc/patches/02-install.texi.patch    |    4 
 components/openindiana/illumos-gcc/Makefile                         |   34 
 components/openindiana/illumos-gcc/pkg5                             |    2 
 components/openindiana/illumos-gcc/patches/05-texinfo-no-warn.patch |    6 
 components/openindiana/illumos-gcc/patches/04-static.patch          |    4 
 10 files changed, 1,737 insertions(+), 1,798 deletions(-)

diff --git a/components/openindiana/illumos-gcc/Makefile b/components/openindiana/illumos-gcc/Makefile
index f4ec4b3..0896671 100644
--- a/components/openindiana/illumos-gcc/Makefile
+++ b/components/openindiana/illumos-gcc/Makefile
@@ -11,6 +11,10 @@
 #
 # Copyright 2012, Jon Tibble
 #
+
+BUILD_BITS = 32
+USE_PARALLEL_BUILD = yes
+
 include ../../../make-rules/shared-macros.mk
 
 COMPONENT_NAME=		illumos-gcc
@@ -62,11 +66,9 @@
 CLEAN_PATHS += $(COMPONENT_SRC_3)
 COMPONENT_POST_UNPACK_ACTION_3 += ( $(RM) -r $(COMPONENT_SRC)/$(GMP_NAME) && $(CP) -rpP $(COMPONENT_SRC_3) $(COMPONENT_SRC)/$(GMP_NAME) )
 
-include $(WS_MAKE_RULES)/prep.mk
-include $(WS_MAKE_RULES)/configure.mk
-include $(WS_MAKE_RULES)/ips.mk
+include $(WS_MAKE_RULES)/common.mk
 
-GCC_VERSION=4.4.4
+# We use illumos-gcc to build illumos-gcc
 GCC_ROOT=/opt/gcc/4.4.4
 
 CC_BITS=
@@ -89,25 +91,27 @@
 CONFIGURE_OPTIONS +=	--with-bugurl="http://github.com/illumos/gcc/issues"
 
 COMPONENT_BUILD_ENV=		SHELL=$(CONFIG_SHELL) CFLAGS="$(CFLAGS)" STAGE1_CFLAGS="$(CFLAGS)" CFLAGS_FOR_TARGET="$(CFLAGS)"
-COMPONENT_BUILD_GMAKE_ARGS=	-j8
+COMPONENT_BUILD_ENV +=		PATH="$(PATH)"
 COMPONENT_BUILD_TARGETS=	bootstrap
 
-COMPONENT_POST_INSTALL_ACTION= ( \
-	elfedit -e 'dyn:rpath /opt/gcc/4.4.4/lib' $(PROTO_DIR)/opt/gcc/4.4.4/lib/libgomp.so.1 ; \
-	elfedit -e "dyn:rpath /opt/gcc/4.4.4/lib/$(MACH64)" $(PROTO_DIR)/opt/gcc/4.4.4/lib/$(MACH64)/libgomp.so.1 ; \
-	elfedit -e 'dyn:rpath /opt/gcc/4.4.4/lib' $(PROTO_DIR)/opt/gcc/4.4.4/lib/libssp.so.0 ; \
-	elfedit -e "dyn:rpath /opt/gcc/4.4.4/lib/$(MACH64)" $(PROTO_DIR)/opt/gcc/4.4.4/lib/$(MACH64)/libssp.so.0 ; \
-	elfedit -e 'dyn:rpath /opt/gcc/4.4.4/lib' $(PROTO_DIR)/opt/gcc/4.4.4/lib/libstdc++.so.6 ; \
-	elfedit -e "dyn:rpath /opt/gcc/4.4.4/lib/$(MACH64)" $(PROTO_DIR)/opt/gcc/4.4.4/lib/$(MACH64)/libstdc++.so.6 )
+COMPONENT_POST_INSTALL_ACTION += \
+	/usr/bin/elfedit -e 'dyn:rpath /opt/gcc/4.4.4/lib' $(PROTO_DIR)/opt/gcc/4.4.4/lib/libgomp.so.1 ; \
+	/usr/bin/elfedit -e "dyn:rpath /opt/gcc/4.4.4/lib/$(MACH64)" $(PROTO_DIR)/opt/gcc/4.4.4/lib/$(MACH64)/libgomp.so.1 ; \
+	/usr/bin/elfedit -e 'dyn:rpath /opt/gcc/4.4.4/lib' $(PROTO_DIR)/opt/gcc/4.4.4/lib/libssp.so.0 ; \
+	/usr/bin/elfedit -e "dyn:rpath /opt/gcc/4.4.4/lib/$(MACH64)" $(PROTO_DIR)/opt/gcc/4.4.4/lib/$(MACH64)/libssp.so.0 ; \
+	/usr/bin/elfedit -e 'dyn:rpath /opt/gcc/4.4.4/lib' $(PROTO_DIR)/opt/gcc/4.4.4/lib/libstdc++.so.6 ; \
+	/usr/bin/elfedit -e "dyn:rpath /opt/gcc/4.4.4/lib/$(MACH64)" $(PROTO_DIR)/opt/gcc/4.4.4/lib/$(MACH64)/libstdc++.so.6 ;
 
-build:		$(BUILD_32)
+COMPONENT_POST_INSTALL_ACTION += \
+	$(RM) -r $(PROTO_DIR)$(CONFIGURE_PREFIX)/lib/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/include-fixed ;
 
-install:	$(INSTALL_32)
+PKG_HARDLINKS += opt/gcc/4.4.4/bin/gcc
+PKG_HARDLINKS += opt/gcc/4.4.4/bin/g++
 
 # Build dependencies
 REQUIRED_PACKAGES += developer/illumos-gcc
 
 # Auto-generated dependencies
-REQUIRED_PACKAGES += SUNWcs
+REQUIRED_PACKAGES += shell/ksh93
 REQUIRED_PACKAGES += system/library
 REQUIRED_PACKAGES += system/library/math
diff --git a/components/openindiana/illumos-gcc/illumos-gcc.p5m b/components/openindiana/illumos-gcc/illumos-gcc.p5m
index a11492e..6801645 100644
--- a/components/openindiana/illumos-gcc/illumos-gcc.p5m
+++ b/components/openindiana/illumos-gcc/illumos-gcc.p5m
@@ -13,893 +13,873 @@
 #
 
 set name=pkg.fmri value=pkg:/$(COMPONENT_FMRI)@$(IPS_COMPONENT_VERSION),$(BUILD_VERSION)
+set name=pkg.human-version value=$(HUMAN_VERSION)
 set name=pkg.summary value="$(COMPONENT_SUMMARY)"
 set name=info.classification value="$(COMPONENT_CLASSIFICATION)"
-set name=info.upstream-url value="$(COMPONENT_PROJECT_URL)"
+set name=info.upstream-url value=$(COMPONENT_PROJECT_URL)
 set name=info.source-url value=$(COMPONENT_ARCHIVE_URL)
 set name=org.opensolaris.consolidation value=$(CONSOLIDATION)
 
-license $(COMPONENT_LICENSE_FILE) license="$(COMPONENT_LICENSE)"
+license $(COMPONENT_LICENSE_FILE) license='$(COMPONENT_LICENSE)'
 
-depend fmri=pkg:/developer/gnu-binutils type=require
-depend fmri=pkg:/developer/linker type=require
-depend fmri=pkg:/system/library/c-runtime type=require
-depend fmri=pkg:/system/header type=require
+depend fmri=developer/gnu-binutils type=require
+depend fmri=developer/linker type=require
+depend fmri=system/library/c-runtime type=require
+depend fmri=system/header type=require
 
-hardlink \
-    path=opt/gcc/$(COMPONENT_VERSION)/bin/$(GNU_TRIPLET)-c++ \
-    target=g++
-hardlink \
-    path=opt/gcc/$(COMPONENT_VERSION)/bin/$(GNU_TRIPLET)-g++ \
-    target=g++
-hardlink \
-    path=opt/gcc/$(COMPONENT_VERSION)/bin/$(GNU_TRIPLET)-gcc \
+hardlink path=opt/gcc/$(HUMAN_VERSION)/bin/$(GNU_TRIPLET)-c++ target=g++
+hardlink path=opt/gcc/$(HUMAN_VERSION)/bin/$(GNU_TRIPLET)-g++ target=g++
+hardlink path=opt/gcc/$(HUMAN_VERSION)/bin/$(GNU_TRIPLET)-gcc target=gcc
+hardlink path=opt/gcc/$(HUMAN_VERSION)/bin/$(GNU_TRIPLET)-gcc-$(HUMAN_VERSION) \
     target=gcc
-hardlink \
-    path=opt/gcc/$(COMPONENT_VERSION)/bin/$(GNU_TRIPLET)-gcc-$(COMPONENT_VERSION) \
-    target=gcc
-hardlink path=opt/gcc/$(COMPONENT_VERSION)/bin/c++ target=g++
-file path=opt/gcc/$(COMPONENT_VERSION)/bin/cpp mode=0555
-file path=opt/gcc/$(COMPONENT_VERSION)/bin/g++ mode=0555
-file path=opt/gcc/$(COMPONENT_VERSION)/bin/gcc mode=0555
-file path=opt/gcc/$(COMPONENT_VERSION)/bin/gccbug mode=0555
-file path=opt/gcc/$(COMPONENT_VERSION)/bin/gcov mode=0555
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/atomic_word.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/basic_file.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/c++allocator.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/c++config.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/c++io.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/c++locale.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/cpu_defines.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/ctype_base.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/ctype_inline.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/ctype_noninline.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/cxxabi_tweaks.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/error_constants.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/extc++.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/gthr-default.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/gthr-posix.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/gthr-single.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/gthr-tpf.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/gthr.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/messages_members.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/os_defines.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/stdc++.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/stdtr1c++.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/time_members.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(GNU_TRIPLET)/bits/atomic_word.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(GNU_TRIPLET)/bits/basic_file.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(GNU_TRIPLET)/bits/c++allocator.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(GNU_TRIPLET)/bits/c++config.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(GNU_TRIPLET)/bits/c++io.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(GNU_TRIPLET)/bits/c++locale.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(GNU_TRIPLET)/bits/cpu_defines.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(GNU_TRIPLET)/bits/ctype_base.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(GNU_TRIPLET)/bits/ctype_inline.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(GNU_TRIPLET)/bits/ctype_noninline.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(GNU_TRIPLET)/bits/cxxabi_tweaks.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(GNU_TRIPLET)/bits/error_constants.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(GNU_TRIPLET)/bits/extc++.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(GNU_TRIPLET)/bits/gthr-default.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(GNU_TRIPLET)/bits/gthr-posix.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(GNU_TRIPLET)/bits/gthr-single.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(GNU_TRIPLET)/bits/gthr-tpf.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(GNU_TRIPLET)/bits/gthr.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(GNU_TRIPLET)/bits/messages_members.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(GNU_TRIPLET)/bits/os_defines.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(GNU_TRIPLET)/bits/stdc++.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(GNU_TRIPLET)/bits/stdtr1c++.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(GNU_TRIPLET)/bits/time_members.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/algorithm
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/array
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/backward/auto_ptr.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/backward/backward_warning.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/backward/binders.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/backward/hash_fun.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/backward/hash_map
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/backward/hash_set
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/backward/hashtable.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/backward/strstream
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/algorithmfwd.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/allocator.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/atomic_0.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/atomic_2.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/atomicfwd_c.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/atomicfwd_cxx.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/basic_ios.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/basic_ios.tcc
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/basic_string.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/basic_string.tcc
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/boost_concept_check.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/char_traits.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/cmath.tcc
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/codecvt.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/concept_check.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/cpp_type_traits.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/deque.tcc
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/forward_list.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/forward_list.tcc
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/fstream.tcc
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/functexcept.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/functional_hash.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/gslice.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/gslice_array.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/hashtable.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/indirect_array.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/ios_base.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/istream.tcc
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/list.tcc
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/locale_classes.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/locale_classes.tcc
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/locale_facets.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/locale_facets.tcc
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/locale_facets_nonio.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/locale_facets_nonio.tcc
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/localefwd.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/mask_array.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/move.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/ostream.tcc
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/ostream_insert.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/postypes.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/shared_ptr.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/slice_array.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/sstream.tcc
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/stl_algo.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/stl_algobase.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/stl_bvector.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/stl_construct.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/stl_deque.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/stl_function.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/stl_heap.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/stl_iterator.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/stl_iterator_base_funcs.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/stl_iterator_base_types.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/stl_list.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/stl_map.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/stl_multimap.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/stl_multiset.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/stl_numeric.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/stl_pair.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/stl_queue.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/stl_raw_storage_iter.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/stl_relops.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/stl_set.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/stl_stack.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/stl_tempbuf.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/stl_tree.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/stl_uninitialized.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/stl_vector.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/stream_iterator.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/streambuf.tcc
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/streambuf_iterator.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/stringfwd.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/unique_ptr.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/valarray_after.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/valarray_array.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/valarray_array.tcc
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/valarray_before.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/vector.tcc
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bitset
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/c++0x_warning.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/cassert
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ccomplex
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/cctype
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/cerrno
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/cfenv
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/cfloat
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/chrono
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/cinttypes
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ciso646
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/climits
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/clocale
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/cmath
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/complex
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/complex.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/condition_variable
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/csetjmp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/csignal
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/cstdarg
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/cstdatomic
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/cstdbool
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/cstddef
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/cstdint
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/cstdio
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/cstdlib
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/cstring
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ctgmath
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ctime
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/cwchar
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/cwctype
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/cxxabi-forced.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/cxxabi.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/debug/bitset
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/debug/debug.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/debug/deque
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/debug/formatter.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/debug/functions.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/debug/list
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/debug/macros.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/debug/map
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/debug/map.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/debug/multimap.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/debug/multiset.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/debug/safe_base.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/debug/safe_iterator.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/debug/safe_iterator.tcc
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/debug/safe_sequence.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/debug/set
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/debug/set.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/debug/string
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/debug/unordered_map
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/debug/unordered_set
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/debug/vector
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/deque
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/exception
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/exception_defines.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/exception_ptr.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/algorithm
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/array_allocator.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/atomicity.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/bitmap_allocator.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/cast.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/codecvt_specializations.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/concurrence.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/debug_allocator.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/enc_filebuf.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/extptr_allocator.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/functional
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/hash_map
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/hash_set
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/iterator
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/malloc_allocator.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/memory
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/mt_allocator.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/new_allocator.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/numeric
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/numeric_traits.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/assoc_container.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/basic_tree_policy/basic_tree_policy_base.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/basic_tree_policy/null_node_metadata.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/basic_tree_policy/traits.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/basic_types.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/bin_search_tree_/bin_search_tree_.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/bin_search_tree_/cond_dtor_entry_dealtor.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/bin_search_tree_/cond_key_dtor_entry_dealtor.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/bin_search_tree_/constructors_destructor_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/bin_search_tree_/debug_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/bin_search_tree_/erase_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/bin_search_tree_/find_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/bin_search_tree_/info_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/bin_search_tree_/insert_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/bin_search_tree_/iterators_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/bin_search_tree_/node_iterators.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/bin_search_tree_/point_iterators.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/bin_search_tree_/policy_access_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/bin_search_tree_/r_erase_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/bin_search_tree_/rotate_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/bin_search_tree_/split_join_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/bin_search_tree_/traits.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/binary_heap_/binary_heap_.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/binary_heap_/const_iterator.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/binary_heap_/const_point_iterator.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/binary_heap_/constructors_destructor_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/binary_heap_/debug_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/binary_heap_/entry_cmp.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/binary_heap_/entry_pred.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/binary_heap_/erase_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/binary_heap_/find_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/binary_heap_/info_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/binary_heap_/insert_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/binary_heap_/iterators_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/binary_heap_/policy_access_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/binary_heap_/resize_policy.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/binary_heap_/split_join_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/binary_heap_/trace_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/binomial_heap_/binomial_heap_.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/binomial_heap_/constructors_destructor_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/binomial_heap_/debug_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/binomial_heap_base_/binomial_heap_base_.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/binomial_heap_base_/constructors_destructor_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/binomial_heap_base_/debug_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/binomial_heap_base_/erase_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/binomial_heap_base_/find_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/binomial_heap_base_/insert_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/binomial_heap_base_/split_join_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/cc_ht_map_.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/cmp_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/cond_key_dtor_entry_dealtor.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/debug_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/debug_no_store_hash_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/debug_store_hash_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/entry_list_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/erase_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/erase_no_store_hash_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/erase_store_hash_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/find_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/find_store_hash_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/info_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/insert_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/insert_no_store_hash_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/insert_store_hash_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/iterators_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/policy_access_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/resize_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/resize_no_store_hash_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/resize_store_hash_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/size_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/standard_policies.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/trace_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/cond_dealtor.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/constructors_destructor_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/container_base_dispatch.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/debug_map_base.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/eq_fn/eq_by_less.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/eq_fn/hash_eq_fn.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/debug_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/debug_no_store_hash_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/debug_store_hash_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/erase_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/erase_no_store_hash_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/erase_store_hash_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/find_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/find_no_store_hash_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/find_store_hash_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/gp_ht_map_.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/info_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/insert_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/insert_no_store_hash_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/insert_store_hash_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/iterator_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/policy_access_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/resize_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/resize_no_store_hash_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/resize_store_hash_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/standard_policies.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/trace_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/hash_fn/direct_mask_range_hashing_imp.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/hash_fn/direct_mod_range_hashing_imp.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/hash_fn/linear_probe_fn_imp.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/hash_fn/mask_based_range_hashing.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/hash_fn/mod_based_range_hashing.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/hash_fn/probe_fn_base.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/hash_fn/quadratic_probe_fn_imp.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/hash_fn/ranged_hash_fn.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/hash_fn/ranged_probe_fn.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/hash_fn/sample_probe_fn.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/hash_fn/sample_range_hashing.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/hash_fn/sample_ranged_hash_fn.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/hash_fn/sample_ranged_probe_fn.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/left_child_next_sibling_heap_/const_iterator.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/left_child_next_sibling_heap_/const_point_iterator.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/left_child_next_sibling_heap_/constructors_destructor_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/left_child_next_sibling_heap_/debug_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/left_child_next_sibling_heap_/erase_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/left_child_next_sibling_heap_/info_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/left_child_next_sibling_heap_/insert_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/left_child_next_sibling_heap_/iterators_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/left_child_next_sibling_heap_/left_child_next_sibling_heap_.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/left_child_next_sibling_heap_/node.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/left_child_next_sibling_heap_/null_metadata.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/left_child_next_sibling_heap_/policy_access_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/left_child_next_sibling_heap_/trace_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/list_update_map_/constructor_destructor_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/list_update_map_/debug_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/list_update_map_/entry_metadata_base.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/list_update_map_/erase_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/list_update_map_/find_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/list_update_map_/info_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/list_update_map_/insert_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/list_update_map_/iterators_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/list_update_map_/lu_map_.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/list_update_map_/trace_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/list_update_policy/counter_lu_metadata.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/list_update_policy/counter_lu_policy_imp.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/list_update_policy/mtf_lu_policy_imp.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/list_update_policy/sample_update_policy.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/ov_tree_map_/cond_dtor.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/ov_tree_map_/constructors_destructor_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/ov_tree_map_/debug_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/ov_tree_map_/erase_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/ov_tree_map_/info_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/ov_tree_map_/insert_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/ov_tree_map_/iterators_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/ov_tree_map_/node_iterators.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/ov_tree_map_/ov_tree_map_.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/ov_tree_map_/policy_access_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/ov_tree_map_/split_join_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/ov_tree_map_/traits.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pairing_heap_/constructors_destructor_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pairing_heap_/debug_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pairing_heap_/erase_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pairing_heap_/find_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pairing_heap_/insert_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pairing_heap_/pairing_heap_.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pairing_heap_/split_join_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pat_trie_/child_iterator.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pat_trie_/cond_dtor_entry_dealtor.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pat_trie_/const_child_iterator.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pat_trie_/constructors_destructor_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pat_trie_/debug_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pat_trie_/erase_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pat_trie_/find_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pat_trie_/head.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pat_trie_/info_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pat_trie_/insert_join_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pat_trie_/internal_node.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pat_trie_/iterators_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pat_trie_/leaf.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pat_trie_/node_base.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pat_trie_/node_iterators.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pat_trie_/node_metadata_base.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pat_trie_/pat_trie_.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pat_trie_/point_iterators.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pat_trie_/policy_access_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pat_trie_/r_erase_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pat_trie_/rotate_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pat_trie_/split_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pat_trie_/split_join_branch_bag.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pat_trie_/synth_e_access_traits.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pat_trie_/trace_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pat_trie_/traits.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pat_trie_/update_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/priority_queue_base_dispatch.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/rb_tree_map_/constructors_destructor_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/rb_tree_map_/debug_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/rb_tree_map_/erase_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/rb_tree_map_/find_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/rb_tree_map_/info_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/rb_tree_map_/insert_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/rb_tree_map_/node.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/rb_tree_map_/rb_tree_.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/rb_tree_map_/split_join_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/rb_tree_map_/traits.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/rc_binomial_heap_/constructors_destructor_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/rc_binomial_heap_/debug_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/rc_binomial_heap_/erase_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/rc_binomial_heap_/insert_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/rc_binomial_heap_/rc.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/rc_binomial_heap_/rc_binomial_heap_.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/rc_binomial_heap_/split_join_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/rc_binomial_heap_/trace_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/resize_policy/cc_hash_max_collision_check_resize_trigger_imp.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/resize_policy/hash_exponential_size_policy_imp.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/resize_policy/hash_load_check_resize_trigger_imp.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/resize_policy/hash_load_check_resize_trigger_size_base.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/resize_policy/hash_prime_size_policy_imp.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/resize_policy/hash_standard_resize_policy_imp.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/resize_policy/sample_resize_policy.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/resize_policy/sample_resize_trigger.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/resize_policy/sample_size_policy.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/splay_tree_/constructors_destructor_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/splay_tree_/debug_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/splay_tree_/erase_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/splay_tree_/find_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/splay_tree_/info_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/splay_tree_/insert_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/splay_tree_/node.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/splay_tree_/splay_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/splay_tree_/splay_tree_.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/splay_tree_/split_join_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/splay_tree_/traits.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/standard_policies.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/thin_heap_/constructors_destructor_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/thin_heap_/debug_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/thin_heap_/erase_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/thin_heap_/find_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/thin_heap_/insert_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/thin_heap_/split_join_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/thin_heap_/thin_heap_.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/thin_heap_/trace_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/tree_policy/node_metadata_selector.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/tree_policy/null_node_update_imp.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/tree_policy/order_statistics_imp.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/tree_policy/sample_tree_node_update.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/tree_trace_base.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/trie_policy/node_metadata_selector.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/trie_policy/null_node_update_imp.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/trie_policy/order_statistics_imp.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/trie_policy/prefix_search_node_update_imp.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/trie_policy/sample_trie_e_access_traits.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/trie_policy/sample_trie_node_update.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/trie_policy/string_trie_e_access_traits_imp.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/trie_policy/trie_policy_base.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/type_utils.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/types_traits.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/unordered_iterator/const_iterator.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/unordered_iterator/const_point_iterator.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/unordered_iterator/iterator.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/unordered_iterator/point_iterator.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/exception.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/hash_policy.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/list_update_policy.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/priority_queue.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/tag_and_trait.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/tree_policy.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/trie_policy.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pod_char_traits.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pointer.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pool_allocator.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/rb_tree
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/rc_string_base.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/rope
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/ropeimpl.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/slist
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/sso_string_base.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/stdio_filebuf.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/stdio_sync_filebuf.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/string_conversions.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/throw_allocator.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/type_traits.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/typelist.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/vstring.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/vstring.tcc
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/vstring_fwd.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/vstring_util.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/fenv.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/forward_list
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/fstream
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/functional
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/initializer_list
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/iomanip
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ios
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/iosfwd
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/iostream
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/istream
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/iterator
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/limits
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/list
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/locale
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/map
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/memory
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/mutex
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/new
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/numeric
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ostream
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/algo.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/algobase.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/algorithm
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/algorithmfwd.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/balanced_quicksort.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/base.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/basic_iterator.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/checkers.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/compatibility.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/compiletime_settings.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/equally_split.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/features.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/find.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/find_selectors.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/for_each.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/for_each_selectors.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/iterator.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/list_partition.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/losertree.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/merge.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/multiseq_selection.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/multiway_merge.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/multiway_mergesort.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/numeric
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/numericfwd.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/omp_loop.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/omp_loop_static.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/par_loop.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/parallel.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/partial_sum.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/partition.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/queue.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/quicksort.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/random_number.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/random_shuffle.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/search.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/set_operations.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/settings.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/sort.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/tags.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/types.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/unique_copy.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/workstealing.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/queue
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/random
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ratio
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/regex
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/set
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/sstream
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/stack
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/stdatomic.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/stdexcept
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/streambuf
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/string
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/system_error
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tgmath.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/thread
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/array
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/bessel_function.tcc
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/beta_function.tcc
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/ccomplex
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/cctype
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/cfenv
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/cfloat
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/cinttypes
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/climits
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/cmath
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/complex
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/complex.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/cstdarg
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/cstdbool
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/cstdint
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/cstdio
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/cstdlib
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/ctgmath
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/ctime
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/ctype.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/cwchar
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/cwctype
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/ell_integral.tcc
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/exp_integral.tcc
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/fenv.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/float.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/functional
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/functional_hash.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/gamma.tcc
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/hashtable.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/hypergeometric.tcc
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/inttypes.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/legendre_function.tcc
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/limits.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/math.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/memory
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/modified_bessel_func.tcc
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/poly_hermite.tcc
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/poly_laguerre.tcc
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/random
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/regex
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/riemann_zeta.tcc
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/shared_ptr.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/special_function_util.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/stdarg.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/stdbool.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/stdint.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/stdio.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/stdlib.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/tgmath.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/tuple
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/type_traits
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/unordered_map
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/unordered_set
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/utility
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/wchar.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/wctype.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1_impl/array
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1_impl/boost_sp_counted_base.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1_impl/cctype
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1_impl/cfenv
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1_impl/cinttypes
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1_impl/cmath
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1_impl/complex
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1_impl/cstdint
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1_impl/cstdio
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1_impl/cstdlib
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1_impl/cwchar
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1_impl/cwctype
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1_impl/functional
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1_impl/functional_hash.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1_impl/hashtable
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1_impl/hashtable_policy.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1_impl/random
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1_impl/random.tcc
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1_impl/regex
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1_impl/type_traits
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1_impl/unordered_map
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1_impl/unordered_set
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1_impl/utility
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tuple
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/type_traits
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/typeinfo
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/unordered_map
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/unordered_set
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/utility
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/valarray
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/vector
-file path=opt/gcc/$(COMPONENT_VERSION)/info/cpp.info
-file path=opt/gcc/$(COMPONENT_VERSION)/info/cppinternals.info
-file path=opt/gcc/$(COMPONENT_VERSION)/info/dir
-file path=opt/gcc/$(COMPONENT_VERSION)/info/gcc.info
-file path=opt/gcc/$(COMPONENT_VERSION)/info/gccinstall.info
-file path=opt/gcc/$(COMPONENT_VERSION)/info/gccint.info
-file path=opt/gcc/$(COMPONENT_VERSION)/info/libgomp.info
-link path=opt/gcc/$(COMPONENT_VERSION)/lib/$(MACH64)/libgcc_s.so \
+hardlink path=opt/gcc/$(HUMAN_VERSION)/bin/c++ target=g++
+file path=opt/gcc/$(HUMAN_VERSION)/bin/cpp mode=0555
+file path=opt/gcc/$(HUMAN_VERSION)/bin/g++ mode=0555
+file path=opt/gcc/$(HUMAN_VERSION)/bin/gcc mode=0555
+file path=opt/gcc/$(HUMAN_VERSION)/bin/gccbug mode=0555
+file path=opt/gcc/$(HUMAN_VERSION)/bin/gcov mode=0555
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/atomic_word.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/basic_file.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/c++allocator.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/c++config.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/c++io.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/c++locale.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/cpu_defines.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/ctype_base.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/ctype_inline.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/ctype_noninline.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/cxxabi_tweaks.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/error_constants.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/extc++.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/gthr-default.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/gthr-posix.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/gthr-single.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/gthr-tpf.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/gthr.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/messages_members.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/os_defines.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/stdc++.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/stdtr1c++.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/time_members.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/bits/atomic_word.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/bits/basic_file.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/bits/c++allocator.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/bits/c++config.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/bits/c++io.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/bits/c++locale.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/bits/cpu_defines.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/bits/ctype_base.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/bits/ctype_inline.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/bits/ctype_noninline.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/bits/cxxabi_tweaks.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/bits/error_constants.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/bits/extc++.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/bits/gthr-default.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/bits/gthr-posix.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/bits/gthr-single.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/bits/gthr-tpf.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/bits/gthr.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/bits/messages_members.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/bits/os_defines.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/bits/stdc++.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/bits/stdtr1c++.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/bits/time_members.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/algorithm
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/array
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/backward/auto_ptr.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/backward/backward_warning.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/backward/binders.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/backward/hash_fun.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/backward/hash_map
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/backward/hash_set
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/backward/hashtable.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/backward/strstream
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/algorithmfwd.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/allocator.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/atomic_0.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/atomic_2.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/atomicfwd_c.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/atomicfwd_cxx.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/basic_ios.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/basic_ios.tcc
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/basic_string.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/basic_string.tcc
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/boost_concept_check.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/char_traits.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/cmath.tcc
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/codecvt.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/concept_check.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/cpp_type_traits.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/deque.tcc
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/forward_list.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/forward_list.tcc
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/fstream.tcc
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/functexcept.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/functional_hash.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/gslice.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/gslice_array.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/hashtable.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/indirect_array.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/ios_base.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/istream.tcc
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/list.tcc
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/locale_classes.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/locale_classes.tcc
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/locale_facets.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/locale_facets.tcc
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/locale_facets_nonio.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/locale_facets_nonio.tcc
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/localefwd.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/mask_array.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/move.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/ostream.tcc
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/ostream_insert.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/postypes.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/shared_ptr.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/slice_array.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/sstream.tcc
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/stl_algo.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/stl_algobase.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/stl_bvector.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/stl_construct.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/stl_deque.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/stl_function.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/stl_heap.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/stl_iterator.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/stl_iterator_base_funcs.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/stl_iterator_base_types.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/stl_list.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/stl_map.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/stl_multimap.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/stl_multiset.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/stl_numeric.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/stl_pair.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/stl_queue.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/stl_raw_storage_iter.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/stl_relops.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/stl_set.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/stl_stack.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/stl_tempbuf.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/stl_tree.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/stl_uninitialized.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/stl_vector.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/stream_iterator.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/streambuf.tcc
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/streambuf_iterator.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/stringfwd.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/unique_ptr.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/valarray_after.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/valarray_array.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/valarray_array.tcc
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/valarray_before.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/vector.tcc
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bitset
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/c++0x_warning.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/cassert
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ccomplex
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/cctype
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/cerrno
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/cfenv
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/cfloat
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/chrono
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/cinttypes
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ciso646
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/climits
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/clocale
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/cmath
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/complex
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/complex.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/condition_variable
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/csetjmp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/csignal
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/cstdarg
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/cstdatomic
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/cstdbool
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/cstddef
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/cstdint
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/cstdio
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/cstdlib
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/cstring
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ctgmath
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ctime
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/cwchar
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/cwctype
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/cxxabi-forced.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/cxxabi.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/debug/bitset
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/debug/debug.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/debug/deque
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/debug/formatter.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/debug/functions.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/debug/list
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/debug/macros.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/debug/map
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/debug/map.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/debug/multimap.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/debug/multiset.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/debug/safe_base.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/debug/safe_iterator.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/debug/safe_iterator.tcc
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/debug/safe_sequence.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/debug/set
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/debug/set.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/debug/string
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/debug/unordered_map
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/debug/unordered_set
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/debug/vector
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/deque
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/exception
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/exception_defines.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/exception_ptr.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/algorithm
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/array_allocator.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/atomicity.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/bitmap_allocator.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/cast.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/codecvt_specializations.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/concurrence.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/debug_allocator.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/enc_filebuf.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/extptr_allocator.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/functional
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/hash_map
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/hash_set
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/iterator
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/malloc_allocator.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/memory
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/mt_allocator.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/new_allocator.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/numeric
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/numeric_traits.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/assoc_container.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/basic_tree_policy/basic_tree_policy_base.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/basic_tree_policy/null_node_metadata.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/basic_tree_policy/traits.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/basic_types.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/bin_search_tree_/bin_search_tree_.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/bin_search_tree_/cond_dtor_entry_dealtor.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/bin_search_tree_/cond_key_dtor_entry_dealtor.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/bin_search_tree_/constructors_destructor_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/bin_search_tree_/debug_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/bin_search_tree_/erase_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/bin_search_tree_/find_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/bin_search_tree_/info_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/bin_search_tree_/insert_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/bin_search_tree_/iterators_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/bin_search_tree_/node_iterators.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/bin_search_tree_/point_iterators.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/bin_search_tree_/policy_access_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/bin_search_tree_/r_erase_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/bin_search_tree_/rotate_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/bin_search_tree_/split_join_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/bin_search_tree_/traits.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/binary_heap_/binary_heap_.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/binary_heap_/const_iterator.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/binary_heap_/const_point_iterator.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/binary_heap_/constructors_destructor_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/binary_heap_/debug_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/binary_heap_/entry_cmp.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/binary_heap_/entry_pred.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/binary_heap_/erase_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/binary_heap_/find_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/binary_heap_/info_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/binary_heap_/insert_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/binary_heap_/iterators_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/binary_heap_/policy_access_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/binary_heap_/resize_policy.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/binary_heap_/split_join_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/binary_heap_/trace_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/binomial_heap_/binomial_heap_.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/binomial_heap_/constructors_destructor_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/binomial_heap_/debug_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/binomial_heap_base_/binomial_heap_base_.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/binomial_heap_base_/constructors_destructor_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/binomial_heap_base_/debug_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/binomial_heap_base_/erase_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/binomial_heap_base_/find_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/binomial_heap_base_/insert_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/binomial_heap_base_/split_join_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/cc_ht_map_.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/cmp_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/cond_key_dtor_entry_dealtor.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/debug_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/debug_no_store_hash_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/debug_store_hash_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/entry_list_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/erase_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/erase_no_store_hash_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/erase_store_hash_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/find_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/find_store_hash_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/info_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/insert_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/insert_no_store_hash_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/insert_store_hash_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/iterators_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/policy_access_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/resize_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/resize_no_store_hash_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/resize_store_hash_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/size_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/standard_policies.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/trace_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/cond_dealtor.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/constructors_destructor_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/container_base_dispatch.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/debug_map_base.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/eq_fn/eq_by_less.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/eq_fn/hash_eq_fn.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/debug_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/debug_no_store_hash_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/debug_store_hash_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/erase_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/erase_no_store_hash_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/erase_store_hash_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/find_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/find_no_store_hash_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/find_store_hash_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/gp_ht_map_.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/info_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/insert_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/insert_no_store_hash_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/insert_store_hash_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/iterator_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/policy_access_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/resize_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/resize_no_store_hash_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/resize_store_hash_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/standard_policies.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/trace_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/hash_fn/direct_mask_range_hashing_imp.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/hash_fn/direct_mod_range_hashing_imp.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/hash_fn/linear_probe_fn_imp.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/hash_fn/mask_based_range_hashing.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/hash_fn/mod_based_range_hashing.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/hash_fn/probe_fn_base.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/hash_fn/quadratic_probe_fn_imp.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/hash_fn/ranged_hash_fn.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/hash_fn/ranged_probe_fn.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/hash_fn/sample_probe_fn.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/hash_fn/sample_range_hashing.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/hash_fn/sample_ranged_hash_fn.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/hash_fn/sample_ranged_probe_fn.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/left_child_next_sibling_heap_/const_iterator.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/left_child_next_sibling_heap_/const_point_iterator.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/left_child_next_sibling_heap_/constructors_destructor_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/left_child_next_sibling_heap_/debug_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/left_child_next_sibling_heap_/erase_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/left_child_next_sibling_heap_/info_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/left_child_next_sibling_heap_/insert_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/left_child_next_sibling_heap_/iterators_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/left_child_next_sibling_heap_/left_child_next_sibling_heap_.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/left_child_next_sibling_heap_/node.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/left_child_next_sibling_heap_/null_metadata.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/left_child_next_sibling_heap_/policy_access_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/left_child_next_sibling_heap_/trace_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/list_update_map_/constructor_destructor_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/list_update_map_/debug_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/list_update_map_/entry_metadata_base.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/list_update_map_/erase_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/list_update_map_/find_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/list_update_map_/info_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/list_update_map_/insert_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/list_update_map_/iterators_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/list_update_map_/lu_map_.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/list_update_map_/trace_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/list_update_policy/counter_lu_metadata.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/list_update_policy/counter_lu_policy_imp.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/list_update_policy/mtf_lu_policy_imp.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/list_update_policy/sample_update_policy.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/ov_tree_map_/cond_dtor.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/ov_tree_map_/constructors_destructor_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/ov_tree_map_/debug_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/ov_tree_map_/erase_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/ov_tree_map_/info_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/ov_tree_map_/insert_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/ov_tree_map_/iterators_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/ov_tree_map_/node_iterators.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/ov_tree_map_/ov_tree_map_.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/ov_tree_map_/policy_access_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/ov_tree_map_/split_join_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/ov_tree_map_/traits.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pairing_heap_/constructors_destructor_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pairing_heap_/debug_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pairing_heap_/erase_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pairing_heap_/find_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pairing_heap_/insert_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pairing_heap_/pairing_heap_.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pairing_heap_/split_join_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pat_trie_/child_iterator.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pat_trie_/cond_dtor_entry_dealtor.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pat_trie_/const_child_iterator.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pat_trie_/constructors_destructor_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pat_trie_/debug_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pat_trie_/erase_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pat_trie_/find_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pat_trie_/head.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pat_trie_/info_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pat_trie_/insert_join_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pat_trie_/internal_node.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pat_trie_/iterators_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pat_trie_/leaf.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pat_trie_/node_base.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pat_trie_/node_iterators.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pat_trie_/node_metadata_base.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pat_trie_/pat_trie_.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pat_trie_/point_iterators.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pat_trie_/policy_access_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pat_trie_/r_erase_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pat_trie_/rotate_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pat_trie_/split_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pat_trie_/split_join_branch_bag.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pat_trie_/synth_e_access_traits.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pat_trie_/trace_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pat_trie_/traits.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pat_trie_/update_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/priority_queue_base_dispatch.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/rb_tree_map_/constructors_destructor_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/rb_tree_map_/debug_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/rb_tree_map_/erase_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/rb_tree_map_/find_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/rb_tree_map_/info_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/rb_tree_map_/insert_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/rb_tree_map_/node.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/rb_tree_map_/rb_tree_.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/rb_tree_map_/split_join_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/rb_tree_map_/traits.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/rc_binomial_heap_/constructors_destructor_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/rc_binomial_heap_/debug_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/rc_binomial_heap_/erase_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/rc_binomial_heap_/insert_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/rc_binomial_heap_/rc.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/rc_binomial_heap_/rc_binomial_heap_.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/rc_binomial_heap_/split_join_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/rc_binomial_heap_/trace_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/resize_policy/cc_hash_max_collision_check_resize_trigger_imp.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/resize_policy/hash_exponential_size_policy_imp.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/resize_policy/hash_load_check_resize_trigger_imp.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/resize_policy/hash_load_check_resize_trigger_size_base.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/resize_policy/hash_prime_size_policy_imp.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/resize_policy/hash_standard_resize_policy_imp.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/resize_policy/sample_resize_policy.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/resize_policy/sample_resize_trigger.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/resize_policy/sample_size_policy.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/splay_tree_/constructors_destructor_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/splay_tree_/debug_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/splay_tree_/erase_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/splay_tree_/find_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/splay_tree_/info_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/splay_tree_/insert_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/splay_tree_/node.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/splay_tree_/splay_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/splay_tree_/splay_tree_.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/splay_tree_/split_join_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/splay_tree_/traits.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/standard_policies.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/thin_heap_/constructors_destructor_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/thin_heap_/debug_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/thin_heap_/erase_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/thin_heap_/find_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/thin_heap_/insert_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/thin_heap_/split_join_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/thin_heap_/thin_heap_.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/thin_heap_/trace_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/tree_policy/node_metadata_selector.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/tree_policy/null_node_update_imp.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/tree_policy/order_statistics_imp.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/tree_policy/sample_tree_node_update.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/tree_trace_base.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/trie_policy/node_metadata_selector.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/trie_policy/null_node_update_imp.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/trie_policy/order_statistics_imp.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/trie_policy/prefix_search_node_update_imp.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/trie_policy/sample_trie_e_access_traits.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/trie_policy/sample_trie_node_update.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/trie_policy/string_trie_e_access_traits_imp.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/trie_policy/trie_policy_base.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/type_utils.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/types_traits.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/unordered_iterator/const_iterator.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/unordered_iterator/const_point_iterator.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/unordered_iterator/iterator.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/unordered_iterator/point_iterator.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/exception.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/hash_policy.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/list_update_policy.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/priority_queue.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/tag_and_trait.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/tree_policy.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/trie_policy.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pod_char_traits.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pointer.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pool_allocator.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/rb_tree
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/rc_string_base.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/rope
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/ropeimpl.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/slist
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/sso_string_base.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/stdio_filebuf.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/stdio_sync_filebuf.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/string_conversions.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/throw_allocator.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/type_traits.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/typelist.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/vstring.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/vstring.tcc
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/vstring_fwd.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/vstring_util.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/fenv.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/forward_list
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/fstream
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/functional
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/initializer_list
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/iomanip
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ios
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/iosfwd
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/iostream
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/istream
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/iterator
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/limits
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/list
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/locale
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/map
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/memory
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/mutex
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/new
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/numeric
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ostream
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/algo.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/algobase.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/algorithm
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/algorithmfwd.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/balanced_quicksort.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/base.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/basic_iterator.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/checkers.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/compatibility.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/compiletime_settings.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/equally_split.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/features.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/find.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/find_selectors.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/for_each.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/for_each_selectors.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/iterator.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/list_partition.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/losertree.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/merge.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/multiseq_selection.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/multiway_merge.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/multiway_mergesort.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/numeric
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/numericfwd.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/omp_loop.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/omp_loop_static.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/par_loop.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/parallel.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/partial_sum.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/partition.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/queue.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/quicksort.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/random_number.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/random_shuffle.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/search.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/set_operations.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/settings.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/sort.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/tags.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/types.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/unique_copy.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/workstealing.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/queue
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/random
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ratio
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/regex
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/set
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/sstream
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/stack
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/stdatomic.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/stdexcept
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/streambuf
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/string
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/system_error
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tgmath.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/thread
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/array
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/bessel_function.tcc
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/beta_function.tcc
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/ccomplex
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/cctype
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/cfenv
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/cfloat
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/cinttypes
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/climits
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/cmath
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/complex
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/complex.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/cstdarg
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/cstdbool
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/cstdint
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/cstdio
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/cstdlib
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/ctgmath
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/ctime
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/ctype.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/cwchar
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/cwctype
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/ell_integral.tcc
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/exp_integral.tcc
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/fenv.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/float.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/functional
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/functional_hash.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/gamma.tcc
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/hashtable.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/hypergeometric.tcc
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/inttypes.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/legendre_function.tcc
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/limits.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/math.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/memory
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/modified_bessel_func.tcc
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/poly_hermite.tcc
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/poly_laguerre.tcc
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/random
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/regex
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/riemann_zeta.tcc
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/shared_ptr.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/special_function_util.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/stdarg.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/stdbool.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/stdint.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/stdio.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/stdlib.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/tgmath.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/tuple
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/type_traits
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/unordered_map
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/unordered_set
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/utility
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/wchar.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/wctype.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1_impl/array
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1_impl/boost_sp_counted_base.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1_impl/cctype
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1_impl/cfenv
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1_impl/cinttypes
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1_impl/cmath
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1_impl/complex
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1_impl/cstdint
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1_impl/cstdio
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1_impl/cstdlib
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1_impl/cwchar
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1_impl/cwctype
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1_impl/functional
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1_impl/functional_hash.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1_impl/hashtable
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1_impl/hashtable_policy.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1_impl/random
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1_impl/random.tcc
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1_impl/regex
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1_impl/type_traits
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1_impl/unordered_map
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1_impl/unordered_set
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1_impl/utility
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tuple
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/type_traits
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/typeinfo
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/unordered_map
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/unordered_set
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/utility
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/valarray
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/vector
+file path=opt/gcc/$(HUMAN_VERSION)/info/cpp.info
+file path=opt/gcc/$(HUMAN_VERSION)/info/cppinternals.info
+file path=opt/gcc/$(HUMAN_VERSION)/info/dir
+file path=opt/gcc/$(HUMAN_VERSION)/info/gcc.info
+file path=opt/gcc/$(HUMAN_VERSION)/info/gccinstall.info
+file path=opt/gcc/$(HUMAN_VERSION)/info/gccint.info
+file path=opt/gcc/$(HUMAN_VERSION)/info/libgomp.info
+link path=opt/gcc/$(HUMAN_VERSION)/lib/$(MACH64)/libgcc_s.so \
     target=libgcc_s.so.1
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/$(MACH64)/libgcc_s.so.1
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/$(MACH64)/libgomp.a
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/$(MACH64)/libgomp.la
-link path=opt/gcc/$(COMPONENT_VERSION)/lib/$(MACH64)/libgomp.so \
+file path=opt/gcc/$(HUMAN_VERSION)/lib/$(MACH64)/libgcc_s.so.1
+file path=opt/gcc/$(HUMAN_VERSION)/lib/$(MACH64)/libgomp.a
+link path=opt/gcc/$(HUMAN_VERSION)/lib/$(MACH64)/libgomp.so \
     target=libgomp.so.1.0.0
-link path=opt/gcc/$(COMPONENT_VERSION)/lib/$(MACH64)/libgomp.so.1 \
+link path=opt/gcc/$(HUMAN_VERSION)/lib/$(MACH64)/libgomp.so.1 \
     target=libgomp.so.1.0.0
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/$(MACH64)/libgomp.so.1.0.0 \
-    pkg.depend.runpath=/lib/64:/usr/lib/64:opt/gcc/$(COMPONENT_VERSION)/lib/$(MACH64) \
+file path=opt/gcc/$(HUMAN_VERSION)/lib/$(MACH64)/libgomp.so.1.0.0 \
+    pkg.depend.runpath=/lib/64:/usr/lib/64:opt/gcc/$(HUMAN_VERSION)/lib/$(MACH64) \
     pkg.linted=true
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/$(MACH64)/libgomp.spec
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/$(MACH64)/libiberty.a
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/$(MACH64)/libobjc.a
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/$(MACH64)/libobjc.la
-link path=opt/gcc/$(COMPONENT_VERSION)/lib/$(MACH64)/libobjc.so \
+file path=opt/gcc/$(HUMAN_VERSION)/lib/$(MACH64)/libgomp.spec
+file path=opt/gcc/$(HUMAN_VERSION)/lib/$(MACH64)/libiberty.a
+file path=opt/gcc/$(HUMAN_VERSION)/lib/$(MACH64)/libobjc.a
+link path=opt/gcc/$(HUMAN_VERSION)/lib/$(MACH64)/libobjc.so \
     target=libobjc.so.2.0.0
-link path=opt/gcc/$(COMPONENT_VERSION)/lib/$(MACH64)/libobjc.so.2 \
+link path=opt/gcc/$(HUMAN_VERSION)/lib/$(MACH64)/libobjc.so.2 \
     target=libobjc.so.2.0.0
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/$(MACH64)/libobjc.so.2.0.0 \
-    pkg.depend.runpath=/lib/64:/usr/lib/64:opt/gcc/$(COMPONENT_VERSION)/lib/$(MACH64)
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/$(MACH64)/libssp.a
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/$(MACH64)/libssp.la
-link path=opt/gcc/$(COMPONENT_VERSION)/lib/$(MACH64)/libssp.so \
+file path=opt/gcc/$(HUMAN_VERSION)/lib/$(MACH64)/libobjc.so.2.0.0 \
+    pkg.depend.runpath=/lib/64:/usr/lib/64:opt/gcc/$(HUMAN_VERSION)/lib/$(MACH64)
+file path=opt/gcc/$(HUMAN_VERSION)/lib/$(MACH64)/libssp.a
+link path=opt/gcc/$(HUMAN_VERSION)/lib/$(MACH64)/libssp.so \
     target=libssp.so.0.0.0
-link path=opt/gcc/$(COMPONENT_VERSION)/lib/$(MACH64)/libssp.so.0 \
+link path=opt/gcc/$(HUMAN_VERSION)/lib/$(MACH64)/libssp.so.0 \
     target=libssp.so.0.0.0
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/$(MACH64)/libssp.so.0.0.0 \
-    pkg.depend.runpath=/lib/64:/usr/lib/64:opt/gcc/$(COMPONENT_VERSION)/lib/$(MACH64) \
+file path=opt/gcc/$(HUMAN_VERSION)/lib/$(MACH64)/libssp.so.0.0.0 \
+    pkg.depend.runpath=/lib/64:/usr/lib/64:opt/gcc/$(HUMAN_VERSION)/lib/$(MACH64) \
     pkg.linted=true
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/$(MACH64)/libssp_nonshared.a
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/$(MACH64)/libssp_nonshared.la
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/$(MACH64)/libstdc++.a
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/$(MACH64)/libstdc++.la
-link path=opt/gcc/$(COMPONENT_VERSION)/lib/$(MACH64)/libstdc++.so \
+file path=opt/gcc/$(HUMAN_VERSION)/lib/$(MACH64)/libssp_nonshared.a
+file path=opt/gcc/$(HUMAN_VERSION)/lib/$(MACH64)/libstdc++.a
+link path=opt/gcc/$(HUMAN_VERSION)/lib/$(MACH64)/libstdc++.so \
     target=libstdc++.so.6.0.13
-link path=opt/gcc/$(COMPONENT_VERSION)/lib/$(MACH64)/libstdc++.so.6 \
+link path=opt/gcc/$(HUMAN_VERSION)/lib/$(MACH64)/libstdc++.so.6 \
     target=libstdc++.so.6.0.13
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/$(MACH64)/libstdc++.so.6.0.13 \
-    pkg.depend.runpath=/lib/64:/usr/lib/64:opt/gcc/$(COMPONENT_VERSION)/lib/$(MACH64) \
+file path=opt/gcc/$(HUMAN_VERSION)/lib/$(MACH64)/libstdc++.so.6.0.13 \
+    pkg.depend.runpath=/lib/64:/usr/lib/64:opt/gcc/$(HUMAN_VERSION)/lib/$(MACH64) \
     pkg.linted=true
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/$(MACH64)/libsupc++.a
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/$(MACH64)/libsupc++.la
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/$(MACH64)/crtbegin.o
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/$(MACH64)/crtend.o
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/$(MACH64)/gmon.o
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/$(MACH64)/libgcc.a
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/$(MACH64)/libgcc_eh.a
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/$(MACH64)/libgcov.a
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/crtbegin.o
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/crtend.o
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/gmon.o
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/include/ammintrin.h variant.arch=i386
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/include/avxintrin.h variant.arch=i386
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/include/bmmintrin.h variant.arch=i386
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/include/cpuid.h variant.arch=i386
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/include/cross-stdarg.h variant.arch=i386
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/include/emmintrin.h variant.arch=i386
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/include/float.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/include/immintrin.h variant.arch=i386
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/include/iso646.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/include/mm3dnow.h variant.arch=i386
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/include/mm_malloc.h variant.arch=i386
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/include/mmintrin-common.h variant.arch=i386
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/include/mmintrin.h variant.arch=i386
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/include/nmmintrin.h variant.arch=i386
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/include/objc/NXConstStr.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/include/objc/Object.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/include/objc/Protocol.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/include/objc/encoding.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/include/objc/hash.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/include/objc/objc-api.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/include/objc/objc-decls.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/include/objc/objc-list.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/include/objc/objc.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/include/objc/sarray.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/include/objc/thr.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/include/objc/typedstream.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/include/omp.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/include/pmmintrin.h variant.arch=i386
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/include/smmintrin.h variant.arch=i386
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/include/ssp/ssp.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/include/ssp/stdio.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/include/ssp/string.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/include/ssp/unistd.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/include/stdarg.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/include/stdbool.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/include/stddef.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/include/stdfix.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/include/tgmath.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/include/tmmintrin.h variant.arch=i386
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/include/unwind.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/include/varargs.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/include/wmmintrin.h variant.arch=i386
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/include/x86intrin.h variant.arch=i386
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/include/xmmintrin.h variant.arch=i386
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/install-tools/fixinc_list
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/install-tools/gsyslimits.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/install-tools/include/README
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/install-tools/include/limits.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/install-tools/macro_list
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/install-tools/mkheaders.conf
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/libgcc.a
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/libgcc_eh.a
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/libgcov.a
-link path=opt/gcc/$(COMPONENT_VERSION)/lib/libgcc_s.so target=libgcc_s.so.1
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/libgcc_s.so.1
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/libgomp.a
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/libgomp.la
-link path=opt/gcc/$(COMPONENT_VERSION)/lib/libgomp.so target=libgomp.so.1.0.0
-link path=opt/gcc/$(COMPONENT_VERSION)/lib/libgomp.so.1 target=libgomp.so.1.0.0
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/libgomp.so.1.0.0 \
-    pkg.depend.runpath=/lib:/usr/lib:opt/gcc/$(COMPONENT_VERSION)/lib \
+file path=opt/gcc/$(HUMAN_VERSION)/lib/$(MACH64)/libsupc++.a
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/$(MACH64)/crtbegin.o
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/$(MACH64)/crtend.o
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/$(MACH64)/gmon.o
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/$(MACH64)/libgcc.a
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/$(MACH64)/libgcc_eh.a
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/$(MACH64)/libgcov.a
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/crtbegin.o
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/crtend.o
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/gmon.o
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/ammintrin.h variant.arch=i386
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/avxintrin.h variant.arch=i386
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/bmmintrin.h variant.arch=i386
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/cpuid.h variant.arch=i386
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/cross-stdarg.h variant.arch=i386
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/emmintrin.h variant.arch=i386
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/float.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/immintrin.h variant.arch=i386
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/iso646.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/mm3dnow.h variant.arch=i386
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/mm_malloc.h variant.arch=i386
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/mmintrin-common.h variant.arch=i386
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/mmintrin.h variant.arch=i386
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/nmmintrin.h variant.arch=i386
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/objc/NXConstStr.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/objc/Object.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/objc/Protocol.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/objc/encoding.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/objc/hash.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/objc/objc-api.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/objc/objc-decls.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/objc/objc-list.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/objc/objc.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/objc/sarray.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/objc/thr.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/objc/typedstream.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/omp.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/pmmintrin.h variant.arch=i386
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/smmintrin.h variant.arch=i386
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/ssp/ssp.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/ssp/stdio.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/ssp/string.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/ssp/unistd.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/stdarg.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/stdbool.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/stddef.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/stdfix.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/tgmath.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/tmmintrin.h variant.arch=i386
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/unwind.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/varargs.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/wmmintrin.h variant.arch=i386
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/x86intrin.h variant.arch=i386
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/xmmintrin.h variant.arch=i386
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/install-tools/fixinc_list
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/install-tools/gsyslimits.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/install-tools/include/README
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/install-tools/include/limits.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/install-tools/macro_list
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/install-tools/mkheaders.conf
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/libgcc.a
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/libgcc_eh.a
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/libgcov.a
+link path=opt/gcc/$(HUMAN_VERSION)/lib/libgcc_s.so target=libgcc_s.so.1
+file path=opt/gcc/$(HUMAN_VERSION)/lib/libgcc_s.so.1
+file path=opt/gcc/$(HUMAN_VERSION)/lib/libgomp.a
+link path=opt/gcc/$(HUMAN_VERSION)/lib/libgomp.so target=libgomp.so.1.0.0
+link path=opt/gcc/$(HUMAN_VERSION)/lib/libgomp.so.1 target=libgomp.so.1.0.0
+file path=opt/gcc/$(HUMAN_VERSION)/lib/libgomp.so.1.0.0 \
+    pkg.depend.runpath=/lib:/usr/lib:opt/gcc/$(HUMAN_VERSION)/lib \
     pkg.linted=true
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/libgomp.spec
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/libiberty.a
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/libobjc.a
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/libobjc.la
-link path=opt/gcc/$(COMPONENT_VERSION)/lib/libobjc.so target=libobjc.so.2.0.0
-link path=opt/gcc/$(COMPONENT_VERSION)/lib/libobjc.so.2 target=libobjc.so.2.0.0
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/libobjc.so.2.0.0 \
-    pkg.depend.runpath=/lib:/usr/lib:opt/gcc/$(COMPONENT_VERSION)/lib
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/libssp.a
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/libssp.la
-link path=opt/gcc/$(COMPONENT_VERSION)/lib/libssp.so target=libssp.so.0.0.0
-link path=opt/gcc/$(COMPONENT_VERSION)/lib/libssp.so.0 target=libssp.so.0.0.0
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/libssp.so.0.0.0 \
-    pkg.depend.runpath=/lib:/usr/lib:opt/gcc/$(COMPONENT_VERSION)/lib \
+file path=opt/gcc/$(HUMAN_VERSION)/lib/libgomp.spec
+file path=opt/gcc/$(HUMAN_VERSION)/lib/libiberty.a
+file path=opt/gcc/$(HUMAN_VERSION)/lib/libobjc.a
+link path=opt/gcc/$(HUMAN_VERSION)/lib/libobjc.so target=libobjc.so.2.0.0
+link path=opt/gcc/$(HUMAN_VERSION)/lib/libobjc.so.2 target=libobjc.so.2.0.0
+file path=opt/gcc/$(HUMAN_VERSION)/lib/libobjc.so.2.0.0 \
+    pkg.depend.runpath=/lib:/usr/lib:opt/gcc/$(HUMAN_VERSION)/lib
+file path=opt/gcc/$(HUMAN_VERSION)/lib/libssp.a
+link path=opt/gcc/$(HUMAN_VERSION)/lib/libssp.so target=libssp.so.0.0.0
+link path=opt/gcc/$(HUMAN_VERSION)/lib/libssp.so.0 target=libssp.so.0.0.0
+file path=opt/gcc/$(HUMAN_VERSION)/lib/libssp.so.0.0.0 \
+    pkg.depend.runpath=/lib:/usr/lib:opt/gcc/$(HUMAN_VERSION)/lib \
     pkg.linted=true
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/libssp_nonshared.a
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/libssp_nonshared.la
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/libstdc++.a
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/libstdc++.la
-link path=opt/gcc/$(COMPONENT_VERSION)/lib/libstdc++.so \
-    target=libstdc++.so.6.0.13
-link path=opt/gcc/$(COMPONENT_VERSION)/lib/libstdc++.so.6 \
-    target=libstdc++.so.6.0.13
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/libstdc++.so.6.0.13 \
-    pkg.depend.runpath=/lib:/usr/lib:opt/gcc/$(COMPONENT_VERSION)/lib \
+file path=opt/gcc/$(HUMAN_VERSION)/lib/libssp_nonshared.a
+file path=opt/gcc/$(HUMAN_VERSION)/lib/libstdc++.a
+link path=opt/gcc/$(HUMAN_VERSION)/lib/libstdc++.so target=libstdc++.so.6.0.13
+link path=opt/gcc/$(HUMAN_VERSION)/lib/libstdc++.so.6 target=libstdc++.so.6.0.13
+file path=opt/gcc/$(HUMAN_VERSION)/lib/libstdc++.so.6.0.13 \
+    pkg.depend.runpath=/lib:/usr/lib:opt/gcc/$(HUMAN_VERSION)/lib \
     pkg.linted=true
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/libsupc++.a
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/libsupc++.la
-file path=opt/gcc/$(COMPONENT_VERSION)/libexec/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/cc1 mode=0555
-file path=opt/gcc/$(COMPONENT_VERSION)/libexec/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/cc1obj mode=0555
-file path=opt/gcc/$(COMPONENT_VERSION)/libexec/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/cc1plus mode=0555
-file path=opt/gcc/$(COMPONENT_VERSION)/libexec/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/collect2 mode=0555
-file path=opt/gcc/$(COMPONENT_VERSION)/libexec/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/install-tools/fixinc.sh mode=0555
-file path=opt/gcc/$(COMPONENT_VERSION)/libexec/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/install-tools/fixincl mode=0555
-file path=opt/gcc/$(COMPONENT_VERSION)/libexec/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/install-tools/mkheaders mode=0555
-file path=opt/gcc/$(COMPONENT_VERSION)/libexec/gcc/$(GNU_TRIPLET)/$(COMPONENT_VERSION)/install-tools/mkinstalldirs mode=0555
-file path=opt/gcc/$(COMPONENT_VERSION)/man/man1/cpp.1
-file path=opt/gcc/$(COMPONENT_VERSION)/man/man1/g++.1
-file path=opt/gcc/$(COMPONENT_VERSION)/man/man1/gcc.1
-file path=opt/gcc/$(COMPONENT_VERSION)/man/man1/gcov.1
-file path=opt/gcc/$(COMPONENT_VERSION)/man/man7/fsf-funding.7
-file path=opt/gcc/$(COMPONENT_VERSION)/man/man7/gfdl.7
-file path=opt/gcc/$(COMPONENT_VERSION)/man/man7/gpl.7
-file path=opt/gcc/$(COMPONENT_VERSION)/share/locale/be/LC_MESSAGES/cpplib.mo
-file path=opt/gcc/$(COMPONENT_VERSION)/share/locale/be/LC_MESSAGES/gcc.mo
-file path=opt/gcc/$(COMPONENT_VERSION)/share/locale/ca/LC_MESSAGES/cpplib.mo
-file path=opt/gcc/$(COMPONENT_VERSION)/share/locale/da/LC_MESSAGES/cpplib.mo
-file path=opt/gcc/$(COMPONENT_VERSION)/share/locale/da/LC_MESSAGES/gcc.mo
-file path=opt/gcc/$(COMPONENT_VERSION)/share/locale/de/LC_MESSAGES/cpplib.mo
-file path=opt/gcc/$(COMPONENT_VERSION)/share/locale/de/LC_MESSAGES/gcc.mo
-file path=opt/gcc/$(COMPONENT_VERSION)/share/locale/el/LC_MESSAGES/cpplib.mo
-file path=opt/gcc/$(COMPONENT_VERSION)/share/locale/el/LC_MESSAGES/gcc.mo
-file path=opt/gcc/$(COMPONENT_VERSION)/share/locale/es/LC_MESSAGES/cpplib.mo
-file path=opt/gcc/$(COMPONENT_VERSION)/share/locale/es/LC_MESSAGES/gcc.mo
-file path=opt/gcc/$(COMPONENT_VERSION)/share/locale/fi/LC_MESSAGES/gcc.mo
-file path=opt/gcc/$(COMPONENT_VERSION)/share/locale/fr/LC_MESSAGES/cpplib.mo
-file path=opt/gcc/$(COMPONENT_VERSION)/share/locale/fr/LC_MESSAGES/gcc.mo
-file path=opt/gcc/$(COMPONENT_VERSION)/share/locale/id/LC_MESSAGES/cpplib.mo
-file path=opt/gcc/$(COMPONENT_VERSION)/share/locale/id/LC_MESSAGES/gcc.mo
-file path=opt/gcc/$(COMPONENT_VERSION)/share/locale/ja/LC_MESSAGES/cpplib.mo
-file path=opt/gcc/$(COMPONENT_VERSION)/share/locale/ja/LC_MESSAGES/gcc.mo
-file path=opt/gcc/$(COMPONENT_VERSION)/share/locale/nl/LC_MESSAGES/cpplib.mo
-file path=opt/gcc/$(COMPONENT_VERSION)/share/locale/nl/LC_MESSAGES/gcc.mo
-file path=opt/gcc/$(COMPONENT_VERSION)/share/locale/ru/LC_MESSAGES/gcc.mo
-file path=opt/gcc/$(COMPONENT_VERSION)/share/locale/sr/LC_MESSAGES/gcc.mo
-file path=opt/gcc/$(COMPONENT_VERSION)/share/locale/sv/LC_MESSAGES/cpplib.mo
-file path=opt/gcc/$(COMPONENT_VERSION)/share/locale/sv/LC_MESSAGES/gcc.mo
-file path=opt/gcc/$(COMPONENT_VERSION)/share/locale/tr/LC_MESSAGES/cpplib.mo
-file path=opt/gcc/$(COMPONENT_VERSION)/share/locale/tr/LC_MESSAGES/gcc.mo
-file path=opt/gcc/$(COMPONENT_VERSION)/share/locale/uk/LC_MESSAGES/cpplib.mo
-file path=opt/gcc/$(COMPONENT_VERSION)/share/locale/vi/LC_MESSAGES/cpplib.mo
-file path=opt/gcc/$(COMPONENT_VERSION)/share/locale/zh_CN/LC_MESSAGES/cpplib.mo
-file path=opt/gcc/$(COMPONENT_VERSION)/share/locale/zh_CN/LC_MESSAGES/gcc.mo
-file path=opt/gcc/$(COMPONENT_VERSION)/share/locale/zh_TW/LC_MESSAGES/cpplib.mo
-file path=opt/gcc/$(COMPONENT_VERSION)/share/locale/zh_TW/LC_MESSAGES/gcc.mo
+file path=opt/gcc/$(HUMAN_VERSION)/lib/libsupc++.a
+file path=opt/gcc/$(HUMAN_VERSION)/libexec/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/cc1 mode=0555
+file path=opt/gcc/$(HUMAN_VERSION)/libexec/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/cc1obj mode=0555
+file path=opt/gcc/$(HUMAN_VERSION)/libexec/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/cc1plus mode=0555
+file path=opt/gcc/$(HUMAN_VERSION)/libexec/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/collect2 mode=0555
+file path=opt/gcc/$(HUMAN_VERSION)/libexec/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/install-tools/fixinc.sh mode=0555
+file path=opt/gcc/$(HUMAN_VERSION)/libexec/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/install-tools/fixincl mode=0555
+file path=opt/gcc/$(HUMAN_VERSION)/libexec/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/install-tools/mkheaders mode=0555
+file path=opt/gcc/$(HUMAN_VERSION)/libexec/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/install-tools/mkinstalldirs mode=0555
+file path=opt/gcc/$(HUMAN_VERSION)/man/man1/cpp.1
+file path=opt/gcc/$(HUMAN_VERSION)/man/man1/g++.1
+file path=opt/gcc/$(HUMAN_VERSION)/man/man1/gcc.1
+file path=opt/gcc/$(HUMAN_VERSION)/man/man1/gcov.1
+file path=opt/gcc/$(HUMAN_VERSION)/man/man7/fsf-funding.7
+file path=opt/gcc/$(HUMAN_VERSION)/man/man7/gfdl.7
+file path=opt/gcc/$(HUMAN_VERSION)/man/man7/gpl.7
+file path=opt/gcc/$(HUMAN_VERSION)/share/locale/be/LC_MESSAGES/cpplib.mo
+file path=opt/gcc/$(HUMAN_VERSION)/share/locale/be/LC_MESSAGES/gcc.mo
+file path=opt/gcc/$(HUMAN_VERSION)/share/locale/ca/LC_MESSAGES/cpplib.mo
+file path=opt/gcc/$(HUMAN_VERSION)/share/locale/da/LC_MESSAGES/cpplib.mo
+file path=opt/gcc/$(HUMAN_VERSION)/share/locale/da/LC_MESSAGES/gcc.mo
+file path=opt/gcc/$(HUMAN_VERSION)/share/locale/de/LC_MESSAGES/cpplib.mo
+file path=opt/gcc/$(HUMAN_VERSION)/share/locale/de/LC_MESSAGES/gcc.mo
+file path=opt/gcc/$(HUMAN_VERSION)/share/locale/el/LC_MESSAGES/cpplib.mo
+file path=opt/gcc/$(HUMAN_VERSION)/share/locale/el/LC_MESSAGES/gcc.mo
+file path=opt/gcc/$(HUMAN_VERSION)/share/locale/es/LC_MESSAGES/cpplib.mo
+file path=opt/gcc/$(HUMAN_VERSION)/share/locale/es/LC_MESSAGES/gcc.mo
+file path=opt/gcc/$(HUMAN_VERSION)/share/locale/fi/LC_MESSAGES/gcc.mo
+file path=opt/gcc/$(HUMAN_VERSION)/share/locale/fr/LC_MESSAGES/cpplib.mo
+file path=opt/gcc/$(HUMAN_VERSION)/share/locale/fr/LC_MESSAGES/gcc.mo
+file path=opt/gcc/$(HUMAN_VERSION)/share/locale/id/LC_MESSAGES/cpplib.mo
+file path=opt/gcc/$(HUMAN_VERSION)/share/locale/id/LC_MESSAGES/gcc.mo
+file path=opt/gcc/$(HUMAN_VERSION)/share/locale/ja/LC_MESSAGES/cpplib.mo
+file path=opt/gcc/$(HUMAN_VERSION)/share/locale/ja/LC_MESSAGES/gcc.mo
+file path=opt/gcc/$(HUMAN_VERSION)/share/locale/nl/LC_MESSAGES/cpplib.mo
+file path=opt/gcc/$(HUMAN_VERSION)/share/locale/nl/LC_MESSAGES/gcc.mo
+file path=opt/gcc/$(HUMAN_VERSION)/share/locale/ru/LC_MESSAGES/gcc.mo
+file path=opt/gcc/$(HUMAN_VERSION)/share/locale/sr/LC_MESSAGES/gcc.mo
+file path=opt/gcc/$(HUMAN_VERSION)/share/locale/sv/LC_MESSAGES/cpplib.mo
+file path=opt/gcc/$(HUMAN_VERSION)/share/locale/sv/LC_MESSAGES/gcc.mo
+file path=opt/gcc/$(HUMAN_VERSION)/share/locale/tr/LC_MESSAGES/cpplib.mo
+file path=opt/gcc/$(HUMAN_VERSION)/share/locale/tr/LC_MESSAGES/gcc.mo
+file path=opt/gcc/$(HUMAN_VERSION)/share/locale/uk/LC_MESSAGES/cpplib.mo
+file path=opt/gcc/$(HUMAN_VERSION)/share/locale/vi/LC_MESSAGES/cpplib.mo
+file path=opt/gcc/$(HUMAN_VERSION)/share/locale/zh_CN/LC_MESSAGES/cpplib.mo
+file path=opt/gcc/$(HUMAN_VERSION)/share/locale/zh_CN/LC_MESSAGES/gcc.mo
+file path=opt/gcc/$(HUMAN_VERSION)/share/locale/zh_TW/LC_MESSAGES/cpplib.mo
+file path=opt/gcc/$(HUMAN_VERSION)/share/locale/zh_TW/LC_MESSAGES/gcc.mo
diff --git a/components/openindiana/illumos-gcc/manifests/sample-manifest.p5m b/components/openindiana/illumos-gcc/manifests/sample-manifest.p5m
index fc91bc1..e7c2dca 100644
--- a/components/openindiana/illumos-gcc/manifests/sample-manifest.p5m
+++ b/components/openindiana/illumos-gcc/manifests/sample-manifest.p5m
@@ -5,15 +5,16 @@
 # 1.0 of the CDDL.
 #
 # A full copy of the text of the CDDL should have accompanied this
-# source. A copy of the CDDL is also available via the Internet at
+# source.  A copy of the CDDL is also available via the Internet at
 # http://www.illumos.org/license/CDDL.
 #
 
 #
-# Copyright 2017 <contributor>
+# Copyright 2023 <contributor>
 #
 
 set name=pkg.fmri value=pkg:/$(COMPONENT_FMRI)@$(IPS_COMPONENT_VERSION),$(BUILD_VERSION)
+set name=pkg.human-version value=$(HUMAN_VERSION)
 set name=pkg.summary value="$(COMPONENT_SUMMARY)"
 set name=info.classification value="$(COMPONENT_CLASSIFICATION)"
 set name=info.upstream-url value=$(COMPONENT_PROJECT_URL)
@@ -22,899 +23,845 @@
 
 license $(COMPONENT_LICENSE_FILE) license='$(COMPONENT_LICENSE)'
 
-hardlink \
-    path=opt/gcc/$(COMPONENT_VERSION)/bin/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)-c++ \
-    target=g++
-hardlink \
-    path=opt/gcc/$(COMPONENT_VERSION)/bin/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)-g++ \
-    target=g++
-hardlink \
-    path=opt/gcc/$(COMPONENT_VERSION)/bin/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)-gcc \
+hardlink path=opt/gcc/$(HUMAN_VERSION)/bin/$(GNU_TRIPLET)-c++ target=g++
+hardlink path=opt/gcc/$(HUMAN_VERSION)/bin/$(GNU_TRIPLET)-g++ target=g++
+hardlink path=opt/gcc/$(HUMAN_VERSION)/bin/$(GNU_TRIPLET)-gcc target=gcc
+hardlink path=opt/gcc/$(HUMAN_VERSION)/bin/$(GNU_TRIPLET)-gcc-$(HUMAN_VERSION) \
     target=gcc
-hardlink \
-    path=opt/gcc/$(COMPONENT_VERSION)/bin/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)-gcc-$(COMPONENT_VERSION) \
-    target=gcc
-hardlink path=opt/gcc/$(COMPONENT_VERSION)/bin/c++ target=g++
-file path=opt/gcc/$(COMPONENT_VERSION)/bin/cpp
-file path=opt/gcc/$(COMPONENT_VERSION)/bin/g++
-file path=opt/gcc/$(COMPONENT_VERSION)/bin/gcc
-file path=opt/gcc/$(COMPONENT_VERSION)/bin/gccbug
-file path=opt/gcc/$(COMPONENT_VERSION)/bin/gcov
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$!(MACH64)/bits/atomic_word.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$!(MACH64)/bits/basic_file.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$!(MACH64)/bits/c++allocator.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$!(MACH64)/bits/c++config.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$!(MACH64)/bits/c++io.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$!(MACH64)/bits/c++locale.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$!(MACH64)/bits/cpu_defines.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$!(MACH64)/bits/ctype_base.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$!(MACH64)/bits/ctype_inline.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$!(MACH64)/bits/ctype_noninline.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$!(MACH64)/bits/cxxabi_tweaks.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$!(MACH64)/bits/error_constants.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$!(MACH64)/bits/extc++.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$!(MACH64)/bits/gthr-default.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$!(MACH64)/bits/gthr-posix.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$!(MACH64)/bits/gthr-single.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$!(MACH64)/bits/gthr-tpf.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$!(MACH64)/bits/gthr.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$!(MACH64)/bits/messages_members.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$!(MACH64)/bits/os_defines.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$!(MACH64)/bits/stdc++.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$!(MACH64)/bits/stdtr1c++.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$!(MACH64)/bits/time_members.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/bits/atomic_word.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/bits/basic_file.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/bits/c++allocator.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/bits/c++config.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/bits/c++io.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/bits/c++locale.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/bits/cpu_defines.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/bits/ctype_base.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/bits/ctype_inline.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/bits/ctype_noninline.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/bits/cxxabi_tweaks.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/bits/error_constants.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/bits/extc++.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/bits/gthr-default.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/bits/gthr-posix.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/bits/gthr-single.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/bits/gthr-tpf.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/bits/gthr.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/bits/messages_members.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/bits/os_defines.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/bits/stdc++.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/bits/stdtr1c++.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/bits/time_members.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/algorithm
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/array
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/backward/auto_ptr.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/backward/backward_warning.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/backward/binders.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/backward/hash_fun.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/backward/hash_map
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/backward/hash_set
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/backward/hashtable.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/backward/strstream
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/algorithmfwd.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/allocator.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/atomic_0.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/atomic_2.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/atomicfwd_c.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/atomicfwd_cxx.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/basic_ios.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/basic_ios.tcc
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/basic_string.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/basic_string.tcc
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/boost_concept_check.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/char_traits.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/cmath.tcc
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/codecvt.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/concept_check.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/cpp_type_traits.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/deque.tcc
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/forward_list.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/forward_list.tcc
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/fstream.tcc
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/functexcept.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/functional_hash.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/gslice.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/gslice_array.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/hashtable.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/indirect_array.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/ios_base.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/istream.tcc
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/list.tcc
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/locale_classes.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/locale_classes.tcc
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/locale_facets.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/locale_facets.tcc
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/locale_facets_nonio.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/locale_facets_nonio.tcc
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/localefwd.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/mask_array.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/move.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/ostream.tcc
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/ostream_insert.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/postypes.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/shared_ptr.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/slice_array.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/sstream.tcc
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/stl_algo.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/stl_algobase.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/stl_bvector.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/stl_construct.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/stl_deque.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/stl_function.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/stl_heap.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/stl_iterator.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/stl_iterator_base_funcs.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/stl_iterator_base_types.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/stl_list.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/stl_map.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/stl_multimap.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/stl_multiset.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/stl_numeric.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/stl_pair.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/stl_queue.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/stl_raw_storage_iter.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/stl_relops.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/stl_set.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/stl_stack.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/stl_tempbuf.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/stl_tree.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/stl_uninitialized.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/stl_vector.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/stream_iterator.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/streambuf.tcc
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/streambuf_iterator.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/stringfwd.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/unique_ptr.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/valarray_after.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/valarray_array.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/valarray_array.tcc
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/valarray_before.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bits/vector.tcc
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/bitset
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/c++0x_warning.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/cassert
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ccomplex
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/cctype
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/cerrno
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/cfenv
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/cfloat
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/chrono
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/cinttypes
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ciso646
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/climits
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/clocale
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/cmath
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/complex
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/complex.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/condition_variable
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/csetjmp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/csignal
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/cstdarg
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/cstdatomic
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/cstdbool
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/cstddef
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/cstdint
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/cstdio
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/cstdlib
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/cstring
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ctgmath
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ctime
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/cwchar
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/cwctype
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/cxxabi-forced.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/cxxabi.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/debug/bitset
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/debug/debug.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/debug/deque
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/debug/formatter.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/debug/functions.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/debug/list
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/debug/macros.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/debug/map
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/debug/map.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/debug/multimap.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/debug/multiset.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/debug/safe_base.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/debug/safe_iterator.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/debug/safe_iterator.tcc
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/debug/safe_sequence.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/debug/set
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/debug/set.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/debug/string
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/debug/unordered_map
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/debug/unordered_set
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/debug/vector
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/deque
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/exception
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/exception_defines.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/exception_ptr.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/algorithm
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/array_allocator.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/atomicity.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/bitmap_allocator.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/cast.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/codecvt_specializations.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/concurrence.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/debug_allocator.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/enc_filebuf.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/extptr_allocator.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/functional
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/hash_map
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/hash_set
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/iterator
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/malloc_allocator.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/memory
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/mt_allocator.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/new_allocator.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/numeric
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/numeric_traits.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/assoc_container.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/basic_tree_policy/basic_tree_policy_base.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/basic_tree_policy/null_node_metadata.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/basic_tree_policy/traits.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/basic_types.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/bin_search_tree_/bin_search_tree_.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/bin_search_tree_/cond_dtor_entry_dealtor.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/bin_search_tree_/cond_key_dtor_entry_dealtor.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/bin_search_tree_/constructors_destructor_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/bin_search_tree_/debug_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/bin_search_tree_/erase_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/bin_search_tree_/find_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/bin_search_tree_/info_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/bin_search_tree_/insert_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/bin_search_tree_/iterators_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/bin_search_tree_/node_iterators.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/bin_search_tree_/point_iterators.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/bin_search_tree_/policy_access_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/bin_search_tree_/r_erase_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/bin_search_tree_/rotate_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/bin_search_tree_/split_join_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/bin_search_tree_/traits.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/binary_heap_/binary_heap_.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/binary_heap_/const_iterator.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/binary_heap_/const_point_iterator.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/binary_heap_/constructors_destructor_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/binary_heap_/debug_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/binary_heap_/entry_cmp.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/binary_heap_/entry_pred.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/binary_heap_/erase_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/binary_heap_/find_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/binary_heap_/info_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/binary_heap_/insert_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/binary_heap_/iterators_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/binary_heap_/policy_access_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/binary_heap_/resize_policy.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/binary_heap_/split_join_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/binary_heap_/trace_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/binomial_heap_/binomial_heap_.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/binomial_heap_/constructors_destructor_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/binomial_heap_/debug_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/binomial_heap_base_/binomial_heap_base_.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/binomial_heap_base_/constructors_destructor_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/binomial_heap_base_/debug_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/binomial_heap_base_/erase_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/binomial_heap_base_/find_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/binomial_heap_base_/insert_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/binomial_heap_base_/split_join_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/cc_ht_map_.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/cmp_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/cond_key_dtor_entry_dealtor.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/debug_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/debug_no_store_hash_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/debug_store_hash_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/entry_list_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/erase_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/erase_no_store_hash_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/erase_store_hash_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/find_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/find_store_hash_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/info_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/insert_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/insert_no_store_hash_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/insert_store_hash_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/iterators_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/policy_access_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/resize_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/resize_no_store_hash_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/resize_store_hash_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/size_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/standard_policies.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/trace_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/cond_dealtor.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/constructors_destructor_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/container_base_dispatch.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/debug_map_base.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/eq_fn/eq_by_less.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/eq_fn/hash_eq_fn.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/debug_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/debug_no_store_hash_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/debug_store_hash_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/erase_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/erase_no_store_hash_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/erase_store_hash_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/find_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/find_no_store_hash_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/find_store_hash_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/gp_ht_map_.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/info_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/insert_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/insert_no_store_hash_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/insert_store_hash_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/iterator_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/policy_access_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/resize_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/resize_no_store_hash_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/resize_store_hash_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/standard_policies.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/trace_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/hash_fn/direct_mask_range_hashing_imp.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/hash_fn/direct_mod_range_hashing_imp.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/hash_fn/linear_probe_fn_imp.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/hash_fn/mask_based_range_hashing.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/hash_fn/mod_based_range_hashing.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/hash_fn/probe_fn_base.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/hash_fn/quadratic_probe_fn_imp.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/hash_fn/ranged_hash_fn.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/hash_fn/ranged_probe_fn.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/hash_fn/sample_probe_fn.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/hash_fn/sample_range_hashing.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/hash_fn/sample_ranged_hash_fn.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/hash_fn/sample_ranged_probe_fn.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/left_child_next_sibling_heap_/const_iterator.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/left_child_next_sibling_heap_/const_point_iterator.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/left_child_next_sibling_heap_/constructors_destructor_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/left_child_next_sibling_heap_/debug_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/left_child_next_sibling_heap_/erase_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/left_child_next_sibling_heap_/info_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/left_child_next_sibling_heap_/insert_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/left_child_next_sibling_heap_/iterators_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/left_child_next_sibling_heap_/left_child_next_sibling_heap_.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/left_child_next_sibling_heap_/node.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/left_child_next_sibling_heap_/null_metadata.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/left_child_next_sibling_heap_/policy_access_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/left_child_next_sibling_heap_/trace_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/list_update_map_/constructor_destructor_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/list_update_map_/debug_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/list_update_map_/entry_metadata_base.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/list_update_map_/erase_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/list_update_map_/find_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/list_update_map_/info_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/list_update_map_/insert_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/list_update_map_/iterators_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/list_update_map_/lu_map_.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/list_update_map_/trace_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/list_update_policy/counter_lu_metadata.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/list_update_policy/counter_lu_policy_imp.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/list_update_policy/mtf_lu_policy_imp.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/list_update_policy/sample_update_policy.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/ov_tree_map_/cond_dtor.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/ov_tree_map_/constructors_destructor_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/ov_tree_map_/debug_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/ov_tree_map_/erase_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/ov_tree_map_/info_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/ov_tree_map_/insert_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/ov_tree_map_/iterators_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/ov_tree_map_/node_iterators.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/ov_tree_map_/ov_tree_map_.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/ov_tree_map_/policy_access_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/ov_tree_map_/split_join_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/ov_tree_map_/traits.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pairing_heap_/constructors_destructor_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pairing_heap_/debug_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pairing_heap_/erase_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pairing_heap_/find_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pairing_heap_/insert_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pairing_heap_/pairing_heap_.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pairing_heap_/split_join_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pat_trie_/child_iterator.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pat_trie_/cond_dtor_entry_dealtor.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pat_trie_/const_child_iterator.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pat_trie_/constructors_destructor_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pat_trie_/debug_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pat_trie_/erase_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pat_trie_/find_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pat_trie_/head.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pat_trie_/info_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pat_trie_/insert_join_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pat_trie_/internal_node.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pat_trie_/iterators_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pat_trie_/leaf.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pat_trie_/node_base.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pat_trie_/node_iterators.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pat_trie_/node_metadata_base.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pat_trie_/pat_trie_.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pat_trie_/point_iterators.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pat_trie_/policy_access_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pat_trie_/r_erase_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pat_trie_/rotate_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pat_trie_/split_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pat_trie_/split_join_branch_bag.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pat_trie_/synth_e_access_traits.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pat_trie_/trace_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pat_trie_/traits.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/pat_trie_/update_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/priority_queue_base_dispatch.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/rb_tree_map_/constructors_destructor_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/rb_tree_map_/debug_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/rb_tree_map_/erase_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/rb_tree_map_/find_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/rb_tree_map_/info_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/rb_tree_map_/insert_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/rb_tree_map_/node.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/rb_tree_map_/rb_tree_.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/rb_tree_map_/split_join_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/rb_tree_map_/traits.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/rc_binomial_heap_/constructors_destructor_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/rc_binomial_heap_/debug_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/rc_binomial_heap_/erase_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/rc_binomial_heap_/insert_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/rc_binomial_heap_/rc.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/rc_binomial_heap_/rc_binomial_heap_.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/rc_binomial_heap_/split_join_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/rc_binomial_heap_/trace_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/resize_policy/cc_hash_max_collision_check_resize_trigger_imp.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/resize_policy/hash_exponential_size_policy_imp.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/resize_policy/hash_load_check_resize_trigger_imp.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/resize_policy/hash_load_check_resize_trigger_size_base.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/resize_policy/hash_prime_size_policy_imp.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/resize_policy/hash_standard_resize_policy_imp.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/resize_policy/sample_resize_policy.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/resize_policy/sample_resize_trigger.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/resize_policy/sample_size_policy.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/splay_tree_/constructors_destructor_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/splay_tree_/debug_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/splay_tree_/erase_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/splay_tree_/find_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/splay_tree_/info_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/splay_tree_/insert_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/splay_tree_/node.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/splay_tree_/splay_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/splay_tree_/splay_tree_.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/splay_tree_/split_join_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/splay_tree_/traits.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/standard_policies.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/thin_heap_/constructors_destructor_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/thin_heap_/debug_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/thin_heap_/erase_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/thin_heap_/find_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/thin_heap_/insert_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/thin_heap_/split_join_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/thin_heap_/thin_heap_.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/thin_heap_/trace_fn_imps.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/tree_policy/node_metadata_selector.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/tree_policy/null_node_update_imp.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/tree_policy/order_statistics_imp.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/tree_policy/sample_tree_node_update.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/tree_trace_base.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/trie_policy/node_metadata_selector.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/trie_policy/null_node_update_imp.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/trie_policy/order_statistics_imp.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/trie_policy/prefix_search_node_update_imp.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/trie_policy/sample_trie_e_access_traits.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/trie_policy/sample_trie_node_update.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/trie_policy/string_trie_e_access_traits_imp.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/trie_policy/trie_policy_base.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/type_utils.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/types_traits.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/unordered_iterator/const_iterator.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/unordered_iterator/const_point_iterator.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/unordered_iterator/iterator.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/detail/unordered_iterator/point_iterator.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/exception.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/hash_policy.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/list_update_policy.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/priority_queue.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/tag_and_trait.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/tree_policy.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pb_ds/trie_policy.hpp
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pod_char_traits.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pointer.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/pool_allocator.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/rb_tree
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/rc_string_base.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/rope
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/ropeimpl.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/slist
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/sso_string_base.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/stdio_filebuf.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/stdio_sync_filebuf.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/string_conversions.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/throw_allocator.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/type_traits.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/typelist.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/vstring.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/vstring.tcc
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/vstring_fwd.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ext/vstring_util.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/fenv.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/forward_list
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/fstream
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/functional
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/initializer_list
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/iomanip
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ios
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/iosfwd
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/iostream
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/istream
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/iterator
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/limits
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/list
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/locale
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/map
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/memory
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/mutex
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/new
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/numeric
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ostream
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/algo.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/algobase.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/algorithm
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/algorithmfwd.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/balanced_quicksort.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/base.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/basic_iterator.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/checkers.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/compatibility.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/compiletime_settings.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/equally_split.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/features.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/find.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/find_selectors.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/for_each.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/for_each_selectors.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/iterator.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/list_partition.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/losertree.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/merge.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/multiseq_selection.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/multiway_merge.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/multiway_mergesort.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/numeric
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/numericfwd.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/omp_loop.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/omp_loop_static.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/par_loop.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/parallel.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/partial_sum.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/partition.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/queue.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/quicksort.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/random_number.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/random_shuffle.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/search.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/set_operations.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/settings.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/sort.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/tags.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/types.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/unique_copy.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/parallel/workstealing.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/queue
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/random
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/ratio
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/regex
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/set
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/sstream
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/stack
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/stdatomic.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/stdexcept
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/streambuf
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/string
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/system_error
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tgmath.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/thread
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/array
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/bessel_function.tcc
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/beta_function.tcc
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/ccomplex
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/cctype
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/cfenv
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/cfloat
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/cinttypes
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/climits
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/cmath
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/complex
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/complex.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/cstdarg
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/cstdbool
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/cstdint
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/cstdio
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/cstdlib
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/ctgmath
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/ctime
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/ctype.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/cwchar
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/cwctype
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/ell_integral.tcc
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/exp_integral.tcc
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/fenv.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/float.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/functional
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/functional_hash.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/gamma.tcc
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/hashtable.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/hypergeometric.tcc
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/inttypes.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/legendre_function.tcc
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/limits.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/math.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/memory
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/modified_bessel_func.tcc
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/poly_hermite.tcc
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/poly_laguerre.tcc
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/random
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/regex
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/riemann_zeta.tcc
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/shared_ptr.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/special_function_util.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/stdarg.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/stdbool.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/stdint.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/stdio.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/stdlib.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/tgmath.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/tuple
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/type_traits
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/unordered_map
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/unordered_set
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/utility
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/wchar.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1/wctype.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1_impl/array
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1_impl/boost_sp_counted_base.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1_impl/cctype
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1_impl/cfenv
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1_impl/cinttypes
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1_impl/cmath
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1_impl/complex
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1_impl/cstdint
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1_impl/cstdio
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1_impl/cstdlib
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1_impl/cwchar
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1_impl/cwctype
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1_impl/functional
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1_impl/functional_hash.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1_impl/hashtable
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1_impl/hashtable_policy.h
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1_impl/random
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1_impl/random.tcc
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1_impl/regex
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1_impl/type_traits
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1_impl/unordered_map
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1_impl/unordered_set
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tr1_impl/utility
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/tuple
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/type_traits
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/typeinfo
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/unordered_map
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/unordered_set
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/utility
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/valarray
-file path=opt/gcc/$(COMPONENT_VERSION)/include/c++/$(COMPONENT_VERSION)/vector
-file path=opt/gcc/$(COMPONENT_VERSION)/info/cpp.info
-file path=opt/gcc/$(COMPONENT_VERSION)/info/cppinternals.info
-file path=opt/gcc/$(COMPONENT_VERSION)/info/dir
-file path=opt/gcc/$(COMPONENT_VERSION)/info/gcc.info
-file path=opt/gcc/$(COMPONENT_VERSION)/info/gccinstall.info
-file path=opt/gcc/$(COMPONENT_VERSION)/info/gccint.info
-file path=opt/gcc/$(COMPONENT_VERSION)/info/libgomp.info
-link path=opt/gcc/$(COMPONENT_VERSION)/lib/$(MACH64)/libgcc_s.so \
+hardlink path=opt/gcc/$(HUMAN_VERSION)/bin/c++ target=g++
+file path=opt/gcc/$(HUMAN_VERSION)/bin/cpp
+file path=opt/gcc/$(HUMAN_VERSION)/bin/g++
+file path=opt/gcc/$(HUMAN_VERSION)/bin/gcc
+file path=opt/gcc/$(HUMAN_VERSION)/bin/gccbug
+file path=opt/gcc/$(HUMAN_VERSION)/bin/gcov
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/atomic_word.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/basic_file.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/c++allocator.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/c++config.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/c++io.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/c++locale.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/cpu_defines.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/ctype_base.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/ctype_inline.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/ctype_noninline.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/cxxabi_tweaks.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/error_constants.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/extc++.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/gthr-default.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/gthr-posix.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/gthr-single.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/gthr-tpf.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/gthr.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/messages_members.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/os_defines.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/stdc++.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/stdtr1c++.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/$(MACH64)/bits/time_members.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/bits/atomic_word.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/bits/basic_file.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/bits/c++allocator.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/bits/c++config.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/bits/c++io.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/bits/c++locale.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/bits/cpu_defines.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/bits/ctype_base.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/bits/ctype_inline.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/bits/ctype_noninline.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/bits/cxxabi_tweaks.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/bits/error_constants.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/bits/extc++.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/bits/gthr-default.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/bits/gthr-posix.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/bits/gthr-single.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/bits/gthr-tpf.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/bits/gthr.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/bits/messages_members.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/bits/os_defines.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/bits/stdc++.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/bits/stdtr1c++.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/$(GNU_TRIPLET)/bits/time_members.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/algorithm
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/array
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/backward/auto_ptr.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/backward/backward_warning.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/backward/binders.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/backward/hash_fun.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/backward/hash_map
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/backward/hash_set
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/backward/hashtable.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/backward/strstream
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/algorithmfwd.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/allocator.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/atomic_0.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/atomic_2.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/atomicfwd_c.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/atomicfwd_cxx.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/basic_ios.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/basic_ios.tcc
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/basic_string.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/basic_string.tcc
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/boost_concept_check.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/char_traits.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/cmath.tcc
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/codecvt.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/concept_check.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/cpp_type_traits.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/deque.tcc
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/forward_list.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/forward_list.tcc
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/fstream.tcc
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/functexcept.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/functional_hash.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/gslice.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/gslice_array.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/hashtable.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/indirect_array.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/ios_base.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/istream.tcc
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/list.tcc
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/locale_classes.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/locale_classes.tcc
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/locale_facets.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/locale_facets.tcc
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/locale_facets_nonio.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/locale_facets_nonio.tcc
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/localefwd.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/mask_array.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/move.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/ostream.tcc
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/ostream_insert.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/postypes.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/shared_ptr.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/slice_array.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/sstream.tcc
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/stl_algo.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/stl_algobase.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/stl_bvector.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/stl_construct.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/stl_deque.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/stl_function.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/stl_heap.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/stl_iterator.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/stl_iterator_base_funcs.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/stl_iterator_base_types.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/stl_list.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/stl_map.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/stl_multimap.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/stl_multiset.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/stl_numeric.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/stl_pair.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/stl_queue.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/stl_raw_storage_iter.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/stl_relops.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/stl_set.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/stl_stack.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/stl_tempbuf.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/stl_tree.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/stl_uninitialized.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/stl_vector.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/stream_iterator.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/streambuf.tcc
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/streambuf_iterator.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/stringfwd.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/unique_ptr.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/valarray_after.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/valarray_array.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/valarray_array.tcc
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/valarray_before.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bits/vector.tcc
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/bitset
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/c++0x_warning.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/cassert
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ccomplex
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/cctype
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/cerrno
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/cfenv
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/cfloat
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/chrono
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/cinttypes
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ciso646
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/climits
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/clocale
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/cmath
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/complex
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/complex.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/condition_variable
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/csetjmp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/csignal
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/cstdarg
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/cstdatomic
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/cstdbool
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/cstddef
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/cstdint
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/cstdio
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/cstdlib
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/cstring
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ctgmath
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ctime
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/cwchar
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/cwctype
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/cxxabi-forced.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/cxxabi.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/debug/bitset
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/debug/debug.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/debug/deque
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/debug/formatter.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/debug/functions.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/debug/list
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/debug/macros.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/debug/map
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/debug/map.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/debug/multimap.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/debug/multiset.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/debug/safe_base.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/debug/safe_iterator.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/debug/safe_iterator.tcc
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/debug/safe_sequence.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/debug/set
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/debug/set.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/debug/string
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/debug/unordered_map
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/debug/unordered_set
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/debug/vector
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/deque
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/exception
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/exception_defines.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/exception_ptr.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/algorithm
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/array_allocator.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/atomicity.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/bitmap_allocator.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/cast.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/codecvt_specializations.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/concurrence.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/debug_allocator.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/enc_filebuf.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/extptr_allocator.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/functional
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/hash_map
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/hash_set
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/iterator
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/malloc_allocator.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/memory
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/mt_allocator.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/new_allocator.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/numeric
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/numeric_traits.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/assoc_container.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/basic_tree_policy/basic_tree_policy_base.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/basic_tree_policy/null_node_metadata.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/basic_tree_policy/traits.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/basic_types.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/bin_search_tree_/bin_search_tree_.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/bin_search_tree_/cond_dtor_entry_dealtor.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/bin_search_tree_/cond_key_dtor_entry_dealtor.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/bin_search_tree_/constructors_destructor_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/bin_search_tree_/debug_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/bin_search_tree_/erase_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/bin_search_tree_/find_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/bin_search_tree_/info_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/bin_search_tree_/insert_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/bin_search_tree_/iterators_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/bin_search_tree_/node_iterators.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/bin_search_tree_/point_iterators.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/bin_search_tree_/policy_access_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/bin_search_tree_/r_erase_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/bin_search_tree_/rotate_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/bin_search_tree_/split_join_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/bin_search_tree_/traits.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/binary_heap_/binary_heap_.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/binary_heap_/const_iterator.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/binary_heap_/const_point_iterator.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/binary_heap_/constructors_destructor_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/binary_heap_/debug_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/binary_heap_/entry_cmp.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/binary_heap_/entry_pred.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/binary_heap_/erase_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/binary_heap_/find_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/binary_heap_/info_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/binary_heap_/insert_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/binary_heap_/iterators_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/binary_heap_/policy_access_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/binary_heap_/resize_policy.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/binary_heap_/split_join_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/binary_heap_/trace_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/binomial_heap_/binomial_heap_.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/binomial_heap_/constructors_destructor_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/binomial_heap_/debug_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/binomial_heap_base_/binomial_heap_base_.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/binomial_heap_base_/constructors_destructor_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/binomial_heap_base_/debug_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/binomial_heap_base_/erase_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/binomial_heap_base_/find_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/binomial_heap_base_/insert_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/binomial_heap_base_/split_join_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/cc_ht_map_.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/cmp_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/cond_key_dtor_entry_dealtor.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/debug_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/debug_no_store_hash_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/debug_store_hash_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/entry_list_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/erase_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/erase_no_store_hash_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/erase_store_hash_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/find_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/find_store_hash_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/info_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/insert_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/insert_no_store_hash_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/insert_store_hash_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/iterators_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/policy_access_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/resize_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/resize_no_store_hash_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/resize_store_hash_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/size_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/standard_policies.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/cc_hash_table_map_/trace_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/cond_dealtor.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/constructors_destructor_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/container_base_dispatch.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/debug_map_base.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/eq_fn/eq_by_less.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/eq_fn/hash_eq_fn.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/debug_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/debug_no_store_hash_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/debug_store_hash_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/erase_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/erase_no_store_hash_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/erase_store_hash_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/find_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/find_no_store_hash_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/find_store_hash_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/gp_ht_map_.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/info_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/insert_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/insert_no_store_hash_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/insert_store_hash_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/iterator_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/policy_access_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/resize_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/resize_no_store_hash_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/resize_store_hash_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/standard_policies.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/gp_hash_table_map_/trace_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/hash_fn/direct_mask_range_hashing_imp.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/hash_fn/direct_mod_range_hashing_imp.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/hash_fn/linear_probe_fn_imp.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/hash_fn/mask_based_range_hashing.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/hash_fn/mod_based_range_hashing.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/hash_fn/probe_fn_base.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/hash_fn/quadratic_probe_fn_imp.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/hash_fn/ranged_hash_fn.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/hash_fn/ranged_probe_fn.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/hash_fn/sample_probe_fn.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/hash_fn/sample_range_hashing.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/hash_fn/sample_ranged_hash_fn.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/hash_fn/sample_ranged_probe_fn.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/left_child_next_sibling_heap_/const_iterator.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/left_child_next_sibling_heap_/const_point_iterator.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/left_child_next_sibling_heap_/constructors_destructor_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/left_child_next_sibling_heap_/debug_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/left_child_next_sibling_heap_/erase_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/left_child_next_sibling_heap_/info_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/left_child_next_sibling_heap_/insert_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/left_child_next_sibling_heap_/iterators_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/left_child_next_sibling_heap_/left_child_next_sibling_heap_.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/left_child_next_sibling_heap_/node.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/left_child_next_sibling_heap_/null_metadata.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/left_child_next_sibling_heap_/policy_access_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/left_child_next_sibling_heap_/trace_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/list_update_map_/constructor_destructor_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/list_update_map_/debug_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/list_update_map_/entry_metadata_base.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/list_update_map_/erase_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/list_update_map_/find_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/list_update_map_/info_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/list_update_map_/insert_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/list_update_map_/iterators_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/list_update_map_/lu_map_.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/list_update_map_/trace_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/list_update_policy/counter_lu_metadata.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/list_update_policy/counter_lu_policy_imp.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/list_update_policy/mtf_lu_policy_imp.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/list_update_policy/sample_update_policy.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/ov_tree_map_/cond_dtor.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/ov_tree_map_/constructors_destructor_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/ov_tree_map_/debug_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/ov_tree_map_/erase_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/ov_tree_map_/info_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/ov_tree_map_/insert_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/ov_tree_map_/iterators_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/ov_tree_map_/node_iterators.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/ov_tree_map_/ov_tree_map_.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/ov_tree_map_/policy_access_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/ov_tree_map_/split_join_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/ov_tree_map_/traits.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pairing_heap_/constructors_destructor_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pairing_heap_/debug_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pairing_heap_/erase_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pairing_heap_/find_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pairing_heap_/insert_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pairing_heap_/pairing_heap_.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pairing_heap_/split_join_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pat_trie_/child_iterator.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pat_trie_/cond_dtor_entry_dealtor.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pat_trie_/const_child_iterator.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pat_trie_/constructors_destructor_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pat_trie_/debug_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pat_trie_/erase_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pat_trie_/find_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pat_trie_/head.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pat_trie_/info_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pat_trie_/insert_join_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pat_trie_/internal_node.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pat_trie_/iterators_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pat_trie_/leaf.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pat_trie_/node_base.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pat_trie_/node_iterators.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pat_trie_/node_metadata_base.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pat_trie_/pat_trie_.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pat_trie_/point_iterators.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pat_trie_/policy_access_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pat_trie_/r_erase_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pat_trie_/rotate_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pat_trie_/split_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pat_trie_/split_join_branch_bag.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pat_trie_/synth_e_access_traits.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pat_trie_/trace_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pat_trie_/traits.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/pat_trie_/update_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/priority_queue_base_dispatch.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/rb_tree_map_/constructors_destructor_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/rb_tree_map_/debug_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/rb_tree_map_/erase_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/rb_tree_map_/find_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/rb_tree_map_/info_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/rb_tree_map_/insert_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/rb_tree_map_/node.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/rb_tree_map_/rb_tree_.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/rb_tree_map_/split_join_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/rb_tree_map_/traits.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/rc_binomial_heap_/constructors_destructor_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/rc_binomial_heap_/debug_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/rc_binomial_heap_/erase_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/rc_binomial_heap_/insert_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/rc_binomial_heap_/rc.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/rc_binomial_heap_/rc_binomial_heap_.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/rc_binomial_heap_/split_join_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/rc_binomial_heap_/trace_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/resize_policy/cc_hash_max_collision_check_resize_trigger_imp.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/resize_policy/hash_exponential_size_policy_imp.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/resize_policy/hash_load_check_resize_trigger_imp.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/resize_policy/hash_load_check_resize_trigger_size_base.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/resize_policy/hash_prime_size_policy_imp.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/resize_policy/hash_standard_resize_policy_imp.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/resize_policy/sample_resize_policy.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/resize_policy/sample_resize_trigger.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/resize_policy/sample_size_policy.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/splay_tree_/constructors_destructor_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/splay_tree_/debug_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/splay_tree_/erase_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/splay_tree_/find_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/splay_tree_/info_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/splay_tree_/insert_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/splay_tree_/node.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/splay_tree_/splay_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/splay_tree_/splay_tree_.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/splay_tree_/split_join_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/splay_tree_/traits.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/standard_policies.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/thin_heap_/constructors_destructor_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/thin_heap_/debug_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/thin_heap_/erase_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/thin_heap_/find_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/thin_heap_/insert_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/thin_heap_/split_join_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/thin_heap_/thin_heap_.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/thin_heap_/trace_fn_imps.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/tree_policy/node_metadata_selector.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/tree_policy/null_node_update_imp.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/tree_policy/order_statistics_imp.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/tree_policy/sample_tree_node_update.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/tree_trace_base.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/trie_policy/node_metadata_selector.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/trie_policy/null_node_update_imp.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/trie_policy/order_statistics_imp.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/trie_policy/prefix_search_node_update_imp.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/trie_policy/sample_trie_e_access_traits.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/trie_policy/sample_trie_node_update.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/trie_policy/string_trie_e_access_traits_imp.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/trie_policy/trie_policy_base.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/type_utils.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/types_traits.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/unordered_iterator/const_iterator.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/unordered_iterator/const_point_iterator.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/unordered_iterator/iterator.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/detail/unordered_iterator/point_iterator.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/exception.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/hash_policy.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/list_update_policy.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/priority_queue.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/tag_and_trait.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/tree_policy.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pb_ds/trie_policy.hpp
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pod_char_traits.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pointer.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/pool_allocator.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/rb_tree
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/rc_string_base.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/rope
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/ropeimpl.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/slist
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/sso_string_base.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/stdio_filebuf.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/stdio_sync_filebuf.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/string_conversions.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/throw_allocator.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/type_traits.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/typelist.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/vstring.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/vstring.tcc
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/vstring_fwd.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ext/vstring_util.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/fenv.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/forward_list
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/fstream
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/functional
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/initializer_list
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/iomanip
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ios
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/iosfwd
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/iostream
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/istream
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/iterator
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/limits
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/list
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/locale
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/map
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/memory
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/mutex
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/new
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/numeric
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ostream
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/algo.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/algobase.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/algorithm
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/algorithmfwd.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/balanced_quicksort.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/base.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/basic_iterator.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/checkers.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/compatibility.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/compiletime_settings.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/equally_split.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/features.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/find.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/find_selectors.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/for_each.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/for_each_selectors.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/iterator.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/list_partition.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/losertree.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/merge.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/multiseq_selection.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/multiway_merge.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/multiway_mergesort.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/numeric
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/numericfwd.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/omp_loop.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/omp_loop_static.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/par_loop.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/parallel.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/partial_sum.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/partition.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/queue.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/quicksort.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/random_number.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/random_shuffle.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/search.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/set_operations.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/settings.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/sort.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/tags.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/types.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/unique_copy.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/parallel/workstealing.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/queue
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/random
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/ratio
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/regex
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/set
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/sstream
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/stack
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/stdatomic.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/stdexcept
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/streambuf
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/string
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/system_error
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tgmath.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/thread
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/array
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/bessel_function.tcc
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/beta_function.tcc
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/ccomplex
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/cctype
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/cfenv
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/cfloat
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/cinttypes
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/climits
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/cmath
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/complex
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/complex.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/cstdarg
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/cstdbool
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/cstdint
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/cstdio
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/cstdlib
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/ctgmath
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/ctime
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/ctype.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/cwchar
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/cwctype
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/ell_integral.tcc
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/exp_integral.tcc
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/fenv.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/float.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/functional
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/functional_hash.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/gamma.tcc
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/hashtable.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/hypergeometric.tcc
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/inttypes.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/legendre_function.tcc
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/limits.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/math.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/memory
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/modified_bessel_func.tcc
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/poly_hermite.tcc
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/poly_laguerre.tcc
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/random
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/regex
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/riemann_zeta.tcc
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/shared_ptr.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/special_function_util.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/stdarg.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/stdbool.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/stdint.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/stdio.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/stdlib.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/tgmath.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/tuple
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/type_traits
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/unordered_map
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/unordered_set
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/utility
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/wchar.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1/wctype.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1_impl/array
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1_impl/boost_sp_counted_base.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1_impl/cctype
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1_impl/cfenv
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1_impl/cinttypes
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1_impl/cmath
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1_impl/complex
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1_impl/cstdint
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1_impl/cstdio
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1_impl/cstdlib
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1_impl/cwchar
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1_impl/cwctype
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1_impl/functional
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1_impl/functional_hash.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1_impl/hashtable
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1_impl/hashtable_policy.h
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1_impl/random
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1_impl/random.tcc
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1_impl/regex
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1_impl/type_traits
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1_impl/unordered_map
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1_impl/unordered_set
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tr1_impl/utility
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/tuple
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/type_traits
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/typeinfo
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/unordered_map
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/unordered_set
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/utility
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/valarray
+file path=opt/gcc/$(HUMAN_VERSION)/include/c++/$(HUMAN_VERSION)/vector
+file path=opt/gcc/$(HUMAN_VERSION)/info/cpp.info
+file path=opt/gcc/$(HUMAN_VERSION)/info/cppinternals.info
+file path=opt/gcc/$(HUMAN_VERSION)/info/dir
+file path=opt/gcc/$(HUMAN_VERSION)/info/gcc.info
+file path=opt/gcc/$(HUMAN_VERSION)/info/gccinstall.info
+file path=opt/gcc/$(HUMAN_VERSION)/info/gccint.info
+file path=opt/gcc/$(HUMAN_VERSION)/info/libgomp.info
+link path=opt/gcc/$(HUMAN_VERSION)/lib/$(MACH64)/libgcc_s.so \
     target=libgcc_s.so.1
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/$(MACH64)/libgcc_s.so.1
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/$(MACH64)/libgomp.a
-link path=opt/gcc/$(COMPONENT_VERSION)/lib/$(MACH64)/libgomp.so \
+file path=opt/gcc/$(HUMAN_VERSION)/lib/$(MACH64)/libgcc_s.so.1
+file path=opt/gcc/$(HUMAN_VERSION)/lib/$(MACH64)/libgomp.a
+link path=opt/gcc/$(HUMAN_VERSION)/lib/$(MACH64)/libgomp.so \
     target=libgomp.so.1.0.0
-link path=opt/gcc/$(COMPONENT_VERSION)/lib/$(MACH64)/libgomp.so.1 \
+link path=opt/gcc/$(HUMAN_VERSION)/lib/$(MACH64)/libgomp.so.1 \
     target=libgomp.so.1.0.0
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/$(MACH64)/libgomp.so.1.0.0
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/$(MACH64)/libgomp.spec
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/$(MACH64)/libiberty.a
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/$(MACH64)/libobjc.a
-link path=opt/gcc/$(COMPONENT_VERSION)/lib/$(MACH64)/libobjc.so \
+file path=opt/gcc/$(HUMAN_VERSION)/lib/$(MACH64)/libgomp.so.1.0.0
+file path=opt/gcc/$(HUMAN_VERSION)/lib/$(MACH64)/libgomp.spec
+file path=opt/gcc/$(HUMAN_VERSION)/lib/$(MACH64)/libiberty.a
+file path=opt/gcc/$(HUMAN_VERSION)/lib/$(MACH64)/libobjc.a
+link path=opt/gcc/$(HUMAN_VERSION)/lib/$(MACH64)/libobjc.so \
     target=libobjc.so.2.0.0
-link path=opt/gcc/$(COMPONENT_VERSION)/lib/$(MACH64)/libobjc.so.2 \
+link path=opt/gcc/$(HUMAN_VERSION)/lib/$(MACH64)/libobjc.so.2 \
     target=libobjc.so.2.0.0
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/$(MACH64)/libobjc.so.2.0.0
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/$(MACH64)/libssp.a
-link path=opt/gcc/$(COMPONENT_VERSION)/lib/$(MACH64)/libssp.so \
+file path=opt/gcc/$(HUMAN_VERSION)/lib/$(MACH64)/libobjc.so.2.0.0
+file path=opt/gcc/$(HUMAN_VERSION)/lib/$(MACH64)/libssp.a
+link path=opt/gcc/$(HUMAN_VERSION)/lib/$(MACH64)/libssp.so \
     target=libssp.so.0.0.0
-link path=opt/gcc/$(COMPONENT_VERSION)/lib/$(MACH64)/libssp.so.0 \
+link path=opt/gcc/$(HUMAN_VERSION)/lib/$(MACH64)/libssp.so.0 \
     target=libssp.so.0.0.0
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/$(MACH64)/libssp.so.0.0.0
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/$(MACH64)/libssp_nonshared.a
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/$(MACH64)/libstdc++.a
-link path=opt/gcc/$(COMPONENT_VERSION)/lib/$(MACH64)/libstdc++.so \
+file path=opt/gcc/$(HUMAN_VERSION)/lib/$(MACH64)/libssp.so.0.0.0
+file path=opt/gcc/$(HUMAN_VERSION)/lib/$(MACH64)/libssp_nonshared.a
+file path=opt/gcc/$(HUMAN_VERSION)/lib/$(MACH64)/libstdc++.a
+link path=opt/gcc/$(HUMAN_VERSION)/lib/$(MACH64)/libstdc++.so \
     target=libstdc++.so.6.0.13
-link path=opt/gcc/$(COMPONENT_VERSION)/lib/$(MACH64)/libstdc++.so.6 \
+link path=opt/gcc/$(HUMAN_VERSION)/lib/$(MACH64)/libstdc++.so.6 \
     target=libstdc++.so.6.0.13
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/$(MACH64)/libstdc++.so.6.0.13
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/$(MACH64)/libsupc++.a
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/$!(MACH64)/crtbegin.o
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/$!(MACH64)/crtend.o
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/$!(MACH64)/gmon.o
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/$!(MACH64)/libgcc.a
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/$!(MACH64)/libgcc_eh.a
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/$!(MACH64)/libgcov.a
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/crtbegin.o
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/crtend.o
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/gmon.o
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include-fixed/README
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include-fixed/SDL/SDL_stdinc.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include-fixed/X11/Xtrans/Xtransint.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include-fixed/X11/Xw32defs.h
-link \
-    path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include-fixed/Xm \
-    target=root/usr/dt/include/Xm
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include-fixed/arpa/nameser_compat.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include-fixed/boost/predef/os/solaris.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include-fixed/boost/predef/os/unix.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include-fixed/curses.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include-fixed/dat/dat_platform_specific.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include-fixed/firefox/dbm/ncompat.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include-fixed/firefox/harfbuzz/hb-common.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include-fixed/firefox/nss/secport.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include-fixed/firefox/pixman.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include-fixed/firefox/qcmstypes.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include-fixed/gc/gc_config_macros.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include-fixed/harfbuzz/hb-common.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include-fixed/libical/icaltz-util.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include-fixed/limits.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include-fixed/math.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include-fixed/mps/ncompat.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include-fixed/mps/secport.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include-fixed/openafs--libexecdir=/usr/lib--localstatedir=/var--sysconfdir=/etc--enable-namei-fileserver--enable-bitmap-later--with-krb5/afs/remote.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include-fixed/openafs--libexecdir=/usr/lib--localstatedir=/var--sysconfdir=/etc--enable-namei-fileserver--enable-bitmap-later--with-krb5/des_conf.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include-fixed/openafs/afs/remote.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include-fixed/openafs/des_conf.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include-fixed/openssl/opensslconf.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include-fixed/pixman-1/pixman.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include-fixed/root/usr/dt/include/Xm/XmosP.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include-fixed/root/usr/dt/include/Xm/Xmos_r.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include-fixed/slang.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include-fixed/string.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include-fixed/svn/svn_types.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include-fixed/sys/feature_tests.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include-fixed/sys/varargs.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include-fixed/syslimits.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include-fixed/tidy/platform.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include-fixed/wchar.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include-fixed/wx-2.8/wx/platform.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include-fixed/xorg/compiler.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include-fixed/xorg/edid.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include-fixed/xorg/xf86Privstr.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include-fixed/xorg/xf86_OSlib.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include/ammintrin.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include/avxintrin.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include/bmmintrin.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include/cpuid.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include/cross-stdarg.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include/emmintrin.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include/float.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include/immintrin.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include/iso646.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include/mm3dnow.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include/mm_malloc.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include/mmintrin-common.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include/mmintrin.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include/nmmintrin.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include/objc/NXConstStr.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include/objc/Object.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include/objc/Protocol.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include/objc/encoding.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include/objc/hash.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include/objc/objc-api.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include/objc/objc-decls.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include/objc/objc-list.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include/objc/objc.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include/objc/sarray.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include/objc/thr.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include/objc/typedstream.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include/omp.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include/pmmintrin.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include/smmintrin.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include/ssp/ssp.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include/ssp/stdio.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include/ssp/string.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include/ssp/unistd.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include/stdarg.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include/stdbool.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include/stddef.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include/stdfix.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include/tgmath.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include/tmmintrin.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include/unwind.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include/varargs.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include/wmmintrin.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include/x86intrin.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/include/xmmintrin.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/install-tools/fixinc_list
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/install-tools/gsyslimits.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/install-tools/include/README
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/install-tools/include/limits.h
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/install-tools/macro_list
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/install-tools/mkheaders.conf
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/libgcc.a
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/libgcc_eh.a
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/libgcov.a
-link path=opt/gcc/$(COMPONENT_VERSION)/lib/libgcc_s.so target=libgcc_s.so.1
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/libgcc_s.so.1
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/libgomp.a
-link path=opt/gcc/$(COMPONENT_VERSION)/lib/libgomp.so target=libgomp.so.1.0.0
-link path=opt/gcc/$(COMPONENT_VERSION)/lib/libgomp.so.1 target=libgomp.so.1.0.0
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/libgomp.so.1.0.0
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/libgomp.spec
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/libiberty.a
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/libobjc.a
-link path=opt/gcc/$(COMPONENT_VERSION)/lib/libobjc.so target=libobjc.so.2.0.0
-link path=opt/gcc/$(COMPONENT_VERSION)/lib/libobjc.so.2 target=libobjc.so.2.0.0
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/libobjc.so.2.0.0
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/libssp.a
-link path=opt/gcc/$(COMPONENT_VERSION)/lib/libssp.so target=libssp.so.0.0.0
-link path=opt/gcc/$(COMPONENT_VERSION)/lib/libssp.so.0 target=libssp.so.0.0.0
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/libssp.so.0.0.0
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/libssp_nonshared.a
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/libstdc++.a
-link path=opt/gcc/$(COMPONENT_VERSION)/lib/libstdc++.so \
-    target=libstdc++.so.6.0.13
-link path=opt/gcc/$(COMPONENT_VERSION)/lib/libstdc++.so.6 \
-    target=libstdc++.so.6.0.13
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/libstdc++.so.6.0.13
-file path=opt/gcc/$(COMPONENT_VERSION)/lib/libsupc++.a
-file path=opt/gcc/$(COMPONENT_VERSION)/libexec/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/cc1
-file path=opt/gcc/$(COMPONENT_VERSION)/libexec/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/cc1obj
-file path=opt/gcc/$(COMPONENT_VERSION)/libexec/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/cc1plus
-file path=opt/gcc/$(COMPONENT_VERSION)/libexec/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/collect2
-file path=opt/gcc/$(COMPONENT_VERSION)/libexec/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/install-tools/fixinc.sh
-file path=opt/gcc/$(COMPONENT_VERSION)/libexec/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/install-tools/fixincl
-file path=opt/gcc/$(COMPONENT_VERSION)/libexec/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/install-tools/mkheaders
-file path=opt/gcc/$(COMPONENT_VERSION)/libexec/gcc/$(MACH)-$(PLAT)-solaris$(SOLARIS_RELEASE)/$(COMPONENT_VERSION)/install-tools/mkinstalldirs
-file path=opt/gcc/$(COMPONENT_VERSION)/man/man1/cpp.1
-file path=opt/gcc/$(COMPONENT_VERSION)/man/man1/g++.1
-file path=opt/gcc/$(COMPONENT_VERSION)/man/man1/gcc.1
-file path=opt/gcc/$(COMPONENT_VERSION)/man/man1/gcov.1
-file path=opt/gcc/$(COMPONENT_VERSION)/man/man7/fsf-funding.7
-file path=opt/gcc/$(COMPONENT_VERSION)/man/man7/gfdl.7
-file path=opt/gcc/$(COMPONENT_VERSION)/man/man7/gpl.7
-file path=opt/gcc/$(COMPONENT_VERSION)/share/locale/be/LC_MESSAGES/cpplib.mo
-file path=opt/gcc/$(COMPONENT_VERSION)/share/locale/be/LC_MESSAGES/gcc.mo
-file path=opt/gcc/$(COMPONENT_VERSION)/share/locale/ca/LC_MESSAGES/cpplib.mo
-file path=opt/gcc/$(COMPONENT_VERSION)/share/locale/da/LC_MESSAGES/cpplib.mo
-file path=opt/gcc/$(COMPONENT_VERSION)/share/locale/da/LC_MESSAGES/gcc.mo
-file path=opt/gcc/$(COMPONENT_VERSION)/share/locale/de/LC_MESSAGES/cpplib.mo
-file path=opt/gcc/$(COMPONENT_VERSION)/share/locale/de/LC_MESSAGES/gcc.mo
-file path=opt/gcc/$(COMPONENT_VERSION)/share/locale/el/LC_MESSAGES/cpplib.mo
-file path=opt/gcc/$(COMPONENT_VERSION)/share/locale/el/LC_MESSAGES/gcc.mo
-file path=opt/gcc/$(COMPONENT_VERSION)/share/locale/es/LC_MESSAGES/cpplib.mo
-file path=opt/gcc/$(COMPONENT_VERSION)/share/locale/es/LC_MESSAGES/gcc.mo
-file path=opt/gcc/$(COMPONENT_VERSION)/share/locale/fi/LC_MESSAGES/gcc.mo
-file path=opt/gcc/$(COMPONENT_VERSION)/share/locale/fr/LC_MESSAGES/cpplib.mo
-file path=opt/gcc/$(COMPONENT_VERSION)/share/locale/fr/LC_MESSAGES/gcc.mo
-file path=opt/gcc/$(COMPONENT_VERSION)/share/locale/id/LC_MESSAGES/cpplib.mo
-file path=opt/gcc/$(COMPONENT_VERSION)/share/locale/id/LC_MESSAGES/gcc.mo
-file path=opt/gcc/$(COMPONENT_VERSION)/share/locale/ja/LC_MESSAGES/cpplib.mo
-file path=opt/gcc/$(COMPONENT_VERSION)/share/locale/ja/LC_MESSAGES/gcc.mo
-file path=opt/gcc/$(COMPONENT_VERSION)/share/locale/nl/LC_MESSAGES/cpplib.mo
-file path=opt/gcc/$(COMPONENT_VERSION)/share/locale/nl/LC_MESSAGES/gcc.mo
-file path=opt/gcc/$(COMPONENT_VERSION)/share/locale/ru/LC_MESSAGES/gcc.mo
-file path=opt/gcc/$(COMPONENT_VERSION)/share/locale/sr/LC_MESSAGES/gcc.mo
-file path=opt/gcc/$(COMPONENT_VERSION)/share/locale/sv/LC_MESSAGES/cpplib.mo
-file path=opt/gcc/$(COMPONENT_VERSION)/share/locale/sv/LC_MESSAGES/gcc.mo
-file path=opt/gcc/$(COMPONENT_VERSION)/share/locale/tr/LC_MESSAGES/cpplib.mo
-file path=opt/gcc/$(COMPONENT_VERSION)/share/locale/tr/LC_MESSAGES/gcc.mo
-file path=opt/gcc/$(COMPONENT_VERSION)/share/locale/uk/LC_MESSAGES/cpplib.mo
-file path=opt/gcc/$(COMPONENT_VERSION)/share/locale/vi/LC_MESSAGES/cpplib.mo
-file path=opt/gcc/$(COMPONENT_VERSION)/share/locale/zh_CN/LC_MESSAGES/cpplib.mo
-file path=opt/gcc/$(COMPONENT_VERSION)/share/locale/zh_CN/LC_MESSAGES/gcc.mo
-file path=opt/gcc/$(COMPONENT_VERSION)/share/locale/zh_TW/LC_MESSAGES/cpplib.mo
-file path=opt/gcc/$(COMPONENT_VERSION)/share/locale/zh_TW/LC_MESSAGES/gcc.mo
+file path=opt/gcc/$(HUMAN_VERSION)/lib/$(MACH64)/libstdc++.so.6.0.13
+file path=opt/gcc/$(HUMAN_VERSION)/lib/$(MACH64)/libsupc++.a
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/$(MACH64)/crtbegin.o
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/$(MACH64)/crtend.o
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/$(MACH64)/gmon.o
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/$(MACH64)/libgcc.a
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/$(MACH64)/libgcc_eh.a
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/$(MACH64)/libgcov.a
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/crtbegin.o
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/crtend.o
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/gmon.o
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/ammintrin.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/avxintrin.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/bmmintrin.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/cpuid.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/cross-stdarg.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/emmintrin.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/float.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/immintrin.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/iso646.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/mm3dnow.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/mm_malloc.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/mmintrin-common.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/mmintrin.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/nmmintrin.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/objc/NXConstStr.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/objc/Object.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/objc/Protocol.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/objc/encoding.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/objc/hash.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/objc/objc-api.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/objc/objc-decls.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/objc/objc-list.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/objc/objc.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/objc/sarray.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/objc/thr.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/objc/typedstream.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/omp.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/pmmintrin.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/smmintrin.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/ssp/ssp.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/ssp/stdio.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/ssp/string.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/ssp/unistd.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/stdarg.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/stdbool.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/stddef.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/stdfix.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/tgmath.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/tmmintrin.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/unwind.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/varargs.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/wmmintrin.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/x86intrin.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/include/xmmintrin.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/install-tools/fixinc_list
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/install-tools/gsyslimits.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/install-tools/include/README
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/install-tools/include/limits.h
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/install-tools/macro_list
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/install-tools/mkheaders.conf
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/libgcc.a
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/libgcc_eh.a
+file path=opt/gcc/$(HUMAN_VERSION)/lib/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/libgcov.a
+link path=opt/gcc/$(HUMAN_VERSION)/lib/libgcc_s.so target=libgcc_s.so.1
+file path=opt/gcc/$(HUMAN_VERSION)/lib/libgcc_s.so.1
+file path=opt/gcc/$(HUMAN_VERSION)/lib/libgomp.a
+link path=opt/gcc/$(HUMAN_VERSION)/lib/libgomp.so target=libgomp.so.1.0.0
+link path=opt/gcc/$(HUMAN_VERSION)/lib/libgomp.so.1 target=libgomp.so.1.0.0
+file path=opt/gcc/$(HUMAN_VERSION)/lib/libgomp.so.1.0.0
+file path=opt/gcc/$(HUMAN_VERSION)/lib/libgomp.spec
+file path=opt/gcc/$(HUMAN_VERSION)/lib/libiberty.a
+file path=opt/gcc/$(HUMAN_VERSION)/lib/libobjc.a
+link path=opt/gcc/$(HUMAN_VERSION)/lib/libobjc.so target=libobjc.so.2.0.0
+link path=opt/gcc/$(HUMAN_VERSION)/lib/libobjc.so.2 target=libobjc.so.2.0.0
+file path=opt/gcc/$(HUMAN_VERSION)/lib/libobjc.so.2.0.0
+file path=opt/gcc/$(HUMAN_VERSION)/lib/libssp.a
+link path=opt/gcc/$(HUMAN_VERSION)/lib/libssp.so target=libssp.so.0.0.0
+link path=opt/gcc/$(HUMAN_VERSION)/lib/libssp.so.0 target=libssp.so.0.0.0
+file path=opt/gcc/$(HUMAN_VERSION)/lib/libssp.so.0.0.0
+file path=opt/gcc/$(HUMAN_VERSION)/lib/libssp_nonshared.a
+file path=opt/gcc/$(HUMAN_VERSION)/lib/libstdc++.a
+link path=opt/gcc/$(HUMAN_VERSION)/lib/libstdc++.so target=libstdc++.so.6.0.13
+link path=opt/gcc/$(HUMAN_VERSION)/lib/libstdc++.so.6 target=libstdc++.so.6.0.13
+file path=opt/gcc/$(HUMAN_VERSION)/lib/libstdc++.so.6.0.13
+file path=opt/gcc/$(HUMAN_VERSION)/lib/libsupc++.a
+file path=opt/gcc/$(HUMAN_VERSION)/libexec/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/cc1
+file path=opt/gcc/$(HUMAN_VERSION)/libexec/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/cc1obj
+file path=opt/gcc/$(HUMAN_VERSION)/libexec/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/cc1plus
+file path=opt/gcc/$(HUMAN_VERSION)/libexec/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/collect2
+file path=opt/gcc/$(HUMAN_VERSION)/libexec/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/install-tools/fixinc.sh
+file path=opt/gcc/$(HUMAN_VERSION)/libexec/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/install-tools/fixincl
+file path=opt/gcc/$(HUMAN_VERSION)/libexec/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/install-tools/mkheaders
+file path=opt/gcc/$(HUMAN_VERSION)/libexec/gcc/$(GNU_TRIPLET)/$(HUMAN_VERSION)/install-tools/mkinstalldirs
+file path=opt/gcc/$(HUMAN_VERSION)/man/man1/cpp.1
+file path=opt/gcc/$(HUMAN_VERSION)/man/man1/g++.1
+file path=opt/gcc/$(HUMAN_VERSION)/man/man1/gcc.1
+file path=opt/gcc/$(HUMAN_VERSION)/man/man1/gcov.1
+file path=opt/gcc/$(HUMAN_VERSION)/man/man7/fsf-funding.7
+file path=opt/gcc/$(HUMAN_VERSION)/man/man7/gfdl.7
+file path=opt/gcc/$(HUMAN_VERSION)/man/man7/gpl.7
+file path=opt/gcc/$(HUMAN_VERSION)/share/locale/be/LC_MESSAGES/cpplib.mo
+file path=opt/gcc/$(HUMAN_VERSION)/share/locale/be/LC_MESSAGES/gcc.mo
+file path=opt/gcc/$(HUMAN_VERSION)/share/locale/ca/LC_MESSAGES/cpplib.mo
+file path=opt/gcc/$(HUMAN_VERSION)/share/locale/da/LC_MESSAGES/cpplib.mo
+file path=opt/gcc/$(HUMAN_VERSION)/share/locale/da/LC_MESSAGES/gcc.mo
+file path=opt/gcc/$(HUMAN_VERSION)/share/locale/de/LC_MESSAGES/cpplib.mo
+file path=opt/gcc/$(HUMAN_VERSION)/share/locale/de/LC_MESSAGES/gcc.mo
+file path=opt/gcc/$(HUMAN_VERSION)/share/locale/el/LC_MESSAGES/cpplib.mo
+file path=opt/gcc/$(HUMAN_VERSION)/share/locale/el/LC_MESSAGES/gcc.mo
+file path=opt/gcc/$(HUMAN_VERSION)/share/locale/es/LC_MESSAGES/cpplib.mo
+file path=opt/gcc/$(HUMAN_VERSION)/share/locale/es/LC_MESSAGES/gcc.mo
+file path=opt/gcc/$(HUMAN_VERSION)/share/locale/fi/LC_MESSAGES/gcc.mo
+file path=opt/gcc/$(HUMAN_VERSION)/share/locale/fr/LC_MESSAGES/cpplib.mo
+file path=opt/gcc/$(HUMAN_VERSION)/share/locale/fr/LC_MESSAGES/gcc.mo
+file path=opt/gcc/$(HUMAN_VERSION)/share/locale/id/LC_MESSAGES/cpplib.mo
+file path=opt/gcc/$(HUMAN_VERSION)/share/locale/id/LC_MESSAGES/gcc.mo
+file path=opt/gcc/$(HUMAN_VERSION)/share/locale/ja/LC_MESSAGES/cpplib.mo
+file path=opt/gcc/$(HUMAN_VERSION)/share/locale/ja/LC_MESSAGES/gcc.mo
+file path=opt/gcc/$(HUMAN_VERSION)/share/locale/nl/LC_MESSAGES/cpplib.mo
+file path=opt/gcc/$(HUMAN_VERSION)/share/locale/nl/LC_MESSAGES/gcc.mo
+file path=opt/gcc/$(HUMAN_VERSION)/share/locale/ru/LC_MESSAGES/gcc.mo
+file path=opt/gcc/$(HUMAN_VERSION)/share/locale/sr/LC_MESSAGES/gcc.mo
+file path=opt/gcc/$(HUMAN_VERSION)/share/locale/sv/LC_MESSAGES/cpplib.mo
+file path=opt/gcc/$(HUMAN_VERSION)/share/locale/sv/LC_MESSAGES/gcc.mo
+file path=opt/gcc/$(HUMAN_VERSION)/share/locale/tr/LC_MESSAGES/cpplib.mo
+file path=opt/gcc/$(HUMAN_VERSION)/share/locale/tr/LC_MESSAGES/gcc.mo
+file path=opt/gcc/$(HUMAN_VERSION)/share/locale/uk/LC_MESSAGES/cpplib.mo
+file path=opt/gcc/$(HUMAN_VERSION)/share/locale/vi/LC_MESSAGES/cpplib.mo
+file path=opt/gcc/$(HUMAN_VERSION)/share/locale/zh_CN/LC_MESSAGES/cpplib.mo
+file path=opt/gcc/$(HUMAN_VERSION)/share/locale/zh_CN/LC_MESSAGES/gcc.mo
+file path=opt/gcc/$(HUMAN_VERSION)/share/locale/zh_TW/LC_MESSAGES/cpplib.mo
+file path=opt/gcc/$(HUMAN_VERSION)/share/locale/zh_TW/LC_MESSAGES/gcc.mo
diff --git a/components/openindiana/illumos-gcc/patches/01-texinfo.patch b/components/openindiana/illumos-gcc/patches/01-texinfo.patch
index 6580c3c..59a492a 100644
--- a/components/openindiana/illumos-gcc/patches/01-texinfo.patch
+++ b/components/openindiana/illumos-gcc/patches/01-texinfo.patch
@@ -1,5 +1,5 @@
---- gcc-4.4.7-orig/gcc/doc/c-tree.texi	2009-02-20 16:20:38.000000000 +0100
-+++ gcc-4.4.7/gcc/doc/c-tree.texi	2015-11-17 09:43:59.054448894 +0100
+--- illumos-gcc-0f5ed4c/gcc/doc/c-tree.texi.orig
++++ illumos-gcc-0f5ed4c/gcc/doc/c-tree.texi
 @@ -2338,13 +2338,13 @@
  not matter.  The type of the operands and that of the result are
  always of @code{BOOLEAN_TYPE} or @code{INTEGER_TYPE}.
@@ -16,8 +16,8 @@
  @itemx MINUS_EXPR
  @itemx MULT_EXPR
  These nodes represent various binary arithmetic operations.
---- gcc-4.4.7-orig/gcc/doc/cppopts.texi	2008-06-15 11:42:13.000000000 +0200
-+++ gcc-4.4.7/gcc/doc/cppopts.texi	2015-11-17 09:40:09.377639641 +0100
+--- illumos-gcc-0f5ed4c/gcc/doc/cppopts.texi.orig
++++ illumos-gcc-0f5ed4c/gcc/doc/cppopts.texi
 @@ -758,7 +758,7 @@
  Enable special code to work around file systems which only permit very
  short file names, such as MS-DOS@.
@@ -27,8 +27,8 @@
  @itemx --target-help
  @opindex help
  @opindex target-help
---- illumos-gcc-0f5ed4c/gcc/doc/invoke.texi.~1~	2016-12-02 01:55:44.000000000 +0300
-+++ illumos-gcc-0f5ed4c/gcc/doc/invoke.texi	2016-12-04 13:42:00.003055986 +0300
+--- illumos-gcc-0f5ed4c/gcc/doc/invoke.texi.orig
++++ illumos-gcc-0f5ed4c/gcc/doc/invoke.texi
 @@ -4646,11 +4646,11 @@
  @option{-fdump-rtl-ce3} enable dumping after the three
  if conversion passes. 
@@ -84,3 +84,14 @@
  @opindex fdump-rtl-pro_and_epilogue
  Dump after generating the function pro and epilogues.
  
+--- illumos-gcc-0f5ed4c/gcc/doc/sourcebuild.texi.orig
++++ illumos-gcc-0f5ed4c/gcc/doc/sourcebuild.texi
+@@ -573,7 +573,7 @@
+ @code{lang_checks}.
+ 
+ @table @code
+-@itemx all.cross
++@item all.cross
+ @itemx start.encap
+ @itemx rest.encap
+ FIXME: exactly what goes in each of these targets?
diff --git a/components/openindiana/illumos-gcc/patches/02-install.texi.patch b/components/openindiana/illumos-gcc/patches/02-install.texi.patch
index 3eefff7..fb4a6d2 100644
--- a/components/openindiana/illumos-gcc/patches/02-install.texi.patch
+++ b/components/openindiana/illumos-gcc/patches/02-install.texi.patch
@@ -1,5 +1,5 @@
---- illumos-gcc-0f5ed4c/gcc/doc/install.texi.1	2016-12-04 14:04:50.730758034 +0300
-+++ illumos-gcc-0f5ed4c/gcc/doc/install.texi	2016-12-04 14:04:59.989400991 +0300
+--- illumos-gcc-0f5ed4c/gcc/doc/install.texi.orig
++++ illumos-gcc-0f5ed4c/gcc/doc/install.texi
 @@ -2746,7 +2746,8 @@
  <!-- -------- host/target specific issues start here ---------------- -->
  <hr />
diff --git a/components/openindiana/illumos-gcc/patches/03-mpfr-headers.patch b/components/openindiana/illumos-gcc/patches/03-mpfr-headers.patch
index 86041ee..7e1111a 100644
--- a/components/openindiana/illumos-gcc/patches/03-mpfr-headers.patch
+++ b/components/openindiana/illumos-gcc/patches/03-mpfr-headers.patch
@@ -1,5 +1,5 @@
---- illumos-gcc-0f5ed4c/configure.orig	2018-02-02 14:42:13.482480295 +0000
-+++ illumos-gcc-0f5ed4c/configure	2018-02-02 14:42:38.481413632 +0000
+--- illumos-gcc-0f5ed4c/configure.orig
++++ illumos-gcc-0f5ed4c/configure
 @@ -4543,7 +4543,7 @@
  fi
  if test "x$with_mpfr$with_mpfr_include$with_mpfr_lib" = x && test -d ${srcdir}/mpfr; then
diff --git a/components/openindiana/illumos-gcc/patches/04-static.patch b/components/openindiana/illumos-gcc/patches/04-static.patch
index 0b5a14f..c131527 100644
--- a/components/openindiana/illumos-gcc/patches/04-static.patch
+++ b/components/openindiana/illumos-gcc/patches/04-static.patch
@@ -1,5 +1,5 @@
---- illumos-gcc-0f5ed4c/configure.orig	2018-02-02 15:07:57.063210914 +0000
-+++ illumos-gcc-0f5ed4c/configure	2018-02-02 15:15:02.003165503 +0000
+--- illumos-gcc-0f5ed4c/configure.orig
++++ illumos-gcc-0f5ed4c/configure
 @@ -4542,7 +4542,7 @@
    gmplibs="-L$with_mpfr_lib $gmplibs"
  fi
diff --git a/components/openindiana/illumos-gcc/patches/05-texinfo-no-warn.patch b/components/openindiana/illumos-gcc/patches/05-texinfo-no-warn.patch
index 68f1511..93c3d83 100644
--- a/components/openindiana/illumos-gcc/patches/05-texinfo-no-warn.patch
+++ b/components/openindiana/illumos-gcc/patches/05-texinfo-no-warn.patch
@@ -1,8 +1,8 @@
 Style fixes revealed by texino 6.5.
 
---- illumos-gcc-0f5ed4c/gcc/doc/gcc.texi	2016-12-01 23:55:44.000000000 +0000
-+++ illumos-gcc-0f5ed4c/gcc/doc/gcc.texi.new	2019-02-04 19:57:23.117852612 +0000
-@@ -84,11 +84,11 @@ This file documents the use of the GNU c
+--- illumos-gcc-0f5ed4c/gcc/doc/gcc.texi.orig
++++ illumos-gcc-0f5ed4c/gcc/doc/gcc.texi
+@@ -84,11 +84,11 @@
  Published by:
  @multitable @columnfractions 0.5 0.5
  @item GNU Press
diff --git a/components/openindiana/illumos-gcc/patches/06-64bit.patch b/components/openindiana/illumos-gcc/patches/06-64bit.patch
index 0ccecd2..aeeff02 100644
--- a/components/openindiana/illumos-gcc/patches/06-64bit.patch
+++ b/components/openindiana/illumos-gcc/patches/06-64bit.patch
@@ -2,10 +2,9 @@
 Now that GNU binutils targets 64-bit by default, gcc needs to explicitly
 pass --32 to the assembler.
 
-diff -wpruN '--exclude=*.orig' a~/gcc/config/i386/sol2-10.h a/gcc/config/i386/sol2-10.h
---- a~/gcc/config/i386/sol2-10.h	1970-01-01 00:00:00
-+++ a/gcc/config/i386/sol2-10.h	1970-01-01 00:00:00
-@@ -26,7 +26,7 @@ along with GCC; see the file COPYING3.
+--- illumos-gcc-0f5ed4c/gcc/config/i386/sol2-10.h.orig
++++ illumos-gcc-0f5ed4c/gcc/config/i386/sol2-10.h
+@@ -26,7 +26,7 @@
  #undef ASM_SPEC
  #ifdef USE_GAS
  #define ASM_SPEC "%{v:-V} %{Qy:} %{!Qn:-Qy} %{n} %{T} %{Ym,*} %{Yd,*} " \
@@ -14,10 +13,9 @@
  #else
  #define ASM_SPEC "%{v:-V} %{Qy:} %{!Qn:-Qy} %{n} %{T} %{Ym,*} %{Yd,*} " \
  		 "%{Wa,*:%*} %{m32:-xarch=generic} %{m64:-xarch=generic64} " \
-diff -wpruN '--exclude=*.orig' a~/gcc/configure a/gcc/configure
---- a~/gcc/configure	1970-01-01 00:00:00
-+++ a/gcc/configure	1970-01-01 00:00:00
-@@ -22108,7 +22108,7 @@ foo:	.long	25
+--- illumos-gcc-0f5ed4c/gcc/configure.orig
++++ illumos-gcc-0f5ed4c/gcc/configure
+@@ -22108,7 +22108,7 @@
  	leal	foo@NTPOFF(%ecx), %eax'
  	tls_first_major=2
  	tls_first_minor=14
@@ -26,10 +24,9 @@
  	;;
    x86_64-*-*)
      conftest_s='
-diff -wpruN '--exclude=*.orig' a~/gcc/configure.ac a/gcc/configure.ac
---- a~/gcc/configure.ac	1970-01-01 00:00:00
-+++ a/gcc/configure.ac	1970-01-01 00:00:00
-@@ -2551,7 +2551,7 @@ foo:	.long	25
+--- illumos-gcc-0f5ed4c/gcc/configure.ac.orig
++++ illumos-gcc-0f5ed4c/gcc/configure.ac
+@@ -2551,7 +2551,7 @@
  	leal	foo@NTPOFF(%ecx), %eax'
  	tls_first_major=2
  	tls_first_minor=14
diff --git a/components/openindiana/illumos-gcc/pkg5 b/components/openindiana/illumos-gcc/pkg5
index 749ea99..415b572 100644
--- a/components/openindiana/illumos-gcc/pkg5
+++ b/components/openindiana/illumos-gcc/pkg5
@@ -1,7 +1,7 @@
 {
     "dependencies": [
-        "SUNWcs",
         "developer/illumos-gcc",
+        "shell/ksh93",
         "system/library",
         "system/library/math"
     ],

--
Gitblit v1.9.3