summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--devel/Makefile1
-rw-r--r--devel/gcc-msp430-ti-toolchain/Makefile88
-rw-r--r--devel/gcc-msp430-ti-toolchain/distinfo6
-rw-r--r--devel/gcc-msp430-ti-toolchain/files/patch-itcl_itcl_Makefile.in11
-rw-r--r--devel/gcc-msp430-ti-toolchain/files/patch-itcl_itk_Makefile.in11
-rw-r--r--devel/gcc-msp430-ti-toolchain/files/patch-itcl_iwidgets_Makefile.in20
-rw-r--r--devel/gcc-msp430-ti-toolchain/files/patch-libgloss_Makefile.in10
-rw-r--r--devel/gcc-msp430-ti-toolchain/files/patch-libgloss_msp430_Makefile.in16
-rw-r--r--devel/gcc-msp430-ti-toolchain/files/patch-tcl_unix_Makefile.in11
-rw-r--r--devel/gcc-msp430-ti-toolchain/files/patch-tk_unix_Makefile.in11
-rw-r--r--devel/gcc-msp430-ti-toolchain/files/watchdog.txt33
-rw-r--r--devel/gcc-msp430-ti-toolchain/pkg-descr6
-rw-r--r--devel/gcc-msp430-ti-toolchain/pkg-plist3022
-rw-r--r--devel/msp430-binutils/Makefile3
-rw-r--r--devel/msp430-gcc/Makefile3
-rw-r--r--devel/msp430-gdb/Makefile3
-rw-r--r--devel/msp430-libc/Makefile3
-rw-r--r--devel/msp430mcu/Makefile3
18 files changed, 3261 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile
index 86814c64471f..ffaaddb4056b 100644
--- a/devel/Makefile
+++ b/devel/Makefile
@@ -563,6 +563,7 @@
SUBDIR += gazpacho
SUBDIR += gb
SUBDIR += gcc-arm-embedded
+ SUBDIR += gcc-msp430-ti-toolchain
SUBDIR += gccmakedep
SUBDIR += gconf2
SUBDIR += gconf2-reference
diff --git a/devel/gcc-msp430-ti-toolchain/Makefile b/devel/gcc-msp430-ti-toolchain/Makefile
new file mode 100644
index 000000000000..a8e25e301e76
--- /dev/null
+++ b/devel/gcc-msp430-ti-toolchain/Makefile
@@ -0,0 +1,88 @@
+# $FreeBSD$
+
+PORTNAME= gcc-msp430-ti-toolchain
+PORTVERSION= ${GCC_VERSION}.${TI_VERSION}.${RELEASE_DATE}
+CATEGORIES= devel
+MASTER_SITES= http://software-dl.ti.com/msp430/msp430_public_sw/mcu/msp430/MSPGCC/${TI_VERSION:S/./_/g}/exports/ \
+ http://www.ti.com/lit/ml/slau591a/:docs
+DISTFILES= msp430-gcc-source.tar.bz2 \
+ msp430-gcc-support-files.zip \
+ slau591a.pdf:docs
+DIST_SUBDIR= mspgcc${TI_VERSION}
+EXTRACT_ONLY= msp430-gcc-source.tar.bz2 \
+ msp430-gcc-support-files.zip
+
+MAINTAINER= lev@FreeBSD.org
+COMMENT= Complete gcc-based toolcahin for TI MSP430 uC
+
+LICENSE= GPLv2 LGPL20 LGPL21 GPLv3 LGPL3
+LICENSE_COMB= multi
+
+BUILD_DEPENDS= expect:${PORTSDIR}/lang/expect
+
+USES= bison compiler cpe gmake iconv libtool makeinfo tar:bzip2
+GNU_CONFIGURE= yes
+
+CONFIGURE_ARGS= --target=${TARGET} \
+ --enable-languages=c,c++ \
+ --disable-nls
+
+GNU_CONFIGURE_PREFIX= ${PREFIX}/${SUBPREFIX}
+
+USE_CSTD= gnu89
+
+MAKE_JOBS_UNSAFE= yes
+
+GCC_VERSION= 4.9.1
+TI_VERSION= 3.05.00.00
+RELEASE_DATE= 20150915
+TARGET= msp430-elf
+
+CPE_PRODUCT= gcc
+CPE_VENDOR= gnu
+CPE_VERSION= ${GCC_VERSION}
+
+WRKSRC= ${WRKDIR}/sources/tools
+CONFIGURE_WRKSRC=${WRKDIR}/build
+CONFIGURE_SCRIPT=../sources/tools/configure
+BUILD_WRKSRC= ${WRKDIR}/build
+INSTALL_WRKSRC= ${WRKDIR}/build
+
+SUBPREFIX= ${PORTNAME}-${TI_VERSION}
+
+MANPREFIX= ${GNU_CONFIGURE_PREFIX}
+DOCSDIR= ${GNU_CONFIGURE_PREFIX}/docs
+PLIST_SUB+= TARGET=${TARGET} GCC_VERSION=${GCC_VERSION} \
+ TI_VERSION=${TI_VERSION}
+
+UNNEEDED_HOST_FILES= lib/lib${TARGET}-sim.a lib/libtcl8.4.a \
+ lib/libtclstub8.4.a lib/libtk8.4.a \
+ lib/libtkstub8.4.a lib/tclConfig.sh \
+ lib/tkConfig.sh lib/itclConfig.sh \
+ lib/itcl3.3/libitclstub3.3.a
+
+UNNEEDED_HOST_DIRS= include info man share
+
+pre-extract:
+ @${MKDIR} ${BUILD_WRKSRC}
+
+post-stage:
+ @${ECHO_MSG} "Remove unneeded host files..."
+ @for f in ${UNNEEDED_HOST_FILES} ; do \
+ ${RM} "${STAGEDIR}${GNU_CONFIGURE_PREFIX}/$$f" ; \
+ done
+ @for f in ${UNNEEDED_HOST_DIRS} ; do \
+ ${RM} -rf "${STAGEDIR}${GNU_CONFIGURE_PREFIX}/$$f" ; \
+ done
+ @${ECHO_MSG} "Install devices' headers and linker scripts..."
+ @${MKDIR} ${STAGEDIR}${GNU_CONFIGURE_PREFIX}/include
+ cd ${WRKDIR}/msp430-gcc-support-files && \
+ ${TAR} cf - . | ${TAR} xf - -C ${STAGEDIR}${GNU_CONFIGURE_PREFIX}/include
+ @${ECHO_MSG} "Install minimal documentation..."
+ @${MKDIR} ${STAGEDIR}${DOCSDIR}
+ ${INSTALL_MAN} ${DISTDIR}/${DIST_SUBDIR}/slau591a.pdf \
+ ${STAGEDIR}${DOCSDIR}/slau591a.pdf
+ ${INSTALL_MAN} ${FILESDIR}/watchdog.txt \
+ ${STAGEDIR}${DOCSDIR}/watchdog.txt
+
+.include <bsd.port.mk>
diff --git a/devel/gcc-msp430-ti-toolchain/distinfo b/devel/gcc-msp430-ti-toolchain/distinfo
new file mode 100644
index 000000000000..b56c52b581ae
--- /dev/null
+++ b/devel/gcc-msp430-ti-toolchain/distinfo
@@ -0,0 +1,6 @@
+SHA256 (mspgcc3.05.00.00/msp430-gcc-source.tar.bz2) = d2110ec64e8a055ff89b7eef8217b3c233c30e370e2cb43e1ad835dad5907d1c
+SIZE (mspgcc3.05.00.00/msp430-gcc-source.tar.bz2) = 121889576
+SHA256 (mspgcc3.05.00.00/msp430-gcc-support-files.zip) = 1e2a0903e6b02d5e8aac2a7297ec0685e95a980b13b937b5c7f24f4cf6015407
+SIZE (mspgcc3.05.00.00/msp430-gcc-support-files.zip) = 18688759
+SHA256 (mspgcc3.05.00.00/slau591a.pdf) = a4d4432006c4f20769e9f955caf8b4315eb5989eae84010245e4d3ea8018a06e
+SIZE (mspgcc3.05.00.00/slau591a.pdf) = 43566
diff --git a/devel/gcc-msp430-ti-toolchain/files/patch-itcl_itcl_Makefile.in b/devel/gcc-msp430-ti-toolchain/files/patch-itcl_itcl_Makefile.in
new file mode 100644
index 000000000000..2d501a19892d
--- /dev/null
+++ b/devel/gcc-msp430-ti-toolchain/files/patch-itcl_itcl_Makefile.in
@@ -0,0 +1,11 @@
+--- itcl/itcl/Makefile.in.orig 2012-10-18 00:51:07 UTC
++++ itcl/itcl/Makefile.in
+@@ -73,8 +73,6 @@ datadir = @datadir@
+ mandir = @mandir@
+ includedir = @includedir@
+
+-DESTDIR =
+-
+ PKG_DIR = $(PACKAGE_NAME)$(PACKAGE_VERSION)
+ pkgdatadir = $(datadir)/$(PKG_DIR)
+ pkglibdir = $(libdir)/$(PKG_DIR)
diff --git a/devel/gcc-msp430-ti-toolchain/files/patch-itcl_itk_Makefile.in b/devel/gcc-msp430-ti-toolchain/files/patch-itcl_itk_Makefile.in
new file mode 100644
index 000000000000..21461b8a9fca
--- /dev/null
+++ b/devel/gcc-msp430-ti-toolchain/files/patch-itcl_itk_Makefile.in
@@ -0,0 +1,11 @@
+--- itcl/itk/Makefile.in.orig 2012-10-18 00:51:08 UTC
++++ itcl/itk/Makefile.in
+@@ -92,8 +92,6 @@ datadir = @datadir@
+ mandir = @mandir@
+ includedir = @includedir@
+
+-DESTDIR =
+-
+ PKG_DIR = $(PACKAGE_NAME)$(PACKAGE_VERSION)
+ pkgdatadir = $(datadir)/$(PKG_DIR)
+ pkglibdir = $(libdir)/$(PKG_DIR)
diff --git a/devel/gcc-msp430-ti-toolchain/files/patch-itcl_iwidgets_Makefile.in b/devel/gcc-msp430-ti-toolchain/files/patch-itcl_iwidgets_Makefile.in
new file mode 100644
index 000000000000..083f0d44beed
--- /dev/null
+++ b/devel/gcc-msp430-ti-toolchain/files/patch-itcl_iwidgets_Makefile.in
@@ -0,0 +1,20 @@
+--- itcl/iwidgets/Makefile.in.orig 2012-10-18 00:51:08 UTC
++++ itcl/iwidgets/Makefile.in
+@@ -36,7 +36,7 @@ bindir = @bindir@
+ # to be different than those used for actually reference files at
+ # run-time. INSTALL_ROOT is prepended to $prefix and $exec_prefix
+ # when installing files.
+-INSTALL_ROOT =
++INSTALL_ROOT = $(DESTDIR)
+
+ # Path name to use when installing library scripts:
+ SCRIPT_INSTALL_DIR = $(INSTALL_ROOT)$(prefix)/lib/iwidgets$(IWIDGETS_VERSION)
+@@ -124,7 +124,7 @@ test:
+ install-libraries:
+ @$(MKINSTALLDIRS) $(SCRIPT_INSTALL_DIR) $(LIB_INSTALL_DIR)
+ @rm -f $(LIB_INSTALL_DIR)/iwidgets
+- $(LN_S) $(SCRIPT_INSTALL_DIR) $(LIB_INSTALL_DIR)/iwidgets
++ $(LN_S) iwidgets$(IWIDGETS_VERSION) $(LIB_INSTALL_DIR)/iwidgets
+ @$(MKINSTALLDIRS) $(SCRIPT_INSTALL_DIR)/scripts
+ @echo "Installing source files from $(GENERIC_DIR) into $(SCRIPT_INSTALL_DIR)"
+ @for i in $(GENERIC_DIR)/*.itk $(GENERIC_DIR)/*.itcl $(GENERIC_DIR)/tclIndex $(GENERIC_DIR)/*.gif ; \
diff --git a/devel/gcc-msp430-ti-toolchain/files/patch-libgloss_Makefile.in b/devel/gcc-msp430-ti-toolchain/files/patch-libgloss_Makefile.in
new file mode 100644
index 000000000000..cba9f3df8afa
--- /dev/null
+++ b/devel/gcc-msp430-ti-toolchain/files/patch-libgloss_Makefile.in
@@ -0,0 +1,10 @@
+--- libgloss/Makefile.in.orig 2011-03-25 11:34:28 UTC
++++ libgloss/Makefile.in
+@@ -13,7 +13,6 @@
+ # they apply.
+ #
+
+-DESTDIR =
+ VPATH = @srcdir@
+ srcdir = @srcdir@
+ objdir = .
diff --git a/devel/gcc-msp430-ti-toolchain/files/patch-libgloss_msp430_Makefile.in b/devel/gcc-msp430-ti-toolchain/files/patch-libgloss_msp430_Makefile.in
new file mode 100644
index 000000000000..2cd5e16e7624
--- /dev/null
+++ b/devel/gcc-msp430-ti-toolchain/files/patch-libgloss_msp430_Makefile.in
@@ -0,0 +1,16 @@
+--- libgloss/msp430/Makefile.in.orig 2014-12-10 13:01:36 UTC
++++ libgloss/msp430/Makefile.in
+@@ -157,11 +157,11 @@ write.o : $(SDEPS)
+
+ install: $(CRT) $(SIM_BSP) $(LIBNOSYS) $(LIB_CRT) $(SCRIPTS)
+ for c in $(CRT) $(SIM_BSP) $(LIBNOSYS) $(LIB_CRT); do \
+- $(INSTALL_DATA) $$c $(tooldir)/lib${MULTISUBDIR}/$$c ;\
++ $(INSTALL_DATA) $$c $(DESTDIR)$(tooldir)/lib${MULTISUBDIR}/$$c ;\
+ done
+ for c in $(SCRIPTS); do \
+ b=`basename $$c`; \
+- $(INSTALL_DATA) $$c $(tooldir)/lib${MULTISUBDIR}/$$b ;\
++ $(INSTALL_DATA) $$c $(DESTDIR)$(tooldir)/lib${MULTISUBDIR}/$$b ;\
+ done
+
+ clean mostlyclean:
diff --git a/devel/gcc-msp430-ti-toolchain/files/patch-tcl_unix_Makefile.in b/devel/gcc-msp430-ti-toolchain/files/patch-tcl_unix_Makefile.in
new file mode 100644
index 000000000000..41d7c2121cb3
--- /dev/null
+++ b/devel/gcc-msp430-ti-toolchain/files/patch-tcl_unix_Makefile.in
@@ -0,0 +1,11 @@
+--- tcl/unix/Makefile.in.orig 2012-04-18 00:36:36 UTC
++++ tcl/unix/Makefile.in
+@@ -38,7 +38,7 @@ mandir = @mandir@
+ # to be different than those used for actually reference files at
+ # run-time. INSTALL_ROOT is prepended to $prefix and $exec_prefix
+ # when installing files.
+-INSTALL_ROOT =
++INSTALL_ROOT = $(DESTDIR)
+
+ # Path for the platform independent Tcl scripting libraries:
+ # REDHAT LOCAL
diff --git a/devel/gcc-msp430-ti-toolchain/files/patch-tk_unix_Makefile.in b/devel/gcc-msp430-ti-toolchain/files/patch-tk_unix_Makefile.in
new file mode 100644
index 000000000000..381097d64f95
--- /dev/null
+++ b/devel/gcc-msp430-ti-toolchain/files/patch-tk_unix_Makefile.in
@@ -0,0 +1,11 @@
+--- tk/unix/Makefile.in.orig 2012-04-18 00:37:08 UTC
++++ tk/unix/Makefile.in
+@@ -41,7 +41,7 @@ mandir = @mandir@
+ # to be different than those used for actually reference files at
+ # run-time. INSTALL_ROOT is prepended to $prefix and $exec_prefix
+ # when installing files.
+-INSTALL_ROOT =
++INSTALL_ROOT = $(DESTDIR)
+
+ # Directory from which applications will reference the library of Tcl
+ # scripts (note: you can set the TK_LIBRARY environment variable at
diff --git a/devel/gcc-msp430-ti-toolchain/files/watchdog.txt b/devel/gcc-msp430-ti-toolchain/files/watchdog.txt
new file mode 100644
index 000000000000..4565bacc7d09
--- /dev/null
+++ b/devel/gcc-msp430-ti-toolchain/files/watchdog.txt
@@ -0,0 +1,33 @@
+Watchdog Timers and Init Code
+
+A change has been made to the start-up code: the code to
+disable the watchdog timer has been removed. The code was
+in the start-up sequence because it was found that for some
+large applications the watchdog timer would trigger whilst
+the start-up was happening - ie before main() was reached.
+
+The problem with the disabling code was that the address of
+the watchdog timer was hard-coded in the instruction
+sequence, which meant that it did not work on MCUs that
+used a different address. Rather than try to provide some
+complicated, MCU specific, mechanism for disabling the timer
+during start-up it was decided to simply remove the code
+instead. For most applications this should suffice. If
+however an application does need to disable the watchdog
+timer during start-up, it can add this function to its code
+base:
+
+#include <msp430.h>
+
+static void __attribute__((naked, section(".crt_0042"), used))
+disable_watchdog (void)
+{
+ WDTCTL = WDTPW | WDTHOLD;
+}
+
+Note - this method can be used to insert *any* commands
+into the start-up sequence, not just watchdog timer
+disabling code. Also if the number in .crt_0042 is
+reduced, the code will execute earlier in the start-up
+sequence. If it is increased it will execute later in
+the start-up sequence.
diff --git a/devel/gcc-msp430-ti-toolchain/pkg-descr b/devel/gcc-msp430-ti-toolchain/pkg-descr
new file mode 100644
index 000000000000..f2b43c203363
--- /dev/null
+++ b/devel/gcc-msp430-ti-toolchain/pkg-descr
@@ -0,0 +1,6 @@
+TI & RedHat toolchain for TI's msp430 MCUs cross-development
+
+This brings the gcc compiler for the Texas Instruments MSP430 16-bit
+RISC-like family of microcontrollers.
+
+WWW: http://www.ti.com/tool/msp430-gcc-opensource
diff --git a/devel/gcc-msp430-ti-toolchain/pkg-plist b/devel/gcc-msp430-ti-toolchain/pkg-plist
new file mode 100644
index 000000000000..dee6f7206b5e
--- /dev/null
+++ b/devel/gcc-msp430-ti-toolchain/pkg-plist
@@ -0,0 +1,3022 @@
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/bin/%%TARGET%%-addr2line
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/bin/%%TARGET%%-ar
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/bin/%%TARGET%%-as
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/bin/%%TARGET%%-c++
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/bin/%%TARGET%%-c++filt
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/bin/%%TARGET%%-cpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/bin/%%TARGET%%-elfedit
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/bin/%%TARGET%%-g++
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/bin/%%TARGET%%-gcc
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/bin/%%TARGET%%-gcc-%%GCC_VERSION%%
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/bin/%%TARGET%%-gcc-ar
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/bin/%%TARGET%%-gcc-nm
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/bin/%%TARGET%%-gcc-ranlib
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/bin/%%TARGET%%-gcov
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/bin/%%TARGET%%-gdb
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/bin/%%TARGET%%-gprof
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/bin/%%TARGET%%-insight
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/bin/%%TARGET%%-ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/bin/%%TARGET%%-ld.bfd
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/bin/%%TARGET%%-nm
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/bin/%%TARGET%%-objcopy
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/bin/%%TARGET%%-objdump
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/bin/%%TARGET%%-ranlib
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/bin/%%TARGET%%-readelf
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/bin/%%TARGET%%-run
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/bin/%%TARGET%%-runtest
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/bin/%%TARGET%%-size
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/bin/%%TARGET%%-strings
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/bin/%%TARGET%%-strip
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/bin/tclsh8.4
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/bin/wish8.4
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/docs/slau591a.pdf
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/docs/watchdog.txt
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/charset.alias
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/32mul/crtbegin.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/32mul/crtend.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/32mul/libgcc.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/32mul/libgcov.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/430/32mul/crtbegin.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/430/32mul/crtend.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/430/32mul/libgcc.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/430/32mul/libgcov.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/430/crtbegin.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/430/crtend.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/430/libgcc.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/430/libgcov.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/430/nomul/crtbegin.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/430/nomul/crtend.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/430/nomul/libgcc.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/430/nomul/libgcov.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/crtbegin.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/crtend.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/f5mul/crtbegin.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/f5mul/crtend.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/f5mul/libgcc.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/f5mul/libgcov.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/include-fixed/README
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/include-fixed/limits.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/include-fixed/syslimits.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/include/float.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/include/iso646.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/include/ssp/ssp.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/include/ssp/stdio.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/include/ssp/string.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/include/ssp/unistd.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/include/stdalign.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/include/stdarg.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/include/stdatomic.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/include/stdbool.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/include/stddef.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/include/stdfix.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/include/stdint-gcc.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/include/stdint.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/include/stdnoreturn.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/include/tgmath.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/include/unwind.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/include/varargs.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/install-tools/fixinc_list
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/install-tools/gsyslimits.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/install-tools/include/README
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/install-tools/include/limits.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/install-tools/macro_list
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/install-tools/mkheaders.conf
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/large/32mul/crtbegin.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/large/32mul/crtend.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/large/32mul/libgcc.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/large/32mul/libgcov.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/large/crtbegin.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/large/crtend.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/large/f5mul/crtbegin.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/large/f5mul/crtend.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/large/f5mul/libgcc.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/large/f5mul/libgcov.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/large/libgcc.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/large/libgcov.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/large/nomul/crtbegin.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/large/nomul/crtend.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/large/nomul/libgcc.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/large/nomul/libgcov.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/libgcc.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/libgcov.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/nomul/crtbegin.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/nomul/crtend.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/nomul/libgcc.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/nomul/libgcov.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/gtype.state
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/alias.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/all-tree.def
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/alloc-pool.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/ansidecl.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/attribs.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/auto-host.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/b-header-vars
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/basic-block.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/bitmap.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/builtins.def
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/bversion.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/c-family/c-common.def
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/c-family/c-common.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/c-family/c-objc.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/c-family/c-pragma.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/c-family/c-pretty-print.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/c-tree.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/calls.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/cfg-flags.def
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/cfgexpand.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/cfghooks.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/cfgloop.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/cgraph.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/cif-code.def
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/cilk-builtins.def
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/cilkplus.def
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/config.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/config/dbxelf.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/config/elfos.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/config/initfini-array.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/config/msp430/msp430-opts.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/config/msp430/msp430-protos.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/config/msp430/msp430.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/config/newlib-stdint.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/configargs.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/context.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/coretypes.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/cp/cp-tree.def
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/cp/cp-tree.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/cp/cxx-pretty-print.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/cp/name-lookup.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/cp/type-utils.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/cppdefault.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/cpplib.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/debug.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/defaults.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/df.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/diagnostic-color.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/diagnostic-core.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/diagnostic.def
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/diagnostic.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/double-int.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/dumpfile.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/emit-rtl.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/except.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/filenames.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/fixed-value.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/flag-types.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/flags.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/fold-const.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/function.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/gcc-plugin.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/gcc-symtab.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/genrtl.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/ggc.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/gimple-builder.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/gimple-expr.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/gimple-fold.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/gimple-iterator.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/gimple-low.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/gimple-pretty-print.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/gimple-ssa.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/gimple-walk.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/gimple.def
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/gimple.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/gimplify-me.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/gimplify.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/gsstruct.def
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/gtm-builtins.def
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/gtype-desc.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/hard-reg-set.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/hash-table.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/hashtab.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/highlev-plugin-common.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/hwint.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/incpath.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/input.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/insn-codes.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/insn-constants.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/insn-flags.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/insn-modes.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/insn-notes.def
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/internal-fn.def
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/internal-fn.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/intl.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/ipa-prop.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/ipa-ref-inline.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/ipa-ref.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/ipa-reference.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/ipa-utils.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/is-a.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/langhooks.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/libiberty.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/line-map.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/machmode.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/md5.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/mode-classes.def
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/obstack.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/omp-builtins.def
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/options.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/opts.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/output.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/params.def
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/params.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/pass_manager.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/plugin-api.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/plugin-version.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/plugin.def
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/plugin.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/pointer-set.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/predict.def
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/predict.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/prefix.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/pretty-print.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/print-rtl.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/print-tree.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/real.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/realmpfr.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/reg-notes.def
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/regset.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/resource.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/rtl.def
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/rtl.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/safe-ctype.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/sanitizer.def
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/sbitmap.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/splay-tree.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/ssa-iterators.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/statistics.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/stmt.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/stor-layout.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/stringpool.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/symtab.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/sync-builtins.def
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/system.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/target-hooks-macros.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/target.def
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/target.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/timevar.def
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/timevar.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/tm-preds.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/tm.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/tm_p.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/toplev.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/tree-cfg.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/tree-cfgcleanup.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/tree-check.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/tree-core.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/tree-dfa.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/tree-dump.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/tree-eh.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/tree-hasher.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/tree-inline.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/tree-into-ssa.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/tree-iterator.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/tree-nested.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/tree-object-size.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/tree-outof-ssa.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/tree-parloops.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/tree-pass.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/tree-phinodes.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/tree-pretty-print.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/tree-ssa-address.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/tree-ssa-alias.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/tree-ssa-coalesce.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/tree-ssa-dom.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/tree-ssa-loop-ivopts.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/tree-ssa-loop-manip.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/tree-ssa-loop-niter.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/tree-ssa-loop.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/tree-ssa-operands.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/tree-ssa-sccvn.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/tree-ssa-ter.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/tree-ssa-threadedge.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/tree-ssa-threadupdate.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/tree-ssa.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/tree-ssanames.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/tree.def
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/tree.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/treestruct.def
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/varasm.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/vec.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/include/version.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/insight1.0/plugins.tcl
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/itcl3.3/itcl.tcl
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/itcl3.3/libitcl3.3.so
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/itcl3.3/pkgIndex.tcl
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/itk3.3/Archetype.itk
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/itk3.3/Toplevel.itk
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/itk3.3/Widget.itk
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/itk3.3/itk.tcl
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/itk3.3/libitk3.3.so
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/itk3.3/pkgIndex.tcl
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/itk3.3/tclIndex
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/buttonbox
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/calendar
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/canvasprintbox
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/canvasprintdialog
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/catalog
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/checkbox
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/combobox
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/dateentry
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/datefield
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/demo.html
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/dialog
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/dialogshell
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/disjointlistbox
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/entryfield
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/extbutton
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/extfileselectionbox
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/extfileselectiondialog
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/feedback
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/fileselectionbox
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/fileselectiondialog
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/finddialog
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/hierarchy
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/html/buttonbox.n.html
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/html/calendar.n.html
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/html/canvasprintbox.n.html
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/html/canvasprintdialog.n.html
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/html/checkbox.n.html
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/html/combobox.n.html
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/html/dateentry.n.html
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/html/datefield.n.html
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/html/dialog.n.html
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/html/dialogshell.n.html
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/html/disjointlistbox.n.html
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/html/entryfield.n.html
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/html/extbutton.n.html
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/html/extfileselectionbox.n.html
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/html/extfileselectiondialog.n.html
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/html/feedback.n.html
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/html/fileselectionbox.n.html
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/html/fileselectiondialog.n.html
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/html/finddialog.n.html
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/html/hierarchy.n.html
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/html/hyperhelp.n.html
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/html/iwidgets4.0.0UserCmds.html
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/html/labeledframe.n.html
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/html/labeledwidget.n.html
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/html/mainwindow.n.html
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/html/menubar.n.html
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/html/messagebox.n.html
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/html/messagedialog.n.html
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/html/notebook.n.html
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/html/optionmenu.n.html
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/html/panedwindow.n.html
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/html/promptdialog.n.html
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/html/pushbutton.n.html
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/html/radiobox.n.html
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/html/scopedobject.n.html
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/html/scrolledcanvas.n.html
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/html/scrolledframe.n.html
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/html/scrolledhtml.n.html
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/html/scrolledlistbox.n.html
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/html/scrolledtext.n.html
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/html/selectionbox.n.html
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/html/selectiondialog.n.html
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/html/shell.n.html
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/html/spindate.n.html
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/html/spinint.n.html
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/html/spinner.n.html
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/html/spintime.n.html
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/html/tabnotebook.n.html
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/html/tabset.n.html
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/html/timeentry.n.html
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/html/timefield.n.html
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/html/toolbar.n.html
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/html/watch.n.html
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/hyperhelp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/images/box.xbm
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/images/clear.gif
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/images/close.gif
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/images/copy.gif
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/images/cut.gif
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/images/exit.gif
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/images/find.gif
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/images/help.gif
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/images/line.xbm
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/images/mag.gif
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/images/new.gif
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/images/open.gif
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/images/oval.xbm
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/images/paste.gif
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/images/points.xbm
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/images/poly.gif
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/images/print.gif
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/images/ruler.gif
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/images/save.gif
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/images/select.gif
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/images/text.xbm
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/iwidgets.gif
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/labeledframe
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/labeledwidget
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/mainwindow
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/menubar
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/messagebox
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/messagedialog
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/notebook
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/optionmenu
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/panedwindow
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/promptdialog
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/pushbutton
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/radiobox
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/scopedobject
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/scrolledcanvas
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/scrolledframe
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/scrolledhtml
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/scrolledlistbox
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/scrolledtext
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/selectionbox
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/selectiondialog
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/shell
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/spindate
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/spinint
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/spinner
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/spintime
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/tabnotebook
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/tabset
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/timeentry
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/timefield
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/toolbar
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/demos/watch
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/iwidgets.tcl
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/license.terms
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/pkgIndex.tcl
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/scripts/buttonbox.itk
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/scripts/calendar.itk
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/scripts/canvasprintbox.itk
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/scripts/canvasprintdialog.itk
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/scripts/checkbox.itk
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/scripts/colors.itcl
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/scripts/combobox.itk
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/scripts/dateentry.itk
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/scripts/datefield.itk
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/scripts/dialog.itk
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/scripts/dialogshell.itk
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/scripts/disjointlistbox.itk
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/scripts/entryfield.itk
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/scripts/extbutton.itk
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/scripts/extfileselectionbox.itk
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/scripts/extfileselectiondialog.itk
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/scripts/feedback.itk
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/scripts/fileselectionbox.itk
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/scripts/fileselectiondialog.itk
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/scripts/finddialog.itk
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/scripts/hierarchy.itk
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/scripts/hyperhelp.itk
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/scripts/labeledframe.itk
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/scripts/labeledwidget.itk
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/scripts/mainwindow.itk
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/scripts/menubar.itk
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/scripts/messagebox.itk
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/scripts/messagedialog.itk
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/scripts/notebook.itk
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/scripts/optionmenu.itk
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/scripts/pane.itk
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/scripts/panedwindow.itk
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/scripts/promptdialog.itk
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/scripts/pushbutton.itk
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/scripts/radiobox.itk
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/scripts/regexpfield.itk
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/scripts/roman.itcl
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/scripts/scopedobject.itcl
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/scripts/scrolledcanvas.itk
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/scripts/scrolledframe.itk
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/scripts/scrolledhtml.itk
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/scripts/scrolledlistbox.itk
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/scripts/scrolledtext.itk
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/scripts/scrolledwidget.itk
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/scripts/selectionbox.itk
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/scripts/selectiondialog.itk
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/scripts/shell.itk
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/scripts/spindate.itk
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/scripts/spinint.itk
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/scripts/spinner.itk
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/scripts/spintime.itk
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/scripts/tabnotebook.itk
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/scripts/tabset.itk
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/scripts/tclIndex
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/scripts/timeentry.itk
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/scripts/timefield.itk
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/scripts/toolbar.itk
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/scripts/unknownimage.gif
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/iwidgets4.0.1/scripts/watch.itk
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/libexec/gcc/%%TARGET%%/%%GCC_VERSION%%/cc1
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/libexec/gcc/%%TARGET%%/%%GCC_VERSION%%/cc1plus
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/libexec/gcc/%%TARGET%%/%%GCC_VERSION%%/collect2
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/libexec/gcc/%%TARGET%%/%%GCC_VERSION%%/install-tools/fixinc.sh
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/libexec/gcc/%%TARGET%%/%%GCC_VERSION%%/install-tools/fixincl
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/libexec/gcc/%%TARGET%%/%%GCC_VERSION%%/install-tools/mkheaders
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/libexec/gcc/%%TARGET%%/%%GCC_VERSION%%/install-tools/mkinstalldirs
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/libexec/gcc/%%TARGET%%/%%GCC_VERSION%%/liblto_plugin.so
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/libexec/gcc/%%TARGET%%/%%GCC_VERSION%%/liblto_plugin.so.0
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/libexec/gcc/%%TARGET%%/%%GCC_VERSION%%/liblto_plugin.so.0.0.0
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/libexec/gcc/%%TARGET%%/%%GCC_VERSION%%/lto-wrapper
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/libexec/gcc/%%TARGET%%/%%GCC_VERSION%%/lto1
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/libexec/gcc/%%TARGET%%/%%GCC_VERSION%%/plugin/gengtype
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/bin/ar
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/bin/as
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/bin/ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/bin/ld.bfd
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/bin/nm
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/bin/objcopy
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/bin/objdump
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/bin/ranlib
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/bin/strip
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/_ansi.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/_syslist.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/alloca.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/ar.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/argz.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/assert.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/algorithm
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/array
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/atomic
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/backward/auto_ptr.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/backward/backward_warning.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/backward/binders.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/backward/hash_fun.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/backward/hash_map
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/backward/hash_set
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/backward/hashtable.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/backward/strstream
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/algorithmfwd.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/alloc_traits.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/allocator.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/atomic_base.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/atomic_lockfree_defines.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/basic_ios.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/basic_ios.tcc
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/basic_string.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/basic_string.tcc
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/boost_concept_check.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/c++0x_warning.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/c++14_warning.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/char_traits.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/codecvt.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/concept_check.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/cpp_type_traits.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/cxxabi_forced.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/deque.tcc
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/enable_special_members.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/exception_defines.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/exception_ptr.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/forward_list.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/forward_list.tcc
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/fstream.tcc
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/functexcept.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/functional_hash.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/gslice.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/gslice_array.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/hash_bytes.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/hashtable.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/hashtable_policy.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/indirect_array.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/ios_base.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/istream.tcc
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/list.tcc
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/locale_classes.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/locale_classes.tcc
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/locale_facets.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/locale_facets.tcc
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/locale_facets_nonio.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/locale_facets_nonio.tcc
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/localefwd.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/mask_array.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/memoryfwd.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/move.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/nested_exception.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/ostream.tcc
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/ostream_insert.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/parse_numbers.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/postypes.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/predefined_ops.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/ptr_traits.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/random.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/random.tcc
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/range_access.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/regex.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/regex.tcc
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/regex_automaton.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/regex_automaton.tcc
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/regex_compiler.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/regex_compiler.tcc
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/regex_constants.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/regex_error.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/regex_executor.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/regex_executor.tcc
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/regex_scanner.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/regex_scanner.tcc
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/shared_ptr.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/shared_ptr_base.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/slice_array.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/sstream.tcc
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/stl_algo.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/stl_algobase.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/stl_bvector.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/stl_construct.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/stl_deque.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/stl_function.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/stl_heap.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/stl_iterator.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/stl_iterator_base_funcs.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/stl_iterator_base_types.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/stl_list.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/stl_map.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/stl_multimap.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/stl_multiset.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/stl_numeric.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/stl_pair.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/stl_queue.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/stl_raw_storage_iter.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/stl_relops.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/stl_set.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/stl_stack.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/stl_tempbuf.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/stl_tree.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/stl_uninitialized.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/stl_vector.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/stream_iterator.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/streambuf.tcc
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/streambuf_iterator.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/stringfwd.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/unique_ptr.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/unordered_map.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/unordered_set.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/uses_allocator.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/valarray_after.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/valarray_array.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/valarray_array.tcc
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/valarray_before.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bits/vector.tcc
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/bitset
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/cassert
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ccomplex
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/cctype
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/cerrno
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/cfenv
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/cfloat
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/chrono
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/cinttypes
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ciso646
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/climits
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/clocale
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/cmath
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/complex
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/complex.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/condition_variable
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/csetjmp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/csignal
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/cstdalign
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/cstdarg
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/cstdbool
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/cstddef
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/cstdint
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/cstdio
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/cstdlib
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/cstring
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ctgmath
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ctime
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/cwchar
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/cwctype
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/cxxabi.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/debug/array
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/debug/bitset
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/debug/debug.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/debug/deque
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/debug/formatter.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/debug/forward_list
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/debug/functions.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/debug/list
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/debug/macros.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/debug/map
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/debug/map.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/debug/multimap.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/debug/multiset.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/debug/safe_base.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/debug/safe_iterator.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/debug/safe_iterator.tcc
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/debug/safe_local_iterator.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/debug/safe_local_iterator.tcc
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/debug/safe_sequence.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/debug/safe_sequence.tcc
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/debug/safe_unordered_base.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/debug/safe_unordered_container.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/debug/safe_unordered_container.tcc
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/debug/set
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/debug/set.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/debug/string
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/debug/unordered_map
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/debug/unordered_set
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/debug/vector
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/decimal/decimal
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/decimal/decimal.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/deque
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/exception
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/experimental/optional
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/experimental/string_view
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/experimental/string_view.tcc
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/algorithm
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/aligned_buffer.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/alloc_traits.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/array_allocator.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/atomicity.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/bitmap_allocator.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/cast.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/cmath
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/codecvt_specializations.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/concurrence.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/debug_allocator.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/enc_filebuf.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/extptr_allocator.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/functional
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/hash_map
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/hash_set
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/iterator
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/malloc_allocator.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/memory
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/mt_allocator.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/new_allocator.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/numeric
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/numeric_traits.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/assoc_container.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/bin_search_tree_/bin_search_tree_.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/bin_search_tree_/constructors_destructor_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/bin_search_tree_/debug_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/bin_search_tree_/erase_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/bin_search_tree_/find_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/bin_search_tree_/info_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/bin_search_tree_/insert_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/bin_search_tree_/iterators_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/bin_search_tree_/node_iterators.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/bin_search_tree_/point_iterators.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/bin_search_tree_/policy_access_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/bin_search_tree_/r_erase_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/bin_search_tree_/rotate_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/bin_search_tree_/split_join_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/bin_search_tree_/traits.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/binary_heap_/binary_heap_.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/binary_heap_/const_iterator.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/binary_heap_/constructors_destructor_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/binary_heap_/debug_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/binary_heap_/entry_cmp.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/binary_heap_/entry_pred.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/binary_heap_/erase_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/binary_heap_/find_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/binary_heap_/info_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/binary_heap_/insert_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/binary_heap_/iterators_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/binary_heap_/point_const_iterator.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/binary_heap_/policy_access_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/binary_heap_/resize_policy.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/binary_heap_/split_join_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/binary_heap_/trace_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/binomial_heap_/binomial_heap_.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/binomial_heap_/constructors_destructor_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/binomial_heap_/debug_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/binomial_heap_base_/binomial_heap_base_.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/binomial_heap_base_/constructors_destructor_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/binomial_heap_base_/debug_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/binomial_heap_base_/erase_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/binomial_heap_base_/find_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/binomial_heap_base_/insert_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/binomial_heap_base_/split_join_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/branch_policy/branch_policy.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/branch_policy/null_node_metadata.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/branch_policy/traits.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/cc_hash_table_map_/cc_ht_map_.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/cc_hash_table_map_/cmp_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/cc_hash_table_map_/cond_key_dtor_entry_dealtor.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/cc_hash_table_map_/debug_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/cc_hash_table_map_/debug_no_store_hash_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/cc_hash_table_map_/debug_store_hash_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/cc_hash_table_map_/entry_list_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/cc_hash_table_map_/erase_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/cc_hash_table_map_/erase_no_store_hash_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/cc_hash_table_map_/erase_store_hash_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/cc_hash_table_map_/find_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/cc_hash_table_map_/find_store_hash_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/cc_hash_table_map_/info_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/cc_hash_table_map_/insert_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/cc_hash_table_map_/insert_no_store_hash_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/cc_hash_table_map_/insert_store_hash_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/cc_hash_table_map_/iterators_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/cc_hash_table_map_/policy_access_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/cc_hash_table_map_/resize_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/cc_hash_table_map_/resize_no_store_hash_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/cc_hash_table_map_/resize_store_hash_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/cc_hash_table_map_/size_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/cc_hash_table_map_/trace_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/cond_dealtor.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/container_base_dispatch.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/debug_map_base.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/eq_fn/eq_by_less.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/eq_fn/hash_eq_fn.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/gp_hash_table_map_/debug_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/gp_hash_table_map_/debug_no_store_hash_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/gp_hash_table_map_/debug_store_hash_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/gp_hash_table_map_/erase_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/gp_hash_table_map_/erase_no_store_hash_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/gp_hash_table_map_/erase_store_hash_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/gp_hash_table_map_/find_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/gp_hash_table_map_/find_no_store_hash_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/gp_hash_table_map_/find_store_hash_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/gp_hash_table_map_/gp_ht_map_.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/gp_hash_table_map_/info_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/gp_hash_table_map_/insert_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/gp_hash_table_map_/insert_no_store_hash_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/gp_hash_table_map_/insert_store_hash_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/gp_hash_table_map_/iterator_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/gp_hash_table_map_/policy_access_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/gp_hash_table_map_/resize_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/gp_hash_table_map_/resize_no_store_hash_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/gp_hash_table_map_/resize_store_hash_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/gp_hash_table_map_/trace_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/hash_fn/direct_mask_range_hashing_imp.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/hash_fn/direct_mod_range_hashing_imp.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/hash_fn/linear_probe_fn_imp.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/hash_fn/mask_based_range_hashing.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/hash_fn/mod_based_range_hashing.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/hash_fn/probe_fn_base.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/hash_fn/quadratic_probe_fn_imp.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/hash_fn/ranged_hash_fn.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/hash_fn/ranged_probe_fn.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/hash_fn/sample_probe_fn.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/hash_fn/sample_range_hashing.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/hash_fn/sample_ranged_hash_fn.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/hash_fn/sample_ranged_probe_fn.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/left_child_next_sibling_heap_/const_iterator.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/left_child_next_sibling_heap_/constructors_destructor_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/left_child_next_sibling_heap_/debug_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/left_child_next_sibling_heap_/erase_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/left_child_next_sibling_heap_/info_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/left_child_next_sibling_heap_/insert_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/left_child_next_sibling_heap_/iterators_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/left_child_next_sibling_heap_/left_child_next_sibling_heap_.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/left_child_next_sibling_heap_/node.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/left_child_next_sibling_heap_/point_const_iterator.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/left_child_next_sibling_heap_/policy_access_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/left_child_next_sibling_heap_/trace_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/list_update_map_/constructor_destructor_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/list_update_map_/debug_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/list_update_map_/entry_metadata_base.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/list_update_map_/erase_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/list_update_map_/find_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/list_update_map_/info_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/list_update_map_/insert_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/list_update_map_/iterators_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/list_update_map_/lu_map_.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/list_update_map_/trace_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/list_update_policy/lu_counter_metadata.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/list_update_policy/sample_update_policy.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/ov_tree_map_/constructors_destructor_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/ov_tree_map_/debug_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/ov_tree_map_/erase_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/ov_tree_map_/info_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/ov_tree_map_/insert_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/ov_tree_map_/iterators_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/ov_tree_map_/node_iterators.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/ov_tree_map_/ov_tree_map_.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/ov_tree_map_/policy_access_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/ov_tree_map_/split_join_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/ov_tree_map_/traits.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/pairing_heap_/constructors_destructor_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/pairing_heap_/debug_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/pairing_heap_/erase_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/pairing_heap_/find_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/pairing_heap_/insert_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/pairing_heap_/pairing_heap_.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/pairing_heap_/split_join_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/pat_trie_/constructors_destructor_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/pat_trie_/debug_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/pat_trie_/erase_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/pat_trie_/find_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/pat_trie_/info_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/pat_trie_/insert_join_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/pat_trie_/iterators_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/pat_trie_/pat_trie_.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/pat_trie_/pat_trie_base.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/pat_trie_/policy_access_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/pat_trie_/r_erase_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/pat_trie_/rotate_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/pat_trie_/split_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/pat_trie_/synth_access_traits.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/pat_trie_/trace_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/pat_trie_/traits.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/pat_trie_/update_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/priority_queue_base_dispatch.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/rb_tree_map_/constructors_destructor_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/rb_tree_map_/debug_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/rb_tree_map_/erase_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/rb_tree_map_/find_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/rb_tree_map_/info_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/rb_tree_map_/insert_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/rb_tree_map_/node.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/rb_tree_map_/rb_tree_.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/rb_tree_map_/split_join_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/rb_tree_map_/traits.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/rc_binomial_heap_/constructors_destructor_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/rc_binomial_heap_/debug_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/rc_binomial_heap_/erase_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/rc_binomial_heap_/insert_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/rc_binomial_heap_/rc.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/rc_binomial_heap_/rc_binomial_heap_.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/rc_binomial_heap_/split_join_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/rc_binomial_heap_/trace_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/resize_policy/cc_hash_max_collision_check_resize_trigger_imp.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/resize_policy/hash_exponential_size_policy_imp.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/resize_policy/hash_load_check_resize_trigger_imp.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/resize_policy/hash_load_check_resize_trigger_size_base.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/resize_policy/hash_prime_size_policy_imp.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/resize_policy/hash_standard_resize_policy_imp.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/resize_policy/sample_resize_policy.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/resize_policy/sample_resize_trigger.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/resize_policy/sample_size_policy.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/splay_tree_/constructors_destructor_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/splay_tree_/debug_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/splay_tree_/erase_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/splay_tree_/find_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/splay_tree_/info_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/splay_tree_/insert_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/splay_tree_/node.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/splay_tree_/splay_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/splay_tree_/splay_tree_.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/splay_tree_/split_join_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/splay_tree_/traits.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/standard_policies.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/thin_heap_/constructors_destructor_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/thin_heap_/debug_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/thin_heap_/erase_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/thin_heap_/find_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/thin_heap_/insert_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/thin_heap_/split_join_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/thin_heap_/thin_heap_.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/thin_heap_/trace_fn_imps.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/tree_policy/node_metadata_selector.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/tree_policy/order_statistics_imp.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/tree_policy/sample_tree_node_update.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/tree_trace_base.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/trie_policy/node_metadata_selector.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/trie_policy/order_statistics_imp.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/trie_policy/prefix_search_node_update_imp.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/trie_policy/sample_trie_access_traits.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/trie_policy/sample_trie_node_update.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/trie_policy/trie_policy_base.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/trie_policy/trie_string_access_traits_imp.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/type_utils.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/types_traits.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/unordered_iterator/const_iterator.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/unordered_iterator/iterator.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/unordered_iterator/point_const_iterator.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/detail/unordered_iterator/point_iterator.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/exception.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/hash_policy.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/list_update_policy.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/priority_queue.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/tag_and_trait.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/tree_policy.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pb_ds/trie_policy.hpp
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pod_char_traits.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pointer.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/pool_allocator.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/random
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/random.tcc
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/rb_tree
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/rc_string_base.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/rope
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/ropeimpl.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/slist
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/sso_string_base.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/stdio_filebuf.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/stdio_sync_filebuf.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/string_conversions.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/throw_allocator.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/type_traits.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/typelist.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/vstring.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/vstring.tcc
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/vstring_fwd.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ext/vstring_util.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/fenv.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/forward_list
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/fstream
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/functional
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/future
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/initializer_list
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/iomanip
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ios
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/iosfwd
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/iostream
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/istream
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/iterator
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/limits
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/list
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/locale
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/map
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/memory
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/32mul/bits/atomic_word.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/32mul/bits/basic_file.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/32mul/bits/c++allocator.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/32mul/bits/c++config.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/32mul/bits/c++io.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/32mul/bits/c++locale.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/32mul/bits/cpu_defines.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/32mul/bits/ctype_base.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/32mul/bits/ctype_inline.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/32mul/bits/cxxabi_tweaks.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/32mul/bits/error_constants.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/32mul/bits/extc++.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/32mul/bits/gthr-default.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/32mul/bits/gthr-posix.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/32mul/bits/gthr-single.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/32mul/bits/gthr.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/32mul/bits/messages_members.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/32mul/bits/opt_random.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/32mul/bits/os_defines.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/32mul/bits/stdc++.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/32mul/bits/stdtr1c++.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/32mul/bits/time_members.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/32mul/ext/opt_random.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/32mul/bits/atomic_word.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/32mul/bits/basic_file.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/32mul/bits/c++allocator.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/32mul/bits/c++config.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/32mul/bits/c++io.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/32mul/bits/c++locale.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/32mul/bits/cpu_defines.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/32mul/bits/ctype_base.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/32mul/bits/ctype_inline.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/32mul/bits/cxxabi_tweaks.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/32mul/bits/error_constants.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/32mul/bits/extc++.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/32mul/bits/gthr-default.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/32mul/bits/gthr-posix.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/32mul/bits/gthr-single.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/32mul/bits/gthr.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/32mul/bits/messages_members.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/32mul/bits/opt_random.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/32mul/bits/os_defines.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/32mul/bits/stdc++.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/32mul/bits/stdtr1c++.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/32mul/bits/time_members.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/32mul/ext/opt_random.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/bits/atomic_word.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/bits/basic_file.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/bits/c++allocator.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/bits/c++config.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/bits/c++io.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/bits/c++locale.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/bits/cpu_defines.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/bits/ctype_base.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/bits/ctype_inline.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/bits/cxxabi_tweaks.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/bits/error_constants.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/bits/extc++.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/bits/gthr-default.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/bits/gthr-posix.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/bits/gthr-single.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/bits/gthr.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/bits/messages_members.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/bits/opt_random.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/bits/os_defines.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/bits/stdc++.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/bits/stdtr1c++.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/bits/time_members.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/ext/opt_random.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/nomul/bits/atomic_word.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/nomul/bits/basic_file.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/nomul/bits/c++allocator.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/nomul/bits/c++config.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/nomul/bits/c++io.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/nomul/bits/c++locale.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/nomul/bits/cpu_defines.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/nomul/bits/ctype_base.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/nomul/bits/ctype_inline.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/nomul/bits/cxxabi_tweaks.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/nomul/bits/error_constants.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/nomul/bits/extc++.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/nomul/bits/gthr-default.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/nomul/bits/gthr-posix.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/nomul/bits/gthr-single.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/nomul/bits/gthr.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/nomul/bits/messages_members.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/nomul/bits/opt_random.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/nomul/bits/os_defines.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/nomul/bits/stdc++.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/nomul/bits/stdtr1c++.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/nomul/bits/time_members.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/430/nomul/ext/opt_random.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/bits/atomic_word.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/bits/basic_file.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/bits/c++allocator.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/bits/c++config.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/bits/c++io.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/bits/c++locale.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/bits/cpu_defines.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/bits/ctype_base.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/bits/ctype_inline.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/bits/cxxabi_tweaks.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/bits/error_constants.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/bits/extc++.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/bits/gthr-default.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/bits/gthr-posix.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/bits/gthr-single.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/bits/gthr.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/bits/messages_members.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/bits/opt_random.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/bits/os_defines.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/bits/stdc++.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/bits/stdtr1c++.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/bits/time_members.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/ext/opt_random.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/f5mul/bits/atomic_word.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/f5mul/bits/basic_file.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/f5mul/bits/c++allocator.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/f5mul/bits/c++config.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/f5mul/bits/c++io.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/f5mul/bits/c++locale.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/f5mul/bits/cpu_defines.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/f5mul/bits/ctype_base.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/f5mul/bits/ctype_inline.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/f5mul/bits/cxxabi_tweaks.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/f5mul/bits/error_constants.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/f5mul/bits/extc++.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/f5mul/bits/gthr-default.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/f5mul/bits/gthr-posix.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/f5mul/bits/gthr-single.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/f5mul/bits/gthr.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/f5mul/bits/messages_members.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/f5mul/bits/opt_random.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/f5mul/bits/os_defines.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/f5mul/bits/stdc++.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/f5mul/bits/stdtr1c++.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/f5mul/bits/time_members.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/f5mul/ext/opt_random.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/32mul/bits/atomic_word.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/32mul/bits/basic_file.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/32mul/bits/c++allocator.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/32mul/bits/c++config.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/32mul/bits/c++io.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/32mul/bits/c++locale.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/32mul/bits/cpu_defines.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/32mul/bits/ctype_base.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/32mul/bits/ctype_inline.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/32mul/bits/cxxabi_tweaks.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/32mul/bits/error_constants.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/32mul/bits/extc++.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/32mul/bits/gthr-default.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/32mul/bits/gthr-posix.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/32mul/bits/gthr-single.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/32mul/bits/gthr.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/32mul/bits/messages_members.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/32mul/bits/opt_random.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/32mul/bits/os_defines.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/32mul/bits/stdc++.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/32mul/bits/stdtr1c++.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/32mul/bits/time_members.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/32mul/ext/opt_random.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/bits/atomic_word.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/bits/basic_file.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/bits/c++allocator.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/bits/c++config.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/bits/c++io.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/bits/c++locale.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/bits/cpu_defines.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/bits/ctype_base.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/bits/ctype_inline.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/bits/cxxabi_tweaks.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/bits/error_constants.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/bits/extc++.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/bits/gthr-default.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/bits/gthr-posix.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/bits/gthr-single.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/bits/gthr.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/bits/messages_members.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/bits/opt_random.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/bits/os_defines.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/bits/stdc++.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/bits/stdtr1c++.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/bits/time_members.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/ext/opt_random.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/f5mul/bits/atomic_word.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/f5mul/bits/basic_file.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/f5mul/bits/c++allocator.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/f5mul/bits/c++config.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/f5mul/bits/c++io.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/f5mul/bits/c++locale.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/f5mul/bits/cpu_defines.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/f5mul/bits/ctype_base.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/f5mul/bits/ctype_inline.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/f5mul/bits/cxxabi_tweaks.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/f5mul/bits/error_constants.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/f5mul/bits/extc++.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/f5mul/bits/gthr-default.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/f5mul/bits/gthr-posix.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/f5mul/bits/gthr-single.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/f5mul/bits/gthr.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/f5mul/bits/messages_members.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/f5mul/bits/opt_random.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/f5mul/bits/os_defines.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/f5mul/bits/stdc++.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/f5mul/bits/stdtr1c++.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/f5mul/bits/time_members.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/f5mul/ext/opt_random.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/nomul/bits/atomic_word.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/nomul/bits/basic_file.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/nomul/bits/c++allocator.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/nomul/bits/c++config.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/nomul/bits/c++io.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/nomul/bits/c++locale.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/nomul/bits/cpu_defines.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/nomul/bits/ctype_base.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/nomul/bits/ctype_inline.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/nomul/bits/cxxabi_tweaks.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/nomul/bits/error_constants.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/nomul/bits/extc++.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/nomul/bits/gthr-default.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/nomul/bits/gthr-posix.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/nomul/bits/gthr-single.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/nomul/bits/gthr.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/nomul/bits/messages_members.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/nomul/bits/opt_random.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/nomul/bits/os_defines.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/nomul/bits/stdc++.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/nomul/bits/stdtr1c++.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/nomul/bits/time_members.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/large/nomul/ext/opt_random.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/nomul/bits/atomic_word.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/nomul/bits/basic_file.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/nomul/bits/c++allocator.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/nomul/bits/c++config.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/nomul/bits/c++io.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/nomul/bits/c++locale.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/nomul/bits/cpu_defines.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/nomul/bits/ctype_base.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/nomul/bits/ctype_inline.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/nomul/bits/cxxabi_tweaks.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/nomul/bits/error_constants.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/nomul/bits/extc++.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/nomul/bits/gthr-default.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/nomul/bits/gthr-posix.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/nomul/bits/gthr-single.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/nomul/bits/gthr.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/nomul/bits/messages_members.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/nomul/bits/opt_random.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/nomul/bits/os_defines.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/nomul/bits/stdc++.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/nomul/bits/stdtr1c++.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/nomul/bits/time_members.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/%%TARGET%%/nomul/ext/opt_random.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/mutex
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/new
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/numeric
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ostream
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/parallel/algo.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/parallel/algobase.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/parallel/algorithm
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/parallel/algorithmfwd.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/parallel/balanced_quicksort.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/parallel/base.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/parallel/basic_iterator.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/parallel/checkers.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/parallel/compatibility.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/parallel/compiletime_settings.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/parallel/equally_split.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/parallel/features.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/parallel/find.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/parallel/find_selectors.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/parallel/for_each.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/parallel/for_each_selectors.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/parallel/iterator.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/parallel/list_partition.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/parallel/losertree.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/parallel/merge.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/parallel/multiseq_selection.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/parallel/multiway_merge.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/parallel/multiway_mergesort.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/parallel/numeric
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/parallel/numericfwd.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/parallel/omp_loop.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/parallel/omp_loop_static.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/parallel/par_loop.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/parallel/parallel.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/parallel/partial_sum.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/parallel/partition.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/parallel/queue.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/parallel/quicksort.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/parallel/random_number.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/parallel/random_shuffle.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/parallel/search.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/parallel/set_operations.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/parallel/settings.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/parallel/sort.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/parallel/tags.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/parallel/types.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/parallel/unique_copy.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/parallel/workstealing.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/profile/array
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/profile/base.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/profile/bitset
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/profile/deque
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/profile/forward_list
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/profile/impl/profiler.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/profile/impl/profiler_algos.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/profile/impl/profiler_container_size.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/profile/impl/profiler_hash_func.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/profile/impl/profiler_hashtable_size.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/profile/impl/profiler_list_to_slist.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/profile/impl/profiler_list_to_vector.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/profile/impl/profiler_map_to_unordered_map.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/profile/impl/profiler_node.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/profile/impl/profiler_state.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/profile/impl/profiler_trace.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/profile/impl/profiler_vector_size.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/profile/impl/profiler_vector_to_list.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/profile/iterator_tracker.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/profile/list
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/profile/map
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/profile/map.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/profile/multimap.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/profile/multiset.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/profile/set
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/profile/set.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/profile/unordered_base.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/profile/unordered_map
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/profile/unordered_set
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/profile/vector
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/queue
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/random
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/ratio
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/regex
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/scoped_allocator
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/set
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/shared_mutex
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/sstream
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/stack
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/stdexcept
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/streambuf
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/string
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/system_error
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tgmath.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/thread
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr1/array
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr1/bessel_function.tcc
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr1/beta_function.tcc
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr1/ccomplex
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr1/cctype
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr1/cfenv
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr1/cfloat
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr1/cinttypes
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr1/climits
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr1/cmath
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr1/complex
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr1/complex.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr1/cstdarg
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr1/cstdbool
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr1/cstdint
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr1/cstdio
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr1/cstdlib
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr1/ctgmath
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr1/ctime
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr1/ctype.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr1/cwchar
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr1/cwctype
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr1/ell_integral.tcc
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr1/exp_integral.tcc
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr1/fenv.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr1/float.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr1/functional
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr1/functional_hash.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr1/gamma.tcc
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr1/hashtable.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr1/hashtable_policy.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr1/hypergeometric.tcc
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr1/inttypes.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr1/legendre_function.tcc
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr1/limits.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr1/math.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr1/memory
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr1/modified_bessel_func.tcc
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr1/poly_hermite.tcc
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr1/poly_laguerre.tcc
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr1/random
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr1/random.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr1/random.tcc
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr1/regex
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr1/riemann_zeta.tcc
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr1/shared_ptr.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr1/special_function_util.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr1/stdarg.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr1/stdbool.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr1/stdint.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr1/stdio.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr1/stdlib.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr1/tgmath.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr1/tuple
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr1/type_traits
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr1/unordered_map
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr1/unordered_map.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr1/unordered_set
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr1/unordered_set.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr1/utility
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr1/wchar.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr1/wctype.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr2/bool_set
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr2/bool_set.tcc
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr2/dynamic_bitset
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr2/dynamic_bitset.tcc
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr2/ratio
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tr2/type_traits
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/tuple
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/type_traits
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/typeindex
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/typeinfo
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/unordered_map
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/unordered_set
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/utility
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/valarray
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/c++/%%GCC_VERSION%%/vector
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/complex.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/ctype.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/dirent.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/envlock.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/envz.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/errno.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/fastmath.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/fcntl.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/fenv.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/fnmatch.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/getopt.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/glob.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/grp.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/iconv.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/ieeefp.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/inttypes.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/langinfo.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/libgen.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/limits.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/locale.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/machine/_default_types.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/machine/_types.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/machine/ansi.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/machine/endian.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/machine/fastmath.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/machine/ieeefp.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/machine/malloc.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/machine/param.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/machine/setjmp-dj.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/machine/setjmp.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/machine/stdlib.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/machine/termios.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/machine/time.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/machine/types.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/malloc.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/math.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/newlib.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/paths.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/pthread.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/pwd.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/reent.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/regdef.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/regex.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/sched.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/search.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/setjmp.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/signal.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/spawn.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/stdatomic.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/stdint.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/stdio.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/stdio_ext.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/stdlib.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/string.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/strings.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/sys/_default_fcntl.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/sys/_types.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/sys/cdefs.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/sys/config.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/sys/custom_file.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/sys/dir.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/sys/dirent.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/sys/errno.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/sys/fcntl.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/sys/features.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/sys/file.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/sys/iconvnls.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/sys/lock.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/sys/param.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/sys/queue.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/sys/reent.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/sys/resource.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/sys/sched.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/sys/signal.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/sys/stat.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/sys/stdio.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/sys/string.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/sys/syslimits.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/sys/time.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/sys/timeb.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/sys/times.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/sys/types.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/sys/unistd.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/sys/utime.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/sys/wait.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/tar.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/termios.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/tgmath.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/time.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/unctrl.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/unistd.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/utime.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/utmp.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/wchar.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/wctype.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/wordexp.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/32mul/crt0-minrt.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/32mul/crt0.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/32mul/crtn-minrt.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/32mul/crtn.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/32mul/gcrt0.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/32mul/intr_vectors.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/32mul/libc.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/32mul/libcrt.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/32mul/libg.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/32mul/libm.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/32mul/libnosys.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/32mul/libsim.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/32mul/libssp.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/32mul/libssp_nonshared.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/32mul/libstdc++.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/32mul/libstdc++.a-gdb.py
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/32mul/libsupc++.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/32mul/msp430-sim.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/32mul/msp430.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/32mul/msp430xl-sim.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/430/32mul/crt0-minrt.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/430/32mul/crt0.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/430/32mul/crtn-minrt.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/430/32mul/crtn.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/430/32mul/gcrt0.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/430/32mul/intr_vectors.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/430/32mul/libc.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/430/32mul/libcrt.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/430/32mul/libg.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/430/32mul/libm.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/430/32mul/libnosys.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/430/32mul/libsim.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/430/32mul/libssp.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/430/32mul/libssp_nonshared.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/430/32mul/libstdc++.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/430/32mul/libstdc++.a-gdb.py
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/430/32mul/libsupc++.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/430/32mul/msp430-sim.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/430/32mul/msp430.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/430/32mul/msp430xl-sim.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/430/crt0-minrt.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/430/crt0.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/430/crtn-minrt.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/430/crtn.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/430/gcrt0.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/430/intr_vectors.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/430/libc.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/430/libcrt.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/430/libg.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/430/libm.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/430/libnosys.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/430/libsim.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/430/libssp.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/430/libssp_nonshared.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/430/libstdc++.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/430/libstdc++.a-gdb.py
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/430/libsupc++.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/430/msp430-sim.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/430/msp430.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/430/msp430xl-sim.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/430/nomul/crt0-minrt.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/430/nomul/crt0.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/430/nomul/crtn-minrt.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/430/nomul/crtn.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/430/nomul/gcrt0.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/430/nomul/intr_vectors.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/430/nomul/libc.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/430/nomul/libcrt.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/430/nomul/libg.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/430/nomul/libm.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/430/nomul/libnosys.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/430/nomul/libsim.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/430/nomul/libssp.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/430/nomul/libssp_nonshared.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/430/nomul/libstdc++.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/430/nomul/libstdc++.a-gdb.py
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/430/nomul/libsupc++.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/430/nomul/msp430-sim.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/430/nomul/msp430.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/430/nomul/msp430xl-sim.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/crt0-minrt.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/crt0.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/crtn-minrt.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/crtn.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/f5mul/crt0-minrt.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/f5mul/crt0.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/f5mul/crtn-minrt.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/f5mul/crtn.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/f5mul/gcrt0.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/f5mul/intr_vectors.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/f5mul/libc.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/f5mul/libcrt.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/f5mul/libg.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/f5mul/libm.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/f5mul/libnosys.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/f5mul/libsim.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/f5mul/libssp.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/f5mul/libssp_nonshared.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/f5mul/libstdc++.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/f5mul/libstdc++.a-gdb.py
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/f5mul/libsupc++.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/f5mul/msp430-sim.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/f5mul/msp430.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/f5mul/msp430xl-sim.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/gcrt0.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/intr_vectors.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/32mul/crt0-minrt.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/32mul/crt0.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/32mul/crtn-minrt.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/32mul/crtn.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/32mul/gcrt0.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/32mul/intr_vectors.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/32mul/libc.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/32mul/libcrt.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/32mul/libg.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/32mul/libm.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/32mul/libnosys.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/32mul/libsim.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/32mul/libssp.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/32mul/libssp_nonshared.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/32mul/libstdc++.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/32mul/libstdc++.a-gdb.py
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/32mul/libsupc++.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/32mul/msp430-sim.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/32mul/msp430.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/32mul/msp430xl-sim.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/crt0-minrt.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/crt0.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/crtn-minrt.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/crtn.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/f5mul/crt0-minrt.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/f5mul/crt0.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/f5mul/crtn-minrt.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/f5mul/crtn.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/f5mul/gcrt0.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/f5mul/intr_vectors.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/f5mul/libc.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/f5mul/libcrt.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/f5mul/libg.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/f5mul/libm.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/f5mul/libnosys.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/f5mul/libsim.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/f5mul/libssp.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/f5mul/libssp_nonshared.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/f5mul/libstdc++.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/f5mul/libstdc++.a-gdb.py
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/f5mul/libsupc++.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/f5mul/msp430-sim.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/f5mul/msp430.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/f5mul/msp430xl-sim.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/gcrt0.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/intr_vectors.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/libc.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/libcrt.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/libg.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/libm.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/libnosys.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/libsim.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/libssp.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/libssp_nonshared.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/libstdc++.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/libstdc++.a-gdb.py
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/libsupc++.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/msp430-sim.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/msp430.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/msp430xl-sim.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/nomul/crt0-minrt.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/nomul/crt0.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/nomul/crtn-minrt.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/nomul/crtn.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/nomul/gcrt0.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/nomul/intr_vectors.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/nomul/libc.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/nomul/libcrt.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/nomul/libg.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/nomul/libm.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/nomul/libnosys.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/nomul/libsim.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/nomul/libssp.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/nomul/libssp_nonshared.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/nomul/libstdc++.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/nomul/libstdc++.a-gdb.py
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/nomul/libsupc++.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/nomul/msp430-sim.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/nomul/msp430.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/large/nomul/msp430xl-sim.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/ldscripts/msp430X.x
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/ldscripts/msp430X.xbn
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/ldscripts/msp430X.xn
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/ldscripts/msp430X.xr
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/ldscripts/msp430X.xu
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/ldscripts/msp430elf.x
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/ldscripts/msp430elf.xbn
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/ldscripts/msp430elf.xn
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/ldscripts/msp430elf.xr
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/ldscripts/msp430elf.xu
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/libc.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/libcrt.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/libg.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/libm.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/libnosys.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/libsim.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/libssp.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/libssp_nonshared.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/libstdc++.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/libstdc++.a-gdb.py
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/libsupc++.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/msp430-sim.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/msp430.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/msp430xl-sim.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/nomul/crt0-minrt.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/nomul/crt0.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/nomul/crtn-minrt.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/nomul/crtn.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/nomul/gcrt0.o
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/nomul/intr_vectors.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/nomul/libc.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/nomul/libcrt.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/nomul/libg.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/nomul/libm.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/nomul/libnosys.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/nomul/libsim.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/nomul/libssp.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/nomul/libssp_nonshared.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/nomul/libstdc++.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/nomul/libstdc++.a-gdb.py
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/nomul/libsupc++.a
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/nomul/msp430-sim.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/nomul/msp430.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/lib/nomul/msp430xl-sim.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/MSP430GCCHeaders_Manifest.html
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/cc430f5123.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/cc430f5123.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/cc430f5125.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/cc430f5125.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/cc430f5133.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/cc430f5133.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/cc430f5135.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/cc430f5135.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/cc430f5137.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/cc430f5137.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/cc430f5143.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/cc430f5143.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/cc430f5145.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/cc430f5145.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/cc430f5147.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/cc430f5147.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/cc430f6125.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/cc430f6125.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/cc430f6126.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/cc430f6126.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/cc430f6127.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/cc430f6127.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/cc430f6135.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/cc430f6135.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/cc430f6137.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/cc430f6137.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/cc430f6143.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/cc430f6143.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/cc430f6145.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/cc430f6145.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/cc430f6147.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/cc430f6147.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/cc430x513x.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/cc430x612x.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/cc430x613x.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/devices.csv
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/in430.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/iomacros.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430afe221.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430afe221.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430afe222.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430afe222.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430afe223.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430afe223.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430afe231.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430afe231.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430afe232.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430afe232.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430afe233.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430afe233.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430afe251.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430afe251.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430afe252.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430afe252.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430afe253.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430afe253.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430bt5190.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430bt5190.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430c091.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430c091.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430c092.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430c092.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430c111.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430c111.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430c1111.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430c1111.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430c112.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430c112.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430c1121.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430c1121.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430c1331.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430c1331.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430c1351.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430c1351.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430c311s.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430c311s.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430c312.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430c312.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430c313.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430c313.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430c314.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430c314.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430c315.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430c315.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430c323.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430c323.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430c325.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430c325.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430c336.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430c336.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430c337.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430c337.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430c412.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430c412.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430c413.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430c413.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430cg4616.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430cg4616.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430cg4617.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430cg4617.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430cg4618.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430cg4618.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430cg4619.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430cg4619.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430e112.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430e112.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430e313.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430e313.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430e315.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430e315.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430e325.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430e325.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430e337.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430e337.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f110.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f110.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f1101.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f1101.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f1101a.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f1101a.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f1111.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f1111.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f1111a.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f1111a.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f112.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f112.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f1121.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f1121.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f1121a.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f1121a.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f1122.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f1122.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f1132.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f1132.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f122.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f122.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f1222.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f1222.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f123.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f123.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f1232.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f1232.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f133.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f133.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f135.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f135.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f147.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f147.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f1471.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f1471.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f148.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f148.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f1481.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f1481.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f149.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f149.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f1491.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f1491.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f155.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f155.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f156.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f156.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f157.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f157.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f1610.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f1610.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f1611.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f1611.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f1612.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f1612.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f167.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f167.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f168.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f168.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f169.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f169.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2001.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2001.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2002.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2002.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2003.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2003.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2011.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2011.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2012.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2012.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2013.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2013.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2101.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2101.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2111.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2111.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2112.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2112.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2121.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2121.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2122.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2122.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2131.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2131.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2132.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2132.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2232.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2232.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2234.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2234.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2252.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2252.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2254.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2254.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2272.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2272.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2274.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2274.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f233.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f233.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2330.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2330.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f235.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f235.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2350.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2350.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2370.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2370.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2410.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2410.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2416.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2416.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2417.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2417.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2418.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2418.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2419.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2419.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f247.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f247.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2471.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2471.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f248.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f248.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2481.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2481.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f249.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f249.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2491.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2491.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2616.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2616.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2617.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2617.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2618.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2618.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2619.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f2619.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f412.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f412.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f413.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f413.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f4132.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f4132.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f415.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f415.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f4152.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f4152.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f417.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f417.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f423.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f423.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f423a.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f423a.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f425.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f425.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f4250.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f4250.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f425a.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f425a.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f4260.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f4260.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f427.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f427.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f4270.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f4270.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f427a.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f427a.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f435.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f435.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f4351.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f4351.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f436.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f436.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f4361.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f4361.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f437.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f437.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f4371.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f4371.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f438.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f438.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f439.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f439.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f447.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f447.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f448.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f448.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f4481.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f4481.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f449.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f449.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f4491.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f4491.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f4616.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f4616.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f46161.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f46161.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f4617.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f4617.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f46171.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f46171.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f4618.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f4618.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f46181.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f46181.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f4619.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f4619.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f46191.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f46191.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f47126.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f47126.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f47127.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f47127.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f47163.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f47163.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f47166.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f47166.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f47167.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f47167.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f47173.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f47173.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f47176.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f47176.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f47177.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f47177.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f47183.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f47183.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f47186.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f47186.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f47187.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f47187.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f47193.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f47193.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f47196.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f47196.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f47197.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f47197.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f477.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f477.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f478.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f478.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f4783.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f4783.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f4784.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f4784.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f479.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f479.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f4793.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f4793.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f4794.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f4794.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5131.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5131.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5132.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5132.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5151.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5151.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5152.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5152.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5171.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5171.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5172.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5172.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5212.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5212.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5213.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5213.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5214.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5214.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5217.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5217.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5218.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5218.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5219.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5219.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5222.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5222.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5223.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5223.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5224.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5224.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5227.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5227.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5228.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5228.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5229.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5229.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5232.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5232.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5234.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5234.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5237.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5237.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5239.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5239.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5242.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5242.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5244.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5244.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5247.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5247.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5249.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5249.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5252.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5252.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5253.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5253.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5254.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5254.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5255.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5255.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5256.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5256.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5257.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5257.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5258.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5258.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5259.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5259.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5304.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5304.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5308.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5308.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5309.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5309.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5310.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5310.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5324.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5324.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5325.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5325.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5326.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5326.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5327.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5327.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5328.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5328.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5329.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5329.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5333.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5333.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5335.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5335.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5336.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5336.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5338.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5338.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5340.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5340.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5341.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5341.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5342.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5342.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5358.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5358.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5359.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5359.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5418.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5418.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5418a.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5418a.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5419.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5419.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5419a.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5419a.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5435.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5435.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5435a.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5435a.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5436.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5436.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5436a.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5436a.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5437.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5437.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5437a.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5437a.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5438.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5438.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5438a.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5438a.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5500.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5500.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5501.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5501.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5502.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5502.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5503.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5503.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5504.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5504.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5505.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5505.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5506.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5506.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5507.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5507.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5508.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5508.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5509.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5509.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5510.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5510.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5513.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5513.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5514.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5514.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5515.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5515.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5517.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5517.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5519.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5519.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5521.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5521.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5522.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5522.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5524.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5524.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5525.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5525.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5526.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5526.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5527.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5527.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5528.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5528.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5529.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5529.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5630.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5630.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5631.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5631.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5632.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5632.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5633.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5633.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5634.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5634.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5635.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5635.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5636.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5636.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5637.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5637.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5638.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5638.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5658.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5658.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5659.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5659.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5xx_6xxgeneric.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f5xx_6xxgeneric.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6433.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6433.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6435.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6435.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6436.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6436.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6438.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6438.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6458.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6458.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6459.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6459.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6630.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6630.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6631.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6631.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6632.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6632.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6633.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6633.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6634.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6634.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6635.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6635.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6636.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6636.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6637.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6637.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6638.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6638.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6658.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6658.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6659.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6659.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6720.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6720.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6720a.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6720a.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6721.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6721.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6721a.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6721a.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6723.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6723.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6723a.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6723a.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6724.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6724.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6724a.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6724a.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6725.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6725.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6725a.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6725a.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6726.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6726.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6726a.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6726a.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6730.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6730.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6730a.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6730a.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6731.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6731.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6731a.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6731a.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6733.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6733.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6733a.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6733a.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6734.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6734.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6734a.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6734a.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6735.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6735.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6735a.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6735a.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6736.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6736.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6736a.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6736a.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6745.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6745.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67451.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67451.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67451a.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67451a.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6745a.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6745a.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6746.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6746.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67461.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67461.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67461a.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67461a.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6746a.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6746a.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6747.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6747.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67471.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67471.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67471a.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67471a.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6747a.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6747a.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6748.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6748.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67481.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67481.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67481a.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67481a.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6748a.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6748a.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6749.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6749.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67491.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67491.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67491a.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67491a.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6749a.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6749a.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67621.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67621.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67621a.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67621a.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67641.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67641.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67641a.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67641a.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6765.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6765.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67651.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67651.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67651a.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67651a.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6765a.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6765a.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6766.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6766.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67661.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67661.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67661a.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67661a.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6766a.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6766a.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6767.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6767.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67671.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67671.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67671a.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67671a.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6767a.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6767a.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6768.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6768.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67681.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67681.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67681a.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67681a.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6768a.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6768a.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6769.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6769.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67691.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67691.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67691a.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67691a.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6769a.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6769a.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6775.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6775.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67751.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67751.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67751a.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67751a.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6775a.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6775a.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6776.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6776.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67761.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67761.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67761a.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67761a.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6776a.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6776a.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6777.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6777.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67771.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67771.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67771a.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67771a.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6777a.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6777a.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6778.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6778.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67781.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67781.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67781a.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67781a.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6778a.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6778a.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6779.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6779.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67791.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67791.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67791a.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f67791a.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6779a.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430f6779a.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fe423.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fe423.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fe4232.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fe4232.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fe423a.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fe423a.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fe4242.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fe4242.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fe425.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fe425.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fe4252.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fe4252.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fe425a.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fe425a.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fe427.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fe427.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fe4272.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fe4272.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fe427a.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fe427a.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fg4250.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fg4250.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fg4260.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fg4260.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fg4270.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fg4270.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fg437.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fg437.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fg438.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fg438.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fg439.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fg439.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fg4616.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fg4616.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fg4617.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fg4617.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fg4618.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fg4618.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fg4619.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fg4619.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fg477.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fg477.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fg478.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fg478.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fg479.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fg479.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fg6425.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fg6425.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fg6426.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fg6426.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fg6625.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fg6625.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fg6626.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fg6626.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr2032.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr2032.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr2033.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr2033.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr2433.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr2433.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr2xx_4xxgeneric.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr2xx_4xxgeneric.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr4131.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr4131.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr4132.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr4132.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr4133.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr4133.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5720.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5720.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5721.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5721.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5722.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5722.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5723.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5723.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5724.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5724.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5725.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5725.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5726.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5726.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5727.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5727.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5728.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5728.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5729.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5729.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5730.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5730.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5731.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5731.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5732.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5732.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5733.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5733.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5734.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5734.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5735.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5735.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5736.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5736.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5737.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5737.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5738.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5738.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5739.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5739.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr57xxgeneric.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr57xxgeneric.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5847.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5847.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr58471.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr58471.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5848.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5848.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5849.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5849.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5857.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5857.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5858.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5858.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5859.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5859.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5867.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5867.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr58671.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr58671.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5868.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5868.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5869.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5869.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5870.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5870.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5872.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5872.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr58721.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr58721.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5887.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5887.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5888.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5888.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5889.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5889.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr58891.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr58891.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5922.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5922.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr59221.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr59221.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5947.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5947.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr59471.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr59471.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5948.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5948.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5949.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5949.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5957.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5957.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5958.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5958.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5959.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5959.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5967.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5967.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5968.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5968.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5969.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5969.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr59691.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr59691.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5970.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5970.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5972.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5972.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr59721.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr59721.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5986.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5986.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5987.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5987.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5988.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5988.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5989.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5989.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr59891.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr59891.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5xx_6xxgeneric.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr5xx_6xxgeneric.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr6820.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr6820.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr6822.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr6822.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr68221.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr68221.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr6870.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr6870.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr6872.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr6872.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr68721.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr68721.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr6877.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr6877.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr6879.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr6879.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr68791.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr68791.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr6887.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr6887.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr6888.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr6888.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr6889.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr6889.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr68891.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr68891.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr6920.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr6920.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr6922.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr6922.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr69221.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr69221.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr6927.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr6927.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr69271.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr69271.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr6928.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr6928.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr6970.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr6970.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr6972.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr6972.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr69721.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr69721.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr6977.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr6977.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr6979.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr6979.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr69791.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr69791.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr6987.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr6987.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr6988.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr6988.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr6989.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr6989.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr69891.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fr69891.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fw423.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fw423.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fw425.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fw425.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fw427.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fw427.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fw428.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fw428.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fw429.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430fw429.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2001.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2001.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2101.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2101.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2102.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2102.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2111.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2111.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2112.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2112.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2113.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2113.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2121.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2121.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2131.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2131.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2132.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2132.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2152.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2152.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2153.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2153.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2201.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2201.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2202.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2202.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2203.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2203.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2210.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2210.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2211.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2211.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2212.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2212.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2213.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2213.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2221.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2221.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2230.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2230.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2231.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2231.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2232.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2232.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2233.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2233.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2252.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2252.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2253.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2253.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2302.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2302.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2303.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2303.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2312.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2312.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2313.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2313.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2332.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2332.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2333.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2333.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2352.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2352.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2353.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2353.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2402.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2402.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2403.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2403.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2412.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2412.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2413.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2413.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2432.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2432.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2433.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2433.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2444.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2444.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2452.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2452.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2453.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2453.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2513.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2513.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2533.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2533.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2544.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2544.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2553.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2553.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2744.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2744.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2755.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2755.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2855.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2855.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2955.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430g2955.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430i2020.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430i2020.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430i2021.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430i2021.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430i2030.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430i2030.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430i2031.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430i2031.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430i2040.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430i2040.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430i2041.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430i2041.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430i2xxgeneric.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430i2xxgeneric.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430l092.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430l092.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430p112.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430p112.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430p313.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430p313.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430p315.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430p315.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430p315s.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430p315s.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430p325.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430p325.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430p337.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430p337.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430sl5438a.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430sl5438a.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430tch5e.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430tch5e.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430x09x.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430x11x.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430x11x1.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430x11x2.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430x12x.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430x12x2.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430x13x.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430x13x1.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430x14x.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430x14x1.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430x15x.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430x16x.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430x20x1.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430x20x2.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430x20x3.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430x21x1.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430x21x2.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430x22x2.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430x22x4.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430x23x.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430x23x0.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430x241x.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430x24x.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430x24x1.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430x26x.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430x31x.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430x32x.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430x33x.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430x415.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430x417.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430x41x.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430x41x2.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430x42x.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430x42x0.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430x43x.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430x43x1.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430x44x.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430x44x1.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430x461x1.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430x46x.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430x471x3.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430x471x6.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430x471x7.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430x47x.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430x47x3.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430x47x4.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430x54x.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430x54xa.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430x551x.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430x552x.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430xe42x.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430xe42x2.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430xe42xa.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430xg42x0.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430xg43x.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430xg46x.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430xg47x.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430xgeneric.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430xgeneric.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/msp430xw42x.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/rf430f5144.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/rf430f5144.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/rf430f5155.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/rf430f5155.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/rf430f5175.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/rf430f5175.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/rf430frl152h.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/rf430frl152h.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/rf430frl152h_rom.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/rf430frl152h_rom.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/rf430frl153h.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/rf430frl153h.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/rf430frl153h_rom.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/rf430frl153h_rom.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/rf430frl154h.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/rf430frl154h.ld
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/rf430frl154h_rom.h
+gcc-msp430-ti-toolchain-%%TI_VERSION%%/include/rf430frl154h_rom.ld
+@dir gcc-msp430-ti-toolchain-%%TI_VERSION%%/lib/tk8.4
+@dir gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/bits
+@dir gcc-msp430-ti-toolchain-%%TI_VERSION%%/%%TARGET%%/include/rpc
diff --git a/devel/msp430-binutils/Makefile b/devel/msp430-binutils/Makefile
index 06c8d1e9f8fd..f2de315e9433 100644
--- a/devel/msp430-binutils/Makefile
+++ b/devel/msp430-binutils/Makefile
@@ -21,6 +21,9 @@ COMMENT= GNU binutils for TI's msp430 MCUs cross-development
LICENSE= GPLv3
+DEPRECATED= Obsolete. Please, use devel/gcc-msp430-ti-toolchain
+EXPIRATION_DATE= 2016-01-08
+
BINUTILVERSION= 2.21.1a
LTSVERSION= 20120406
PATCHVERSION= 20120406
diff --git a/devel/msp430-gcc/Makefile b/devel/msp430-gcc/Makefile
index 6cd94fb94153..e09120b74f87 100644
--- a/devel/msp430-gcc/Makefile
+++ b/devel/msp430-gcc/Makefile
@@ -23,6 +23,9 @@ COMMENT= FSF GCC 4.6 for TI's msp430 MCUs cross-development
LICENSE= GPLv3
+DEPRECATED= Obsolete. Please, use devel/gcc-msp430-ti-toolchain
+EXPIRATION_DATE= 2016-01-08
+
BUILD_DEPENDS= ${PKGNAMEPREFIX}as:${PORTSDIR}/devel/${PKGNAMEPREFIX}binutils \
${PKGNAMEPREFIX}ld:${PORTSDIR}/devel/${PKGNAMEPREFIX}binutils
RUN_DEPENDS= ${PKGNAMEPREFIX}as:${PORTSDIR}/devel/${PKGNAMEPREFIX}binutils \
diff --git a/devel/msp430-gdb/Makefile b/devel/msp430-gdb/Makefile
index 595baca5b63b..dce061e13b29 100644
--- a/devel/msp430-gdb/Makefile
+++ b/devel/msp430-gdb/Makefile
@@ -16,6 +16,9 @@ COMMENT= FSF GDB for TI's msp430 MCUs cross-development
LICENSE= GPLv3
+DEPRECATED= Obsolete. Please, use devel/gcc-msp430-ti-toolchain
+EXPIRATION_DATE= 2016-01-08
+
GDBVERSION= 7.2
LTSVERSION= 20110716
PATCHVERSION= 20110103
diff --git a/devel/msp430-libc/Makefile b/devel/msp430-libc/Makefile
index 327fd9d183cd..d1d56f174d94 100644
--- a/devel/msp430-libc/Makefile
+++ b/devel/msp430-libc/Makefile
@@ -19,6 +19,9 @@ COMMENT= Libc for TI's msp430 MCUs cross-development
LICENSE= BSD2CLAUSE BSD3CLAUSE BSD4CLAUSE
LICENSE_COMB= multi
+DEPRECATED= Obsolete. Please, use devel/gcc-msp430-ti-toolchain
+EXPIRATION_DATE= 2016-01-08
+
BUILD_DEPENDS= ${LOCALBASE}/${LIBCTARGET}/include/${LIBCTARGET}.h:${PORTSDIR}/devel/${LIBCTARGET}mcu \
${PKGNAMEPREFIX}gcc:${PORTSDIR}/devel/${PKGNAMEPREFIX}gcc
RUN_DEPENDS= ${LOCALBASE}/${LIBCTARGET}/include/${LIBCTARGET}.h:${PORTSDIR}/devel/${LIBCTARGET}mcu \
diff --git a/devel/msp430mcu/Makefile b/devel/msp430mcu/Makefile
index 69d5fa671e8a..c332cd48efb3 100644
--- a/devel/msp430mcu/Makefile
+++ b/devel/msp430mcu/Makefile
@@ -18,6 +18,9 @@ COMMENT= Header files for TI's msp430 MCUs cross-development
LICENSE= BSD3CLAUSE
LICENSE_FILE= ${WRKSRC}/COPYING
+DEPRECATED= Obsolete. Please, use devel/gcc-msp430-ti-toolchain
+EXPIRATION_DATE= 2016-01-08
+
LTSVERSION= 20120406
MCUVERSION= 20120406
MCUTARGET= msp430