summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--000.fetch_git.build8
l---------001.binutils.host.build1
l---------002.gcc.stage1.build1
-rw-r--r--003.psxstub.build10
l---------004.musl.no-complex.build1
l---------005.gcc.runtime.build1
-rw-r--r--006.musl.build47
-rw-r--r--007.gcc.full.build133
-rw-r--r--100.perk.build38
-rw-r--r--101.gmp.build69
l---------102.mpfr.build1
l---------103.mpc.build1
l---------104.libelf.build1
l---------105.binutils.build1
l---------106.musl.native.build1
l---------107.gcc.native.build1
-rw-r--r--200.coreutils.build62
l---------201.diffutils.build1
l---------202.findutils.build1
l---------203.patch.build1
l---------204.gawk.build1
l---------205.bash.build1
l---------206.make.build1
-rw-r--r--207.libz.build45
l---------208.gzip.build1
l---------209.grep.build1
l---------210.sed.build1
-rw-r--r--LICENSE21
-rw-r--r--build.log4836
-rwxr-xr-xbuild.sh43
-rw-r--r--build.subr101
-rw-r--r--build.vars36
32 files changed, 5468 insertions, 0 deletions
diff --git a/000.fetch_git.build b/000.fetch_git.build
new file mode 100644
index 00000000..d51583c7
--- /dev/null
+++ b/000.fetch_git.build
@@ -0,0 +1,8 @@
+# Git clone what we need.
+fetch_git cbb-gcc-${GCC_VERSION} "${GITROOT}/cbb/cbb-gcc-${GCC_VERSION}";
+fetch_git lazy "${GITROOT}/lazy";
+fetch_git mmglue "${GITROOT}/mmglue";
+fetch_git portage "${GITROOT}/ports/portage";
+fetch_git psxstub "${GITROOT}/psxstub";
+
+# vim:filetype=sh
diff --git a/001.binutils.host.build b/001.binutils.host.build
new file mode 120000
index 00000000..f22e447c
--- /dev/null
+++ b/001.binutils.host.build
@@ -0,0 +1 @@
+200.coreutils.build \ No newline at end of file
diff --git a/002.gcc.stage1.build b/002.gcc.stage1.build
new file mode 120000
index 00000000..27fad429
--- /dev/null
+++ b/002.gcc.stage1.build
@@ -0,0 +1 @@
+007.gcc.full.build \ No newline at end of file
diff --git a/003.psxstub.build b/003.psxstub.build
new file mode 100644
index 00000000..37d4fcdd
--- /dev/null
+++ b/003.psxstub.build
@@ -0,0 +1,10 @@
+if is_build_script_done finished; then
+ exit 212;
+elif [ "${TARGET}" = "i686-nt32-midipix" ]\
+|| [ "${TARGET}" = "x86_64-nt64-midipix" ]; then
+ cd psxstub;
+ make ${MAKEFLAGS} DESTDIR="${PREFIX_TARGET}" TARGET="${TARGET}" install;
+ set_build_script_done finished;
+fi;
+
+# vim:filetype=sh
diff --git a/004.musl.no-complex.build b/004.musl.no-complex.build
new file mode 120000
index 00000000..6e7a82b0
--- /dev/null
+++ b/004.musl.no-complex.build
@@ -0,0 +1 @@
+006.musl.build \ No newline at end of file
diff --git a/005.gcc.runtime.build b/005.gcc.runtime.build
new file mode 120000
index 00000000..27fad429
--- /dev/null
+++ b/005.gcc.runtime.build
@@ -0,0 +1 @@
+007.gcc.full.build \ No newline at end of file
diff --git a/006.musl.build b/006.musl.build
new file mode 100644
index 00000000..8868c63a
--- /dev/null
+++ b/006.musl.build
@@ -0,0 +1,47 @@
+export lz_arch="${ARCH}" lz_cflags_debug="-O2" lz_target="${TARGET}";
+
+if is_build_script_done finished; then
+ exit 212;
+elif [ "x${3}" = "xno-complex" ]; then
+ # Musl: build (no-complex)
+ _install="install_no_complex";
+ set_build_dir "musl-${MUSL_VERSION}" "${TARGET}-${3}";
+ fetch "http://www.musl-libc.org/releases/musl-${MUSL_VERSION}.tar.gz";
+ if ! is_build_script_done extracted; then
+ rm_if_exists "musl-${MUSL_VERSION}";
+ tar -xf "musl-${MUSL_VERSION}.tar.gz";
+ cp -R mmglue/* "musl-${MUSL_VERSION}/";
+ set_build_script_done extracted -configured;
+ fi;
+elif [ "x${3}" = "xnative" ]; then
+ # Musl: build (full)
+ _destdir="${PREFIX_NATIVE}";
+ _install="install";
+ set_build_dir "musl-${MUSL_VERSION}" "${3}";
+else
+ # Musl: build (full)
+ _install="install";
+ set_build_dir "musl-${MUSL_VERSION}" "${TARGET}";
+fi;
+if ! is_build_script_done configured; then
+ rm_if_exists -m -c "${_build_dir}";
+ ../lazy/lazy \
+ -a "${ARCH}" \
+ -c gcc \
+ -f "${_destdir:-${PREFIX_TARGET}}" \
+ -n musl \
+ -p "../musl-${MUSL_VERSION}" \
+ -t "${lz_target}" \
+ -x config;
+ set_build_script_done configured -built;
+else
+ cd "${_build_dir}";
+fi;
+if ! is_build_script_done built; then
+ ./lazy \
+ -e "${_install}" \
+ -x build;
+ set_build_script_done built finished;
+fi;
+
+# vim:filetype=sh
diff --git a/007.gcc.full.build b/007.gcc.full.build
new file mode 100644
index 00000000..ea9a3bc1
--- /dev/null
+++ b/007.gcc.full.build
@@ -0,0 +1,133 @@
+# Order: stage1, runtime, full, native
+
+if is_build_script_done finished; then
+ exit 212;
+elif [ "x${3}" = "xruntime" ]\
+|| [ "x${3}" = "xfull" ]; then
+ export CFLAGS="${GCCFLAGS}" CXXFLAGS="${GCCFLAGS}";
+ set_build_dir "cbb-gcc-${GCC_VERSION}" "${TARGET}";
+ cd "${_build_dir}";
+ if [ "x${3}" = "xruntime" ]; then
+ # GCC, compiler runtime.
+ if ! is_build_script_done built; then
+ make ${MAKEFLAGS} all-target-libgcc;
+ set_build_script_done built -installed;
+ fi;
+ if ! is_build_script_done installed; then
+ make ${MAKEFLAGS} install-target-libgcc;
+ set_build_script_done installed finished;
+ fi;
+ elif [ "x${3}" = "xfull" ]; then
+ # GCC, everything else.
+ if ! is_build_script_done built1; then
+ make ${MAKEFLAGS} all-target-libstdc++-v3;
+ set_build_script_done built1 -installed1;
+ fi;
+ if ! is_build_script_done installed1; then
+ make ${MAKEFLAGS} install-target-libstdc++-v3;
+ set_build_script_done installed1 -built2;
+ fi;
+ if ! is_build_script_done built2; then
+ make ${MAKEFLAGS};
+ set_build_script_done built2 -installed2;
+ fi;
+ if ! is_build_script_done installed2; then
+ make ${MAKEFLAGS} install;
+ set_build_script_done installed2 finished;
+ fi;
+ fi;
+else
+ if [ "x${3}" = "xstage1" ]; then
+ # GCC, stage1.
+ set_build_dir "cbb-gcc-${GCC_VERSION}" "${TARGET}";
+ export cbb_ldflags_for_target="--sysroot=${PREFIX_TARGET}" \
+ cbb_sysroot_for_libgcc="${PREFIX_TARGET}" \
+ cbb_target="${TARGET}" \
+ cbb_neutral_libiberty="no" \
+ cbb_xgcc_for_specs="${WORKDIR}/${_build_dir}/gcc/xgcc";
+ GCCTARGET_FLAGS="-DIN_TARGET_LIBRARY_BUILD --sysroot=${PREFIX_TARGET}";
+ elif [ "x${3}" = "xnative" ]; then
+ # GCC, native.
+ set_build_dir "cbb-gcc-${GCC_VERSION}" "native";
+ export cbb_ldflags_for_target="--sysroot=${PREFIX_NATIVE}" \
+ cbb_sysroot_for_libgcc="${PREFIX_NATIVE}" \
+ cbb_target="${TARGET}" \
+ cbb_xgcc_for_specs="${TARGET}-gcc";
+ GCCTARGET_FLAGS="-DIN_TARGET_LIBRARY_BUILD --sysroot=${PREFIX_NATIVE}";
+ fi;
+ GCCFLAGS="${CFLAGS:+${CFLAGS} }--include $(readlink -f ${WORKDIR}/cbb-gcc-${GCC_VERSION}/libc/cbb-musl-pe.h)";
+ set_env_vars "${GCCFLAGS}" CFLAGS CFLAGS_FOR_BUILD CPPFLAGS_FOR_BUILD CXXFLAGS CXXFLAGS_FOR_BUILD;
+ set_env_vars "${CFLAGS_FOR_BUILD}" cbb_cflags_for_stage1 cbb_cflags_for_stage2 cbb_cflags_for_stage3 cbb_cflags_for_stage4;
+ set_env_vars "${GCCTARGET_FLAGS}" CFLAGS_FOR_TARGET CPPFLAGS_FOR_TARGET CXXFLAGS_FOR_TARGET LIBCFLAGS_FOR_TARGET XGCC_FLAGS_FOR_TARGET;
+ export CFLAGS CXXFLAGS CFLAGS_FOR_BUILD CPPFLAGS_FOR_BUILD CXXFLAGS_FOR_BUILD CFLAGS_FOR_TARGET XGCC_FLAGS_FOR_TARGET CPPFLAGS_FOR_TARGET CXXFLAGS_FOR_TARGET LIBCFLAGS_FOR_TARGET;
+ if ! is_build_script_done configured; then
+ if [ "x${3}" = "xstage1" ]; then
+ mkdir -p "${PREFIX_TARGET}/include";
+ [ \! -d "${PREFIX_TARGET}/usr" ] && \
+ ln -s . "${PREFIX_TARGET}/usr";
+ _configure_args="--prefix=${PREFIX} --with-sysroot=${PREFIX_TARGET}";
+ elif [ "x${3}" = "xnative" ]; then
+ mkdir -p "${PREFIX_NATIVE}/${TARGET}";
+ if [ \! -d "${PREFIX_NATIVE}/${TARGET}/usr" ]; then
+ ln -s . "${PREFIX_NATIVE}/${TARGET}/usr";
+ fi;
+ _configure_args=" \
+ --host=x86_64-nt64-midipix \
+ --prefix=/ \
+ --with-elf=${PREFIX_NATIVE} \
+ --with-gmp=${PREFIX_NATIVE} \
+ --with-mpc=${PREFIX_NATIVE} \
+ --with-mpfr=${PREFIX_NATIVE} \
+ --with-sysroot=";
+ fi;
+ rm_if_exists -m -c "${_build_dir}";
+ "../cbb-gcc-${GCC_VERSION}/configure" \
+ --disable-bootstrap \
+ --disable-libmudflap \
+ --disable-multilib \
+ --disable-nls \
+ --disable-obsolete \
+ --disable-sjlj-exceptions \
+ --disable-symvers \
+ --enable-canonical-system-headers \
+ --enable-__cxa_atexit \
+ --enable-debug \
+ --enable-gnu-indirect-function \
+ --enable-gnu-unique-object \
+ --enable-initfini-array \
+ --enable-languages=c,c++,objc,lto \
+ --enable-libstdcxx-debug \
+ --enable-lto \
+ --enable-multiarch \
+ --enable-secureplt \
+ --enable-shared \
+ --enable-threads=posix \
+ --target=${TARGET} \
+ --with-fpmath=sse \
+ ${_configure_args};
+ set_build_script_done configured -built;
+ else
+ cd "${_build_dir}";
+ fi;
+ if ! is_build_script_done built; then
+ if [ "x${3}" = "xstage1" ]; then
+ make ${MAKEFLAGS} all-gcc;
+ elif [ "x${3}" = "xnative" ]; then
+ make -j18 all-gcc;
+ make -j18 all-target-libgcc;
+ make -j18 all-target-libstdc++-v3;
+ make -j18 all;
+ fi;
+ set_build_script_done built -installed;
+ fi;
+ if ! is_build_script_done installed; then
+ if [ "x${3}" = "xstage1" ]; then
+ make ${MAKEFLAGS} install-gcc;
+ elif [ "x${3}" = "xnative" ]; then
+ make -j18 DESTDIR="${PREFIX_NATIVE}" install;
+ fi;
+ set_build_script_done installed finished;
+ fi;
+fi;
+
+# vim:filetype=sh
diff --git a/100.perk.build b/100.perk.build
new file mode 100644
index 00000000..8ad9c101
--- /dev/null
+++ b/100.perk.build
@@ -0,0 +1,38 @@
+if is_build_script_done finished; then
+ exit 212;
+else
+ fetch_git perk "${GITROOT}/perk";
+fi;
+if ! is_build_script_done configured1; then
+ rm_if_exists -m -c perk-build;
+ ../perk/configure;
+ set_build_script_done configured1 -built1;
+else
+ cd perk-build;
+fi;
+if ! is_build_script_done built1; then
+ make;
+ set_build_script_done built1 -installed1;
+fi;
+if ! is_build_script_done installed1; then
+ make DESTDIR="${PREFIX}" install;
+ set_build_script_done installed1 -configured2;
+fi;
+if ! is_build_script_done configured2; then
+ rm_if_exists -m "../perk-build-${TARGET}";
+ cd "../perk-build-${TARGET}";
+ ../perk/configure --target="${TARGET}";
+ set_build_script_done configured2 -built2;
+else
+ cd "../perk-build-${TARGET}";
+fi;
+if ! is_build_script_done built2; then
+ make;
+ set_build_script_done built2 -installed2;
+fi;
+if ! is_build_script_done installed2; then
+ make DESTDIR="${PREFIX_NATIVE}" install;
+ set_build_script_done installed2 finished;
+fi;
+
+# vim:filetype=sh
diff --git a/101.gmp.build b/101.gmp.build
new file mode 100644
index 00000000..5998eb94
--- /dev/null
+++ b/101.gmp.build
@@ -0,0 +1,69 @@
+libelf_install_post() {
+ echo EXPORTS >| lib/libelf.def || return 1;
+ perk -e lib/libelf.so >> lib/libelf.def || return 2;
+ "${HOST_NATIVE}-dlltool" \
+ --output-lib lib/libelf.lib.a \
+ --dllname libelf.so \
+ --input-def lib/libelf.def || return 3;
+ cp lib/libelf.lib.a "${PREFIX}/lib" || return 4;
+};
+
+parse_with_pkg_name "${2}" \
+ "https://gmplib.org/download/gmp/gmp-${GMP_VERSION}.tar.bz2" \
+ "_configure_extra_args=--disable-assembly:_prefix_extra=${PREFIX_TARGET}" \
+ "ftp://ftp.gnu.org/gnu/mpfr/mpfr-${MPFR_VERSION}.tar.bz2" \
+ "_configure_extra_args=--with-gmp=${PREFIX_NATIVE}:_prefix_extra=${PREFIX_TARGET}" \
+ "ftp://ftp.gnu.org/gnu/mpc/mpc-${MPC_VERSION}.tar.gz" \
+ "_configure_extra_args=--with-gmp=${PREFIX_NATIVE},--with-mpfr=${PREFIX_NATIVE}:_prefix_extra=${PREFIX_TARGET}"\
+ "http://www.mr511.de/software/libelf-${LIBELF_VERSION}.tar.gz" \
+ "_no_libtool_midipix=1:_prefix=${PREFIX_NATIVE}:CC=${HOST_NATIVE}-gcc:DESTDIR=" \
+ "ftp://sourceware.org/pub/binutils/snapshots/binutils-${BINUTILS_VERSION}.tar.bz2" \
+ "_configure_extra_args=--with-libelf=${PREFIX_NATIVE},--with-gmp=${PREFIX_NATIVE},--with-mpc=${PREFIX_NATIVE},--with-mpfr=${PREFIX_NATIVE},--with-sysroot=/";
+
+if is_build_script_done finished; then
+ exit 212;
+else
+ fetch "${_pkg_url}";
+fi;
+if ! is_build_script_done extracted; then
+ rm_if_exists "${_pkg_subdir}";
+ tar -axf "${_pkg_fname}";
+ set_build_script_done extracted -patched;
+fi;
+if ! is_build_script_done patched; then
+ patch -d "${_pkg_subdir}" -p1 \
+ < "portage/${_pkg_subdir}.midipix.patch";
+ if [ ${_no_libtool_midipix:-0} -eq 0 ]; then
+ cp portage/libtool.midipix "${_pkg_subdir}/";
+ fi;
+ set_build_script_done patched -configured;
+fi;
+if ! is_build_script_done configured; then
+ rm_if_exists -c -m "${_pkg_subdir}-build-native${3:+-${3}}";
+ run_configure_with_extra_args \
+ "../${_pkg_subdir}/configure" \
+ "${_configure_extra_args}" \
+ --host="${HOST_NATIVE}" \
+ --prefix=${_prefix:-/} \
+ --target="${TARGET}";
+ set_build_script_done configured -built;
+else
+ cd "${_pkg_subdir}-build-native${3:+-${3}}";
+fi;
+if ! is_build_script_done built; then
+ make;
+ set_build_script_done configured built -installed1;
+fi;
+if ! is_build_script_done installed1; then
+ make DESTDIR="${PREFIX_NATIVE}" install;
+ set_build_script_done configured installed1 -installed2 -finished;
+fi;
+if [ -n "${_prefix_extra}" ]; then
+ if ! is_build_script_done installed2; then
+ make DESTDIR="${_prefix_extra}" install;
+ set_build_script_done configured installed2 -finished;
+ fi;
+fi;
+set_build_script_done finished;
+
+# vim:filetype=sh
diff --git a/102.mpfr.build b/102.mpfr.build
new file mode 120000
index 00000000..c9048e09
--- /dev/null
+++ b/102.mpfr.build
@@ -0,0 +1 @@
+101.gmp.build \ No newline at end of file
diff --git a/103.mpc.build b/103.mpc.build
new file mode 120000
index 00000000..c9048e09
--- /dev/null
+++ b/103.mpc.build
@@ -0,0 +1 @@
+101.gmp.build \ No newline at end of file
diff --git a/104.libelf.build b/104.libelf.build
new file mode 120000
index 00000000..c9048e09
--- /dev/null
+++ b/104.libelf.build
@@ -0,0 +1 @@
+101.gmp.build \ No newline at end of file
diff --git a/105.binutils.build b/105.binutils.build
new file mode 120000
index 00000000..c9048e09
--- /dev/null
+++ b/105.binutils.build
@@ -0,0 +1 @@
+101.gmp.build \ No newline at end of file
diff --git a/106.musl.native.build b/106.musl.native.build
new file mode 120000
index 00000000..6e7a82b0
--- /dev/null
+++ b/106.musl.native.build
@@ -0,0 +1 @@
+006.musl.build \ No newline at end of file
diff --git a/107.gcc.native.build b/107.gcc.native.build
new file mode 120000
index 00000000..27fad429
--- /dev/null
+++ b/107.gcc.native.build
@@ -0,0 +1 @@
+007.gcc.full.build \ No newline at end of file
diff --git a/200.coreutils.build b/200.coreutils.build
new file mode 100644
index 00000000..95007067
--- /dev/null
+++ b/200.coreutils.build
@@ -0,0 +1,62 @@
+export CFLAGS="${CFLAGS_PACKAGES}";
+parse_with_pkg_name "${2}" \
+ "ftp://ftp.gnu.org/gnu/coreutils/coreutils-${COREUTILS}.tar.xz" "" \
+ "ftp://ftp.gnu.org/gnu/diffutils/diffutils-${DIFFUTILS}.tar.xz" "" \
+ "http://alpha.gnu.org/gnu/findutils/findutils-${FINDUTILS}.tar.gz" \
+ "CFLAGS=${CFLAGS:+${CFLAGS} }-Dendpwent=setpwent" \
+ "ftp://ftp.gnu.org/gnu/patch/patch-${PATCH}.tar.gz" "" \
+ "ftp://ftp.gnu.org/gnu/gawk/gawk-${GAWK}.tar.xz" "" \
+ "ftp://ftp.gnu.org/gnu/bash/bash-${BASH}.tar.gz" \
+ "_configure_extra_args=--without-bash-malloc" \
+ "ftp://ftp.gnu.org/gnu/make/make-${MAKE}.tar.bz2" "" \
+ "ftp://ftp.gnu.org/gnu/grep/grep-${GREP}.tar.xz" "" \
+ "ftp://ftp.gnu.org/gnu/grep/grep-${GREP}.tar.xz" "" \
+ "ftp://ftp.gnu.org/gnu/sed/sed-${SED}.tar.bz2" "" \
+ "ftp://sourceware.org/pub/binutils/snapshots/binutils-${BINUTILS_VERSION}.tar.bz2" "";
+
+if is_build_script_done finished; then
+ exit 212;
+else
+ fetch "${_pkg_url}";
+ if [ "${_pkg_name}" = "binutils" ]\
+ && [ "${3}" = "host" ]; then
+ _configure_args="--disable-werror,--prefix=${PREFIX},--with-sysroot=${PREFIX_TARGET}";
+ _no_config_cache=${_no_prefix:=1}; _target="${TARGET}";
+ else
+ _configure_args="-C,--host=${HOST_NATIVE},--prefix=";
+ fi;
+fi;
+if ! is_build_script_done extracted; then
+ rm_if_exists "${_pkg_subdir}";
+ tar -axf "${_pkg_fname}";
+ set_build_script_done extracted -patched;
+fi;
+if ! is_build_script_done patched; then
+ patch -d "${_pkg_subdir}" -p1 \
+ < "portage/${_pkg_subdir}.midipix.patch";
+ set_build_script_done patched -configured;
+fi;
+if ! is_build_script_done configured; then
+ rm_if_exists -c -m "${_pkg_subdir}-build-${_target:-native}";
+ [ ${_no_config_cache:-0} -eq 0 ] &&\
+ cp -a "../portage/config.cache" .;
+ run_configure_with_extra_args \
+ "../${_pkg_subdir}/configure" "${_configure_args}" --target="${TARGET}";
+ set_build_script_done configured -built;
+else
+ cd "${_pkg_subdir}-build-${_target:-native}";
+fi;
+if ! is_build_script_done built; then
+ make ${MAKEFLAGS};
+ set_build_script_done built -installed;
+fi;
+if ! is_build_script_done installed; then
+ if [ ${_no_prefix:-0} -eq 0 ]; then
+ make ${MAKEFLAGS} DESTDIR="${PREFIX_NATIVE}" install;
+ else
+ make ${MAKEFLAGS} install;
+ fi;
+ set_build_script_done installed finished;
+fi;
+
+# vim:filetype=sh
diff --git a/201.diffutils.build b/201.diffutils.build
new file mode 120000
index 00000000..f22e447c
--- /dev/null
+++ b/201.diffutils.build
@@ -0,0 +1 @@
+200.coreutils.build \ No newline at end of file
diff --git a/202.findutils.build b/202.findutils.build
new file mode 120000
index 00000000..f22e447c
--- /dev/null
+++ b/202.findutils.build
@@ -0,0 +1 @@
+200.coreutils.build \ No newline at end of file
diff --git a/203.patch.build b/203.patch.build
new file mode 120000
index 00000000..f22e447c
--- /dev/null
+++ b/203.patch.build
@@ -0,0 +1 @@
+200.coreutils.build \ No newline at end of file
diff --git a/204.gawk.build b/204.gawk.build
new file mode 120000
index 00000000..f22e447c
--- /dev/null
+++ b/204.gawk.build
@@ -0,0 +1 @@
+200.coreutils.build \ No newline at end of file
diff --git a/205.bash.build b/205.bash.build
new file mode 120000
index 00000000..f22e447c
--- /dev/null
+++ b/205.bash.build
@@ -0,0 +1 @@
+200.coreutils.build \ No newline at end of file
diff --git a/206.make.build b/206.make.build
new file mode 120000
index 00000000..f22e447c
--- /dev/null
+++ b/206.make.build
@@ -0,0 +1 @@
+200.coreutils.build \ No newline at end of file
diff --git a/207.libz.build b/207.libz.build
new file mode 100644
index 00000000..7b5de832
--- /dev/null
+++ b/207.libz.build
@@ -0,0 +1,45 @@
+if is_build_script_done finished; then
+ exit 212;
+elif [ "x${3}" = "xlibz" ]; then
+ _pkg_url="https://sortix.org/libz/release/libz-${LIBZ_VERSION}.tar.gz";
+ _pkg_fname="${_pkg_url##*/}";
+elif [ "x${3}" = "xgzip" ]; then
+ _pkg_url="ftp://ftp.gnu.org/gnu/gzip/gzip-${GZIP_VERSION}.tar.gz";
+ _pkg_fname="${_pkg_url##*/}";
+fi;
+fetch "${_pkg_url}";
+if ! is_build_script_done extracted; then
+ rm_if_exists "${_pkg_fname%%.tar*}";
+ tar -axf "${_pkg_fname}";
+ set_build_script_done extracted -patched;
+fi;
+if ! is_build_script_done configured; then
+ set_build_dir "${_pkg_fname%%-*}" "${TARGET}";
+ rm_if_exists -c -m "${_build_dir}";
+ cp -a "../portage/config.cache" .;
+ CFLAGS="${CFLAGS_PACKAGES}" \
+ "../${LIBZ_VERSION}/configure" \
+ --host="${HOST_NATIVE}" \
+ --prefix="" \
+ --target="${TARGET}";
+ set_build_script_done configured -built;
+fi;
+if ! is_build_script_done built; then
+ if [ "x${3}" = "xlibz" ]; then
+ make -j18;
+ elif [ "x${3}" = "xgzip" ]; then
+ make clean;
+ make CFLAGS="-g3 -O0 -I${PREFIX_NATIVE}/include" LDFLAGS="--sysroot=${PREFIX_NATIVE}";
+ fi;
+ set_build_script_done built -installed;
+fi;
+if ! is_build_script_done installed; then
+ if [ "x${3}" = "xlibz" ]; then
+ make -j18 DESTDIR="${PREFIX_NATIVE}" install;
+ elif [ "x${3}" = "xgzip" ]; then
+ cp -a gunzip gzip zcat "${PREFIX_NATIVE}/bin";
+ fi;
+ set_build_script_done installed finished;
+fi;
+
+# vim:filetype=sh
diff --git a/208.gzip.build b/208.gzip.build
new file mode 120000
index 00000000..ffee5580
--- /dev/null
+++ b/208.gzip.build
@@ -0,0 +1 @@
+207.libz.build \ No newline at end of file
diff --git a/209.grep.build b/209.grep.build
new file mode 120000
index 00000000..f22e447c
--- /dev/null
+++ b/209.grep.build
@@ -0,0 +1 @@
+200.coreutils.build \ No newline at end of file
diff --git a/210.sed.build b/210.sed.build
new file mode 120000
index 00000000..f22e447c
--- /dev/null
+++ b/210.sed.build
@@ -0,0 +1 @@
+200.coreutils.build \ No newline at end of file
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 00000000..de0c557c
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,21 @@
+The MIT License (MIT)
+
+Copyright (c) 2016 lalbornoz
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/build.log b/build.log
new file mode 100644
index 00000000..d95d1743
--- /dev/null
+++ b/build.log
@@ -0,0 +1,4836 @@
+./build.sh: 6: ./build.sh: check_prereqs: not found
+==> 2016/02/05 23:32:31 Build started by lucio@lucio-vm.local.
+==> 2016/02/05 23:32:31 Invoking build script `000.fetch_git.build'
+From git://midipix.org/cbb/cbb-gcc-4.6.4
+ * branch main -> FETCH_HEAD
+Already up-to-date.
+From git://midipix.org/lazy
+ * branch main -> FETCH_HEAD
+Already up-to-date.
+From git://midipix.org/mmglue
+ * branch main -> FETCH_HEAD
+Already up-to-date.
+From git://midipix.org/ports/portage
+ * branch main -> FETCH_HEAD
+Already up-to-date.
+From git://midipix.org/psxstub
+ * branch main -> FETCH_HEAD
+Already up-to-date.
+==> 2016/02/05 23:32:32 Finished build script `000.fetch_git.build'.
+==> 2016/02/05 23:32:32 Invoking build script `001.binutils.host.build'
+==> 2016/02/05 23:32:33 Skipped build script `001.binutils.host.build' (already built.)
+==> 2016/02/05 23:32:33 Invoking build script `002.gcc.stage1.build'
+checking build system type... x86_64-unknown-linux-gnu
+checking host system type... x86_64-unknown-linux-gnu
+checking target system type... x86_64-nt64-midipix
+checking for a BSD-compatible install... /usr/bin/install -c
+checking whether ln works... yes
+checking whether ln -s works... yes
+checking for a sed that does not truncate output... /bin/sed
+checking for gawk... gawk
+checking for gcc... gcc
+checking for C compiler default output file name... a.out
+checking whether the C compiler works... yes
+checking whether we are cross compiling... no
+checking for suffix of executables...
+checking for suffix of object files... o
+checking whether we are using the GNU C compiler... yes
+checking whether gcc accepts -g... yes
+checking for gcc option to accept ISO C89... none needed
+checking for g++... g++
+checking whether we are using the GNU C++ compiler... yes
+checking whether g++ accepts -g... yes
+checking for gnatbind... no
+checking for gnatmake... no
+checking whether compiler driver understands Ada... no
+checking how to compare bootstrapped objects... cmp --ignore-initial=16 $$f1 $$f2
+checking for objdir... .libs
+checking for the correct version of gmp.h... yes
+checking for the correct version of mpfr.h... yes
+checking for the correct version of mpc.h... yes
+checking for the correct version of the gmp/mpfr/mpc libraries... yes
+checking for PWL_handle_timeout in -lpwl... no
+checking for version 0.11 (revision 0 or later) of PPL... no
+The following languages will be built: c,c++,lto,objc
+*** This configuration is not supported in the following subdirectories:
+ target-libffi target-zlib target-libjava gnattools target-libada target-libgfortran target-libgo target-libmudflap target-boehm-gc
+ (Any other directories should still work fine.)
+checking for default BUILD_CONFIG...
+checking for bison... no
+checking for byacc... no
+checking for yacc... no
+checking for bison... no
+checking for gm4... no
+checking for gnum4... no
+checking for m4... m4
+checking for flex... no
+checking for lex... no
+checking for flex... no
+checking for makeinfo... makeinfo
+checking for expect... no
+checking for runtest... no
+checking for ar... ar
+checking for as... as
+checking for dlltool... no
+checking for ld... ld
+checking for lipo... no
+checking for nm... nm
+checking for ranlib... ranlib
+checking for strip... strip
+checking for windres... no
+checking for windmc... no
+checking for objcopy... objcopy
+checking for objdump... objdump
+checking for x86_64-nt64-midipix-cc... no
+checking for x86_64-nt64-midipix-gcc... no
+checking for x86_64-nt64-midipix-c++... no
+checking for x86_64-nt64-midipix-g++... no
+checking for x86_64-nt64-midipix-cxx... no
+checking for x86_64-nt64-midipix-gxx... no
+checking for x86_64-nt64-midipix-gcc... no
+checking for x86_64-nt64-midipix-gcj... no
+checking for x86_64-nt64-midipix-gfortran... no
+checking for x86_64-nt64-midipix-gccgo... no
+checking for ar... /home/lucio/midipix/x86_64-nt64-midipix/bin/ar
+checking for as... /home/lucio/midipix/x86_64-nt64-midipix/bin/as
+checking for dlltool... /home/lucio/midipix/x86_64-nt64-midipix/bin/dlltool
+checking for ld... /home/lucio/midipix/x86_64-nt64-midipix/bin/ld
+checking for lipo... no
+checking for x86_64-nt64-midipix-lipo... no
+checking for nm... /home/lucio/midipix/x86_64-nt64-midipix/bin/nm
+checking for objdump... /home/lucio/midipix/x86_64-nt64-midipix/bin/objdump
+checking for ranlib... /home/lucio/midipix/x86_64-nt64-midipix/bin/ranlib
+checking for strip... /home/lucio/midipix/x86_64-nt64-midipix/bin/strip
+checking for windres... no
+checking for x86_64-nt64-midipix-windres... x86_64-nt64-midipix-windres
+checking for windmc... no
+checking for x86_64-nt64-midipix-windmc... x86_64-nt64-midipix-windmc
+checking where to find the target ar... pre-installed in /home/lucio/midipix/x86_64-nt64-midipix/bin
+checking where to find the target as... pre-installed in /home/lucio/midipix/x86_64-nt64-midipix/bin
+checking where to find the target cc... just compiled
+checking where to find the target c++... just compiled
+checking where to find the target c++ for libstdc++... just compiled
+checking where to find the target dlltool... pre-installed in /home/lucio/midipix/x86_64-nt64-midipix/bin
+checking where to find the target gcc... just compiled
+checking where to find the target gcj... pre-installed
+checking where to find the target gfortran... pre-installed
+checking where to find the target gccgo... pre-installed
+checking where to find the target ld... pre-installed in /home/lucio/midipix/x86_64-nt64-midipix/bin
+checking where to find the target lipo... pre-installed
+checking where to find the target nm... pre-installed in /home/lucio/midipix/x86_64-nt64-midipix/bin
+checking where to find the target objdump... pre-installed in /home/lucio/midipix/x86_64-nt64-midipix/bin
+checking where to find the target ranlib... pre-installed in /home/lucio/midipix/x86_64-nt64-midipix/bin
+checking where to find the target strip... pre-installed in /home/lucio/midipix/x86_64-nt64-midipix/bin
+checking where to find the target windres... pre-installed
+checking where to find the target windmc... pre-installed
+checking whether to enable maintainer-specific portions of Makefiles... no
+checking whether -fkeep-inline-functions is supported... yes
+configure: creating ./config.status
+config.status: creating Makefile
+==> 2016/02/05 23:32:36 Finished build step configured of build script `002.gcc.stage1.build'.
+mkdir -p -- ./libiberty
+mkdir -p -- ./lto-plugin
+mkdir -p -- ./zlib
+mkdir -p -- ./libdecnumber
+mkdir -p -- build-x86_64-unknown-linux-gnu/libiberty
+Configuring in build-x86_64-unknown-linux-gnu/libiberty
+mkdir -p -- ./intl
+mkdir -p -- ./fixincludes
+Configuring in ./libiberty
+Configuring in ./libdecnumber
+Configuring in ./intl
+Configuring in ./lto-plugin
+mkdir -p -- build-x86_64-unknown-linux-gnu/fixincludes
+Configuring in build-x86_64-unknown-linux-gnu/fixincludes
+Configuring in ./fixincludes
+Configuring in ./zlib
+configure: creating cache ./config.cache
+checking whether make sets $(MAKE)... configure: creating cache ./config.cache
+checking whether make sets $(MAKE)... configure: creating cache ./config.cache
+configure: creating cache ./config.cache
+checking whether to enable maintainer-specific portions of Makefiles... yes
+checking for a BSD-compatible install... no
+checking for makeinfo... makeinfo
+configure: creating cache ./config.cache
+yes
+checking for x86_64-unknown-linux-gnu-gcc... gcc
+configure: creating cache ../config.cache
+checking whether to enable maintainer-specific portions of Makefiles... no
+checking for makeinfo... makeinfo
+/usr/bin/install -c
+checking whether NLS is requested... no
+checking build system type... checking for msgfmt... /usr/bin/msgfmt
+checking for gmsgfmt... /usr/bin/msgfmt
+checking for xgettext... /usr/bin/xgettext
+checking build system type... checking for msgmerge... /usr/bin/msgmerge
+checking for C compiler default output file name... x86_64-unknown-linux-gnu
+checking host system type... x86_64-unknown-linux-gnu
+checking host system type... checking for x86_64-unknown-linux-gnu-gcc... gcc
+x86_64-unknown-linux-gnu
+checking target system type... x86_64-unknown-linux-gnu
+checking target system type... x86_64-nt64-midipix
+checking for a BSD-compatible install... checking for C compiler default output file name... /usr/bin/install -c
+checking whether build environment is sane... x86_64-nt64-midipix
+checking for a BSD-compatible install... a.out
+checking whether the C compiler works... /usr/bin/install -c
+checking whether build environment is sane... yes
+checking whether we are cross compiling... no
+checking for suffix of executables... a.out
+checking whether the C compiler works... yes
+checking whether we are cross compiling... no
+checking for suffix of executables...
+checking for suffix of object files...
+checking for suffix of object files... o
+checking whether we are using the GNU C compiler... o
+checking whether we are using the GNU C compiler... yes
+checking whether gcc accepts -g... yes
+checking whether gcc accepts -g... yes
+checking for gcc option to accept ISO C89... yes
+checking for gcc option to accept ISO C89... none needed
+checking for x86_64-unknown-linux-gnu-ranlib... ranlib
+checking for aclocal... no
+checking for autoconf... no
+checking for autoheader... no
+none needed
+checking whether gcc supports -W... checking build system type... yes
+yes
+x86_64-unknown-linux-gnu
+checking host system type... checking for a thread-safe mkdir -p... checking whether gcc supports -Wall... /bin/mkdir -p
+checking for gawk... gawk
+checking whether make sets $(MAKE)... yes
+yes
+x86_64-unknown-linux-gnu
+checking for x86_64-unknown-linux-gnu-ranlib... ranlib
+checking for library containing strerror... checking for a thread-safe mkdir -p... checking for perl... perl
+/bin/mkdir -p
+checking for gawk... gawk
+checking whether make sets $(MAKE)... checking whether to enable maintainer-specific portions of Makefiles... no
+checking for x86_64-unknown-linux-gnu-gcc... gcc
+checking for perl... perl
+yes
+yes
+checking build system type... checking whether to enable maintainer-specific portions of Makefiles... no
+checking for x86_64-unknown-linux-gnu-gcc... checking whether gcc supports -Wwrite-strings... gcc
+checking build system type... x86_64-unknown-linux-gnu
+checking host system type... x86_64-unknown-linux-gnu
+checking host system type... x86_64-unknown-linux-gnu
+checking for x86_64-unknown-linux-gnu-ar... ar
+checking for x86_64-unknown-linux-gnu-ranlib... ranlib
+checking for x86_64-unknown-linux-gnu-gcc... gcc
+x86_64-unknown-linux-gnu
+checking for x86_64-unknown-linux-gnu-ar... ar
+checking for x86_64-unknown-linux-gnu-ranlib... ranlib
+none required
+checking how to run the C preprocessor... checking for x86_64-unknown-linux-gnu-gcc... gcc
+checking for C compiler default output file name... yes
+checking whether gcc supports -Wstrict-prototypes... gcc -E
+yes
+checking whether gcc supports -Wmissing-prototypes... checking for grep that handles long lines and -e... checking for C compiler default output file name... /bin/grep
+checking for egrep... /bin/grep -E
+checking for ANSI C header files... a.out
+checking whether the C compiler works... yes
+checking whether we are cross compiling... no
+checking for suffix of executables... yes
+checking whether gcc supports -Wold-style-definition... checking for C compiler default output file name... checking for C compiler default output file name... yes
+checking whether gcc supports -Wmissing-format-attribute... a.out
+checking whether the C compiler works... yes
+checking whether we are cross compiling... no
+checking for suffix of executables...
+checking for suffix of object files... a.out
+checking whether the C compiler works... yes
+checking whether we are cross compiling... no
+checking for suffix of executables... yes
+checking whether gcc supports -Wcast-qual... a.out
+checking whether the C compiler works... yes
+checking whether we are cross compiling... no
+checking for suffix of executables... o
+checking whether we are using the GNU C compiler...
+checking for suffix of object files... yes
+checking whether gcc supports -pedantic -Wno-long-long... yes
+checking whether gcc accepts -g...
+yes
+checking for an ANSI C-conforming const... checking for suffix of object files... o
+checking whether we are using the GNU C compiler...
+checking for suffix of object files... yes
+checking how to run the C preprocessor... yes
+checking for gcc option to accept ISO C89... gcc -E
+o
+checking whether we are using the GNU C compiler... yes
+checking for inline... o
+checking whether we are using the GNU C compiler... yes
+checking whether gcc accepts -g... checking for grep that handles long lines and -e... /bin/grep
+checking for egrep... /bin/grep -E
+checking for ANSI C header files... none needed
+checking for style of include used by make... yes
+checking whether gcc accepts -g... yes
+checking whether gcc accepts -g... GNU
+checking dependency style of gcc... inline
+yes
+checking for gcc option to accept ISO C89... checking for sys/types.h... yes
+checking for gcc option to accept ISO C89... yes
+checking for gcc option to accept ISO C89... yes
+none needed
+checking for style of include used by make... checking for sys/stat.h... gcc3
+checking for special C compiler options needed for large files... no
+checking for _FILE_OFFSET_BITS value needed for large files... GNU
+checking dependency style of gcc... none needed
+checking for special C compiler options needed for large files... no
+checking for _FILE_OFFSET_BITS value needed for large files... none needed
+checking for special C compiler options needed for large files... no
+checking for _FILE_OFFSET_BITS value needed for large files... no
+checking whether gcc supports -Wall... yes
+checking for stdlib.h... no
+checking how to run the C preprocessor... no
+checking how to run the C preprocessor... gcc3
+checking how to print strings... yes
+checking how to print strings... yes
+gcc -E
+checking for sys/types.h... gcc -E
+yes
+checking for string.h... checking whether gcc supports -W... printf
+checking for a sed that does not truncate output... /bin/sed
+checking for grep that handles long lines and -e... /bin/grep
+checking for egrep... checking whether gcc supports -W... /bin/grep -E
+checking for fgrep... printf
+checking for a sed that does not truncate output... /bin/grep -F
+checking for ld used by gcc... /bin/sed
+checking for grep that handles long lines and -e... yes
+/bin/grep
+checking for egrep... ld
+checking if the linker (ld) is GNU ld... /bin/grep -E
+checking for fgrep... /bin/grep -F
+checking for ld used by gcc... yes
+checking for BSD- or MS-compatible name lister (nm)... nm
+checking the name lister (nm) interface... ld
+checking if the linker (ld) is GNU ld... checking for sys/stat.h... yes
+yes
+checking for BSD- or MS-compatible name lister (nm)... nm
+checking the name lister (nm) interface... yes
+checking whether gcc supports -Wall... yes
+checking whether gcc supports -Wall... checking for memory.h... BSD nm
+checking whether ln -s works... yes
+checking the maximum length of command line arguments... yes
+yes
+yes
+1572864
+checking whether the shell understands some XSI constructs... yes
+checking whether the shell understands "+="... yes
+checking whether gcc supports -Wwrite-strings... checking whether gcc supports -Wwrite-strings... BSD nm
+checking whether ln -s works... yes
+checking the maximum length of command line arguments... checking for stdlib.h... checking for ld option to reload object files... -r
+checking for x86_64-unknown-linux-gnu-objdump... objdump
+checking how to recognize dependent libraries... pass_all
+checking for x86_64-unknown-linux-gnu-ar... ar
+checking for x86_64-unknown-linux-gnu-strip... no
+checking for strip... strip
+checking for x86_64-unknown-linux-gnu-ranlib... ranlib
+checking command to parse nm output from gcc object... 1572864
+checking whether the shell understands some XSI constructs... yes
+checking whether the shell understands "+="... yes
+checking for ld option to reload object files... -r
+checking for x86_64-unknown-linux-gnu-objdump... objdump
+checking how to recognize dependent libraries... pass_all
+checking for x86_64-unknown-linux-gnu-ar... ar
+checking for x86_64-unknown-linux-gnu-strip... no
+checking for strip... strip
+checking for x86_64-unknown-linux-gnu-ranlib... ranlib
+checking command to parse nm output from gcc object... yes
+yes
+checking for strings.h... yes
+checking whether gcc supports -Wc++-compat... checking whether gcc supports -Wc++-compat... yes
+checking for string.h... yes
+yes
+checking whether gcc supports -Wstrict-prototypes... checking whether gcc supports -Wstrict-prototypes... yes
+checking for inttypes.h... yes
+checking whether gcc supports -pedantic ... yes
+checking whether gcc supports -pedantic ... yes
+checking for memory.h... ok
+yes
+checking whether gcc and cc understand -c and -o together... yes
+checking whether gcc and cc understand -c and -o together... ok
+yes
+checking for stdint.h... yes
+checking how to run the C preprocessor... checking how to run the C preprocessor... checking for strings.h... gcc -E
+yes
+gcc -E
+checking for unistd.h... checking for ANSI C header files... yes
+checking for ANSI C header files... checking for inttypes.h... yes
+checking for an ANSI C-conforming const... yes
+checking for off_t... yes
+checking for an ANSI C-conforming const... yes
+checking for stdint.h... yes
+checking for inline... yes
+checking for inline... yes
+inline
+checking for grep that handles long lines and -e... /bin/grep
+checking for egrep... /bin/grep -E
+checking for ANSI C header files... checking for unistd.h... inline
+checking for grep that handles long lines and -e... /bin/grep
+checking for egrep... /bin/grep -E
+checking for ANSI C header files... yes
+checking for size_t... yes
+yes
+checking for sys/types.h... checking for sys/types.h... yes
+checking ctype.h usability... yes
+yes
+checking for sys/stat.h... checking for sys/stat.h... yes
+checking ctype.h presence... yes
+yes
+checking for working alloca.h... yes
+yes
+checking for ctype.h... yes
+checking for stdlib.h... checking for stdlib.h... yes
+checking for sys/types.h... checking stddef.h usability... yes
+checking for sys/stat.h... yes
+yes
+checking for sys/types.h... yes
+checking for string.h... checking for stdlib.h... yes
+yes
+checking for alloca... yes
+checking stddef.h presence... yes
+checking for sys/stat.h... yes
+checking for stddef.h... yes
+checking for string.h... yes
+checking for string.h... (cached) yes
+checking for string.h... yes
+checking stdio.h usability... yes
+yes
+checking for stdlib.h... checking for memory.h... checking for memory.h... yes
+yes
+yes
+yes
+checking for stdlib.h... (cached) yes
+checking for string.h... checking for strings.h... checking for memory.h... checking for unistd.h... (cached) yes
+yes
+checking for getpagesize... yes
+yes
+checking stdio.h presence... checking for memory.h... checking for inttypes.h... yes
+checking for stdio.h... yes
+yes
+yes
+yes
+looking for a compliant stdint.h in stdint.h, checking for uintmax_t... checking for strings.h... checking for strings.h... checking for stdint.h... yes
+yes
+yes
+checking for inttypes.h... checking for strings.h... checking for unistd.h... yes
+yes
+checking for stdint.h... checking whether byte ordering is bigendian... yes
+yes
+checking for working mmap... yes
+checking for inttypes.h... checking for unistd.h... yes
+yes
+checking for uintptr_t... checking for inttypes.h... yes
+checking whether byte ordering is bigendian... yes
+checking for stdint.h... yes
+yes
+checking whether we are using the GNU C Library 2.1 or newer... checking for stdint.h... yes
+checking whether integer division by zero raises SIGFPE... yes
+yes
+checking for int_least32_t... checking for unistd.h... no
+checking for a BSD-compatible install... yes
+checking for unistd.h... /usr/bin/install -c
+checking for sys/file.h... no
+checking for a BSD-compatible install... yes
+yes
+checking for inttypes.h... /usr/bin/install -c
+checking for sys/param.h... checking for sys/file.h... yes
+checking for dlfcn.h... yes
+yes
+yes
+checking for limits.h... yes
+checking for int_fast32_t... checking for dlfcn.h... checking for sys/param.h... yes
+yes
+checking for stdint.h... checking for stdlib.h... (cached) yes
+yes
+checking for limits.h... checking for malloc.h... yes
+checking for objdir... yes
+.libs
+yes
+yes
+checking for unsigned long long... checking for stdlib.h... (cached) yes
+yes
+checking for objdir... checking for string.h... (cached) yes
+checking for malloc.h... .libs
+checking for unistd.h... (cached) yes
+yes
+checking for strings.h... (cached) yes
+checking for string.h... (cached) yes
+checking for sys/time.h... checking for unistd.h... (cached) yes
+yes
+checking for uint64_t... yes
+checking for strings.h... (cached) yes
+checking for time.h... checking for sys/time.h... yes
+checking for inttypes.h... yes
+yes
+checking for sys/resource.h... checking for time.h... yes
+yes
+checking for sys/stat.h... (cached) yes
+yes
+checking for sys/resource.h... checking whether the inttypes.h PRIxNN macros are broken... checking for sys/mman.h... checking if gcc supports -fno-rtti -fno-exceptions... yes
+yes
+checking for sys/stat.h... (cached) yes
+checking for fcntl.h... yes
+checking what to include in gstdint.h... checking for sys/mman.h... stdint.h (already complete)
+checking for an ANSI C-conforming const... checking if gcc supports -fno-rtti -fno-exceptions... yes
+no
+checking for ld used by GCC... yes
+ld
+checking if the linker (ld) is GNU ld... yes
+checking for shared library run path origin... checking for alloca.h... checking for fcntl.h... no
+checking for gcc option to produce PIC... -fPIC -DPIC
+checking if gcc PIC flag -fPIC -DPIC works... yes
+checking for sys/pstat.h... yes
+yes
+checking for off_t... done
+checking argz.h usability... checking for alloca.h... no
+no
+checking for gcc option to produce PIC... -fPIC -DPIC
+checking if gcc PIC flag -fPIC -DPIC works... checking for sys/sysmp.h... yes
+checking for sys/pstat.h... yes
+checking if gcc static flag -static works... no
+checking for sys/sysinfo.h... no
+yes
+checking for sys/sysmp.h... yes
+checking if gcc static flag -static works... checking for machine/hal_sysinfo.h... yes
+checking argz.h presence... no
+yes
+checking for argz.h... yes
+checking for sys/sysinfo.h... no
+checking for sys/table.h... checking limits.h usability... yes
+no
+checking for sys/sysctl.h... yes
+checking size of int... checking for machine/hal_sysinfo.h... yes
+no
+checking for sys/table.h... checking for sys/systemcfg.h... no
+no
+checking for sys/sysctl.h... checking for stdint.h... (cached) yes
+yes
+checking limits.h presence... yes
+checking for stdio_ext.h... checking for sys/systemcfg.h... yes
+checking for limits.h... yes
+yes
+checking locale.h usability... no
+checking for process.h... checking for stdint.h... (cached) yes
+yes
+checking if gcc supports -c -o file.o... 4
+checking size of long... checking for stdio_ext.h... no
+checking for sys/prctl.h... yes
+yes
+checking if gcc supports -c -o file.o... yes
+checking for process.h... checking for sys/wait.h that is POSIX.1 compatible... yes
+checking locale.h presence... no
+checking for sys/prctl.h... yes
+checking for locale.h... yes
+yes
+checking for sys/wait.h that is POSIX.1 compatible... checking nl_types.h usability... yes
+checking if gcc supports -c -o file.o... (cached) yes
+checking whether the gcc linker (ld -m elf_x86_64) supports shared libraries... yes
+checking whether -lc should be explicitly linked in... yes
+checking whether time.h and sys/time.h may both be included... 8
+yes
+checking if gcc supports -c -o file.o... (cached) yes
+checking whether the gcc linker (ld -m elf_x86_64) supports shared libraries... checking for ANSI C header files... (cached) yes
+yes
+checking whether -lc should be explicitly linked in... checking build system type... yes
+checking whether time.h and sys/time.h may both be included... yes
+checking nl_types.h presence... x86_64-unknown-linux-gnu
+checking host system type... yes
+checking whether errno must be declared... no
+checking dynamic linker characteristics... yes
+checking for nl_types.h... yes
+checking malloc.h usability... yes
+checking whether errno must be declared... x86_64-unknown-linux-gnu
+checking target system type... no
+checking dynamic linker characteristics... no
+checking size of int... x86_64-nt64-midipix
+checking for decimal floating point... configure: WARNING: decimal float is not supported for this target, ignored
+dpd
+checking whether byte ordering is bigendian... no
+checking size of int... yes
+checking malloc.h presence... yes
+checking for malloc.h... yes
+checking stddef.h usability... GNU/Linux ld.so
+checking how to hardcode library paths into programs... immediate
+checking whether stripping libraries is possible... yes
+checking if libtool supports shared libraries... yes
+checking whether to build shared libraries... yes
+checking whether to build static libraries... yes
+checking for int64_t... 4
+checking for a 64-bit type... GNU/Linux ld.so
+checking how to hardcode library paths into programs... immediate
+checking whether stripping libraries is possible... yes
+checking if libtool supports shared libraries... yes
+checking whether to build shared libraries... yes
+checking whether to build static libraries... yes
+checking how to run the C preprocessor... gcc -E
+4
+checking for a 64-bit type... yes
+checking stddef.h presence... yes
+checking for stddef.h... yes
+uint64_t
+checking for intptr_t... checking for stdlib.h... (cached) yes
+checking for string.h... (cached) yes
+checking for stdlib.h... (cached) yes
+checking for unistd.h... (cached) yes
+uint64_t
+checking for unistd.h... (cached) yes
+no
+checking for getpagesize... checking sys/param.h usability... checking for intptr_t... yes
+checking for uint64_t... configure: updating cache ./config.cache
+configure: creating ./config.status
+yes
+checking sys/param.h presence... yes
+yes
+checking for sys/wait.h that is POSIX.1 compatible... checking for working mmap... yes
+checking for sys/param.h... yes
+checking for feof_unlocked... yes
+checking for uintptr_t... yes
+checking for uintptr_t... yes
+no
+checking for fgets_unlocked... configure: updating cache ./config.cache
+configure: creating ./config.status
+config.status: creating Makefile
+no
+checking for getc_unlocked... yes
+config.status: creating config.h
+checking for memcpy... config.status: executing gstdint.h commands
+yes
+checking for ssize_t... no
+checking for getcwd... yes
+checking for ssize_t... yes
+checking for strerror... make[1]: Entering directory '/home/lucio/midipix/tmp/cbb-gcc-4.6.4-build-x86_64-nt64-midipix/libdecnumber'
+source='../../cbb-gcc-4.6.4/libdecnumber/decNumber.c' object='decNumber.o' libtool=no gcc -I../../cbb-gcc-4.6.4/libdecnumber -I. --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -I../../cbb-gcc-4.6.4/libdecnumber -I. -c ../../cbb-gcc-4.6.4/libdecnumber/decNumber.c
+source='../../cbb-gcc-4.6.4/libdecnumber/decContext.c' object='decContext.o' libtool=no gcc -I../../cbb-gcc-4.6.4/libdecnumber -I. --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -I../../cbb-gcc-4.6.4/libdecnumber -I. -c ../../cbb-gcc-4.6.4/libdecnumber/decContext.c
+source='../../cbb-gcc-4.6.4/libdecnumber/dpd/decimal32.c' object='decimal32.o' libtool=no gcc -I../../cbb-gcc-4.6.4/libdecnumber -I. --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -I../../cbb-gcc-4.6.4/libdecnumber -I. -c ../../cbb-gcc-4.6.4/libdecnumber/dpd/decimal32.c
+yes
+checking for getegid... In file included from ../../cbb-gcc-4.6.4/libdecnumber/dpd/decimal32.c:43:0:
+../../cbb-gcc-4.6.4/libdecnumber/dpd/decimal32.c: In function ‘decimal32FromNumber’:
+../../cbb-gcc-4.6.4/libdecnumber/decNumberLocal.h:159:69: warning: right-hand operand of comma expression has no effect [-Wunused-value]
+ #define UBFROMUI(b, i) (uiwork=(i), memcpy(b, (void *)&uiwork, 4), uiwork)
+ ^
+../../cbb-gcc-4.6.4/libdecnumber/dpd/decimal32.c:173:3: note: in expansion of macro ‘UBFROMUI’
+ UBFROMUI(d32->bytes, targ); /* directly store the int */
+ ^
+yes
+yes
+checking for pid_t... checking for unistd.h... (cached) yes
+yes
+checking for pid_t... source='../../cbb-gcc-4.6.4/libdecnumber/dpd/decimal64.c' object='decimal64.o' libtool=no gcc -I../../cbb-gcc-4.6.4/libdecnumber -I. --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -I../../cbb-gcc-4.6.4/libdecnumber -I. -c ../../cbb-gcc-4.6.4/libdecnumber/dpd/decimal64.c
+source='../../cbb-gcc-4.6.4/libdecnumber/dpd/decimal128.c' object='decimal128.o' libtool=no gcc -I../../cbb-gcc-4.6.4/libdecnumber -I. --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long -I../../cbb-gcc-4.6.4/libdecnumber -I. -c ../../cbb-gcc-4.6.4/libdecnumber/dpd/decimal128.c
+configure: updating cache ./config.cache
+configure: creating ./config.status
+yes
+checking for geteuid... In file included from ../../cbb-gcc-4.6.4/libdecnumber/dpd/decimal64.c:43:0:
+../../cbb-gcc-4.6.4/libdecnumber/dpd/decimal64.c: In function ‘decimal64FromNumber’:
+../../cbb-gcc-4.6.4/libdecnumber/decNumberLocal.h:159:69: warning: right-hand operand of comma expression has no effect [-Wunused-value]
+ #define UBFROMUI(b, i) (uiwork=(i), memcpy(b, (void *)&uiwork, 4), uiwork)
+ ^
+../../cbb-gcc-4.6.4/libdecnumber/dpd/decimal64.c:193:5: note: in expansion of macro ‘UBFROMUI’
+ UBFROMUI(d64->bytes, targar[0]);
+ ^
+../../cbb-gcc-4.6.4/libdecnumber/decNumberLocal.h:159:69: warning: right-hand operand of comma expression has no effect [-Wunused-value]
+ #define UBFROMUI(b, i) (uiwork=(i), memcpy(b, (void *)&uiwork, 4), uiwork)
+ ^
+../../cbb-gcc-4.6.4/libdecnumber/dpd/decimal64.c:194:5: note: in expansion of macro ‘UBFROMUI’
+ UBFROMUI(d64->bytes+4, targar[1]);
+ ^
+../../cbb-gcc-4.6.4/libdecnumber/decNumberLocal.h:159:69: warning: right-hand operand of comma expression has no effect [-Wunused-value]
+ #define UBFROMUI(b, i) (uiwork=(i), memcpy(b, (void *)&uiwork, 4), uiwork)
+ ^
+../../cbb-gcc-4.6.4/libdecnumber/dpd/decimal64.c:198:5: note: in expansion of macro ‘UBFROMUI’
+ UBFROMUI(d64->bytes, targar[1]);
+ ^
+../../cbb-gcc-4.6.4/libdecnumber/decNumberLocal.h:159:69: warning: right-hand operand of comma expression has no effect [-Wunused-value]
+ #define UBFROMUI(b, i) (uiwork=(i), memcpy(b, (void *)&uiwork, 4), uiwork)
+ ^
+../../cbb-gcc-4.6.4/libdecnumber/dpd/decimal64.c:199:5: note: in expansion of macro ‘UBFROMUI’
+ UBFROMUI(d64->bytes+4, targar[0]);
+ ^
+In file included from ../../cbb-gcc-4.6.4/libdecnumber/dpd/decimal128.c:43:0:
+../../cbb-gcc-4.6.4/libdecnumber/dpd/decimal128.c: In function ‘decimal128FromNumber’:
+../../cbb-gcc-4.6.4/libdecnumber/decNumberLocal.h:159:69: warning: right-hand operand of comma expression has no effect [-Wunused-value]
+ #define UBFROMUI(b, i) (uiwork=(i), memcpy(b, (void *)&uiwork, 4), uiwork)
+ ^
+../../cbb-gcc-4.6.4/libdecnumber/dpd/decimal128.c:172:5: note: in expansion of macro ‘UBFROMUI’
+ UBFROMUI(d128->bytes, targlo);
+ ^
+../../cbb-gcc-4.6.4/libdecnumber/decNumberLocal.h:159:69: warning: right-hand operand of comma expression has no effect [-Wunused-value]
+ #define UBFROMUI(b, i) (uiwork=(i), memcpy(b, (void *)&uiwork, 4), uiwork)
+ ^
+../../cbb-gcc-4.6.4/libdecnumber/dpd/decimal128.c:173:5: note: in expansion of macro ‘UBFROMUI’
+ UBFROMUI(d128->bytes+4, targml);
+ ^
+../../cbb-gcc-4.6.4/libdecnumber/decNumberLocal.h:159:69: warning: right-hand operand of comma expression has no effect [-Wunused-value]
+ #define UBFROMUI(b, i) (uiwork=(i), memcpy(b, (void *)&uiwork, 4), uiwork)
+ ^
+../../cbb-gcc-4.6.4/libdecnumber/dpd/decimal128.c:174:5: note: in expansion of macro ‘UBFROMUI’
+ UBFROMUI(d128->bytes+8, targmh);
+ ^
+../../cbb-gcc-4.6.4/libdecnumber/decNumberLocal.h:159:69: warning: right-hand operand of comma expression has no effect [-Wunused-value]
+ #define UBFROMUI(b, i) (uiwork=(i), memcpy(b, (void *)&uiwork, 4), uiwork)
+ ^
+../../cbb-gcc-4.6.4/libdecnumber/dpd/decimal128.c:175:5: note: in expansion of macro ‘UBFROMUI’
+ UBFROMUI(d128->bytes+12, targhi);
+ ^
+../../cbb-gcc-4.6.4/libdecnumber/decNumberLocal.h:159:69: warning: right-hand operand of comma expression has no effect [-Wunused-value]
+ #define UBFROMUI(b, i) (uiwork=(i), memcpy(b, (void *)&uiwork, 4), uiwork)
+ ^
+../../cbb-gcc-4.6.4/libdecnumber/dpd/decimal128.c:179:5: note: in expansion of macro ‘UBFROMUI’
+ UBFROMUI(d128->bytes, targhi);
+ ^
+../../cbb-gcc-4.6.4/libdecnumber/decNumberLocal.h:159:69: warning: right-hand operand of comma expression has no effect [-Wunused-value]
+ #define UBFROMUI(b, i) (uiwork=(i), memcpy(b, (void *)&uiwork, 4), uiwork)
+ ^
+../../cbb-gcc-4.6.4/libdecnumber/dpd/decimal128.c:180:5: note: in expansion of macro ‘UBFROMUI’
+ UBFROMUI(d128->bytes+4, targmh);
+ ^
+../../cbb-gcc-4.6.4/libdecnumber/decNumberLocal.h:159:69: warning: right-hand operand of comma expression has no effect [-Wunused-value]
+ #define UBFROMUI(b, i) (uiwork=(i), memcpy(b, (void *)&uiwork, 4), uiwork)
+ ^
+../../cbb-gcc-4.6.4/libdecnumber/dpd/decimal128.c:181:5: note: in expansion of macro ‘UBFROMUI’
+ UBFROMUI(d128->bytes+8, targml);
+ ^
+../../cbb-gcc-4.6.4/libdecnumber/decNumberLocal.h:159:69: warning: right-hand operand of comma expression has no effect [-Wunused-value]
+ #define UBFROMUI(b, i) (uiwork=(i), memcpy(b, (void *)&uiwork, 4), uiwork)
+ ^
+../../cbb-gcc-4.6.4/libdecnumber/dpd/decimal128.c:182:5: note: in expansion of macro ‘UBFROMUI’
+ UBFROMUI(d128->bytes+12, targlo);
+ ^
+yes
+checking for library containing strerror... yes
+checking for library containing strerror... yes
+checking for getgid... none required
+none required
+checking for asprintf... checking for asprintf... no
+yes
+no
+checking for atexit... checking for atexit... checking for getuid... yes
+yes
+yes
+checking for basename... checking for mempcpy... checking for basename... yes
+yes
+yes
+checking for bcmp... checking for bcmp... checking for munmap... yes
+yes
+yes
+checking for putenv... checking for bcopy... checking for bcopy... config.status: creating Makefile
+yes
+config.status: creating config.h
+checking for setenv... yes
+config.status: executing depfiles commands
+yes
+checking for bsearch... checking for bsearch... config.status: executing libtool commands
+yes
+checking for setlocale... rm -f libdecnumber.a
+ar cru libdecnumber.a decNumber.o decContext.o decimal32.o decimal64.o decimal128.o
+yes
+ranlib libdecnumber.a
+make[1]: Leaving directory '/home/lucio/midipix/tmp/cbb-gcc-4.6.4-build-x86_64-nt64-midipix/libdecnumber'
+yes
+checking for bzero... checking for bzero... yes
+checking for stpcpy... yes
+yes
+checking for calloc... checking for calloc... yes
+checking for strcasecmp... config.status: creating Makefile
+yes
+yes
+checking for clock... checking for clock... config.status: executing default-1 commands
+yes
+checking for strdup... yes
+yes
+checking for ffs... checking for ffs... yes
+checking for strtoul... yes
+config.status: executing depfiles commands
+yes
+checking for getcwd... checking for getcwd... config.status: executing libtool commands
+yes
+checking for tsearch... yes
+yes
+checking for getpagesize... checking for getpagesize... yes
+make[1]: Entering directory '/home/lucio/midipix/tmp/cbb-gcc-4.6.4-build-x86_64-nt64-midipix/zlib'
+gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"zlib\" -DVERSION=\"1.1.4\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_STDLIB_H=1 -DHAVE_UNISTD_H=1 -DHAVE_GETPAGESIZE=1 -DHAVE_MMAP=1 -DHAVE_MEMCPY=1 -DHAVE_STRERROR=1 -DHAVE_UNISTD_H=1 -I. -I../../cbb-gcc-4.6.4/zlib --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -c -o libz_a-adler32.o `test -f 'adler32.c' || echo '../../cbb-gcc-4.6.4/zlib/'`adler32.c
+gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"zlib\" -DVERSION=\"1.1.4\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_STDLIB_H=1 -DHAVE_UNISTD_H=1 -DHAVE_GETPAGESIZE=1 -DHAVE_MMAP=1 -DHAVE_MEMCPY=1 -DHAVE_STRERROR=1 -DHAVE_UNISTD_H=1 -I. -I../../cbb-gcc-4.6.4/zlib --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -c -o libz_a-compress.o `test -f 'compress.c' || echo '../../cbb-gcc-4.6.4/zlib/'`compress.c
+gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"zlib\" -DVERSION=\"1.1.4\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_STDLIB_H=1 -DHAVE_UNISTD_H=1 -DHAVE_GETPAGESIZE=1 -DHAVE_MMAP=1 -DHAVE_MEMCPY=1 -DHAVE_STRERROR=1 -DHAVE_UNISTD_H=1 -I. -I../../cbb-gcc-4.6.4/zlib --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -c -o libz_a-crc32.o `test -f 'crc32.c' || echo '../../cbb-gcc-4.6.4/zlib/'`crc32.c
+gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"zlib\" -DVERSION=\"1.1.4\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_STDLIB_H=1 -DHAVE_UNISTD_H=1 -DHAVE_GETPAGESIZE=1 -DHAVE_MMAP=1 -DHAVE_MEMCPY=1 -DHAVE_STRERROR=1 -DHAVE_UNISTD_H=1 -I. -I../../cbb-gcc-4.6.4/zlib --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -c -o libz_a-deflate.o `test -f 'deflate.c' || echo '../../cbb-gcc-4.6.4/zlib/'`deflate.c
+gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"zlib\" -DVERSION=\"1.1.4\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_STDLIB_H=1 -DHAVE_UNISTD_H=1 -DHAVE_GETPAGESIZE=1 -DHAVE_MMAP=1 -DHAVE_MEMCPY=1 -DHAVE_STRERROR=1 -DHAVE_UNISTD_H=1 -I. -I../../cbb-gcc-4.6.4/zlib --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -c -o libz_a-gzio.o `test -f 'gzio.c' || echo '../../cbb-gcc-4.6.4/zlib/'`gzio.c
+yes
+checking for __argz_count... checking for gettimeofday... yes
+checking for gettimeofday... gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"zlib\" -DVERSION=\"1.1.4\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_STDLIB_H=1 -DHAVE_UNISTD_H=1 -DHAVE_GETPAGESIZE=1 -DHAVE_MMAP=1 -DHAVE_MEMCPY=1 -DHAVE_STRERROR=1 -DHAVE_UNISTD_H=1 -I. -I../../cbb-gcc-4.6.4/zlib --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -c -o libz_a-infback.o `test -f 'infback.c' || echo '../../cbb-gcc-4.6.4/zlib/'`infback.c
+gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"zlib\" -DVERSION=\"1.1.4\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_STDLIB_H=1 -DHAVE_UNISTD_H=1 -DHAVE_GETPAGESIZE=1 -DHAVE_MMAP=1 -DHAVE_MEMCPY=1 -DHAVE_STRERROR=1 -DHAVE_UNISTD_H=1 -I. -I../../cbb-gcc-4.6.4/zlib --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -c -o libz_a-inffast.o `test -f 'inffast.c' || echo '../../cbb-gcc-4.6.4/zlib/'`inffast.c
+yes
+checking for __argz_stringify... yes
+yes
+checking for index... gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"zlib\" -DVERSION=\"1.1.4\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_STDLIB_H=1 -DHAVE_UNISTD_H=1 -DHAVE_GETPAGESIZE=1 -DHAVE_MMAP=1 -DHAVE_MEMCPY=1 -DHAVE_STRERROR=1 -DHAVE_UNISTD_H=1 -I. -I../../cbb-gcc-4.6.4/zlib --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -c -o libz_a-inflate.o `test -f 'inflate.c' || echo '../../cbb-gcc-4.6.4/zlib/'`inflate.c
+checking for index... gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"zlib\" -DVERSION=\"1.1.4\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_STDLIB_H=1 -DHAVE_UNISTD_H=1 -DHAVE_GETPAGESIZE=1 -DHAVE_MMAP=1 -DHAVE_MEMCPY=1 -DHAVE_STRERROR=1 -DHAVE_UNISTD_H=1 -I. -I../../cbb-gcc-4.6.4/zlib --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -c -o libz_a-inftrees.o `test -f 'inftrees.c' || echo '../../cbb-gcc-4.6.4/zlib/'`inftrees.c
+gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"zlib\" -DVERSION=\"1.1.4\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_STDLIB_H=1 -DHAVE_UNISTD_H=1 -DHAVE_GETPAGESIZE=1 -DHAVE_MMAP=1 -DHAVE_MEMCPY=1 -DHAVE_STRERROR=1 -DHAVE_UNISTD_H=1 -I. -I../../cbb-gcc-4.6.4/zlib --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -c -o libz_a-trees.o `test -f 'trees.c' || echo '../../cbb-gcc-4.6.4/zlib/'`trees.c
+yes
+checking for __argz_next... yes
+gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"zlib\" -DVERSION=\"1.1.4\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_STDLIB_H=1 -DHAVE_UNISTD_H=1 -DHAVE_GETPAGESIZE=1 -DHAVE_MMAP=1 -DHAVE_MEMCPY=1 -DHAVE_STRERROR=1 -DHAVE_UNISTD_H=1 -I. -I../../cbb-gcc-4.6.4/zlib --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -c -o libz_a-uncompr.o `test -f 'uncompr.c' || echo '../../cbb-gcc-4.6.4/zlib/'`uncompr.c
+checking for insque... yes
+gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"zlib\" -DVERSION=\"1.1.4\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_STDLIB_H=1 -DHAVE_UNISTD_H=1 -DHAVE_GETPAGESIZE=1 -DHAVE_MMAP=1 -DHAVE_MEMCPY=1 -DHAVE_STRERROR=1 -DHAVE_UNISTD_H=1 -I. -I../../cbb-gcc-4.6.4/zlib --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -c -o libz_a-zutil.o `test -f 'zutil.c' || echo '../../cbb-gcc-4.6.4/zlib/'`zutil.c
+checking for insque... true "AR_FLAGS=rc" "CC_FOR_BUILD=gcc" "CFLAGS=--include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h" "CXXFLAGS=--include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h" "CFLAGS_FOR_BUILD=--include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h" "CFLAGS_FOR_TARGET=-DIN_TARGET_LIBRARY_BUILD --sysroot=/home/lucio/midipix/x86_64-nt64-midipix" "INSTALL=/usr/bin/install -c" "INSTALL_DATA=/usr/bin/install -c -m 644" "INSTALL_PROGRAM=/usr/bin/install -c" "INSTALL_SCRIPT=/usr/bin/install -c" "LDFLAGS=" "LIBCFLAGS=--include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h" "LIBCFLAGS_FOR_TARGET=-DIN_TARGET_LIBRARY_BUILD --sysroot=/home/lucio/midipix/x86_64-nt64-midipix" "MAKE=make" "MAKEINFO=makeinfo --split-size=5000000 " "PICFLAG=" "PICFLAG_FOR_TARGET=" "SHELL=/bin/bash" "EXPECT=expect" "RUNTEST=runtest" "RUNTESTFLAGS=" "exec_prefix=/home/lucio/midipix" "infodir=/home/lucio/midipix/share/info" "libdir=/home/lucio/midipix/lib" "prefix=/home/lucio/midipix" "tooldir=/home/lucio/midipix/x86_64-nt64-midipix" "AR=ar" "AS=as" "CC=gcc" "CXX=g++" "LD=ld" "LIBCFLAGS=--include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h" "NM=nm" "PICFLAG=" "RANLIB=ranlib" "DESTDIR=" DO=all multi-do # make
+yes
+checking for __fsetlocking... yes
+checking for memchr... yes
+checking for memchr... yes
+checking for iconv... yes
+checking for memcmp... rm -f libz.a
+ar cru libz.a libz_a-adler32.o libz_a-compress.o libz_a-crc32.o libz_a-deflate.o libz_a-gzio.o libz_a-infback.o libz_a-inffast.o libz_a-inflate.o libz_a-inftrees.o libz_a-trees.o libz_a-uncompr.o libz_a-zutil.o
+ranlib libz.a
+yes
+make[1]: Leaving directory '/home/lucio/midipix/tmp/cbb-gcc-4.6.4-build-x86_64-nt64-midipix/zlib'
+checking for memcmp... yes
+checking for iconv declaration... yes
+install-shextern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);
+checking for nl_langinfo and CODESET... checking for memcpy... yes
+checking for memcpy... yes
+checking for LC_MESSAGES... yes
+checking for memmem... yes
+checking for memmem... yes
+checking for bison... no
+checking whether NLS is requested... no
+checking whether to use NLS... no
+checking for aclocal... no
+checking for autoconf... no
+checking for autoheader... no
+yes
+checking for memmove... yes
+configure: updating cache ./config.cache
+configure: creating ./config.status
+checking for memmove... yes
+checking for mempcpy... yes
+checking for mempcpy... yes
+yes
+checking for memset... checking for memset... config.status: creating Makefile
+config.status: creating config.intl
+config.status: creating config.h
+yes
+yes
+checking for mkstemps... config.status: executing default-1 commands
+checking for mkstemps... yes
+checking for putenv... yes
+make[1]: Entering directory '/home/lucio/midipix/tmp/cbb-gcc-4.6.4-build-x86_64-nt64-midipix/intl'
+make[1]: Nothing to be done for 'all'.
+make[1]: Leaving directory '/home/lucio/midipix/tmp/cbb-gcc-4.6.4-build-x86_64-nt64-midipix/intl'
+checking for putenv... yes
+checking for random... yes
+checking for random... yes
+checking for rename... yes
+checking for rename... no
+checking for rindex... no
+checking for rindex... yes
+yes
+checking for setenv... checking for setenv... yes
+checking for snprintf... yes
+checking for snprintf... no
+checking for sigsetmask... no
+checking for sigsetmask... yes
+yes
+checking for stpcpy... checking for stpcpy... yes
+yes
+checking for stpncpy... checking for stpncpy... yes
+yes
+checking for strcasecmp... checking for strcasecmp... yes
+yes
+checking for strchr... checking for strchr... yes
+yes
+checking for strdup... checking for strdup... yes
+yes
+checking for strncasecmp... checking for strncasecmp... yes
+yes
+checking for strndup... checking for strndup... yes
+yes
+checking for strrchr... checking for strrchr... yes
+yes
+checking for strstr... checking for strstr... yes
+yes
+checking for strtod... checking for strtod... yes
+yes
+checking for strtol... checking for strtol... yes
+checking for strtoul... yes
+checking for strtoul... yes
+yes
+checking for strverscmp... checking for strverscmp... yes
+yes
+checking for tmpnam... checking for tmpnam... no
+no
+checking for vasprintf... checking for vasprintf... no
+no
+checking for vfprintf... checking for vfprintf... no
+no
+checking for vprintf... checking for vprintf... no
+checking for vsnprintf... no
+checking for vsnprintf... no
+no
+checking for vsprintf... checking for vsprintf... no
+no
+checking for waitpid... checking for waitpid... yes
+yes
+checking for setproctitle... checking for setproctitle... no
+checking whether alloca needs Cray hooks... no
+checking whether alloca needs Cray hooks... no
+checking stack direction for C alloca... no
+checking stack direction for C alloca... -1
+-1
+checking for vfork.h... checking for vfork.h... no
+checking for fork... no
+checking for fork... yes
+yes
+checking for vfork... checking for vfork... yes
+yes
+checking for working fork... checking for working fork... yes
+checking for working vfork... (cached) yes
+checking for _doprnt... yes
+checking for working vfork... (cached) yes
+checking for _doprnt... no
+checking for sys_errlist... no
+checking for sys_errlist... no
+checking for sys_nerr... no
+checking for sys_nerr... no
+checking for sys_siglist... no
+checking for sys_siglist... yes
+yes
+checking for external symbol _system_configuration... checking for external symbol _system_configuration... no
+no
+checking for __fsetlocking... checking for __fsetlocking... yes
+yes
+checking for canonicalize_file_name... checking for canonicalize_file_name... yes
+yes
+checking for dup3... checking for dup3... yes
+yes
+checking for getrusage... checking for getrusage... yes
+yes
+checking for getsysinfo... checking for getsysinfo... no
+no
+checking for gettimeofday... (cached) yes
+checking for gettimeofday... (cached) yes
+checking for on_exit... checking for on_exit... yes
+yes
+checking for psignal... checking for psignal... yes
+yes
+checking for pstat_getdynamic... checking for pstat_getdynamic... no
+no
+checking for pstat_getstatic... checking for pstat_getstatic... no
+no
+checking for realpath... checking for realpath... yes
+yes
+checking for sbrk... checking for sbrk... yes
+yes
+checking for spawnve... checking for spawnve... no
+no
+checking for spawnvpe... checking for spawnvpe... no
+no
+checking for strerror... checking for strerror... yes
+yes
+checking for strsignal... checking for strsignal... yes
+yes
+checking for sysconf... checking for sysconf... yes
+yes
+checking for sysctl... checking for sysctl... yes
+yes
+checking for sysmp... checking for sysmp... no
+no
+checking for table... checking for table... no
+no
+checking for times... checking for times... yes
+yes
+checking for wait3... checking for wait3... yes
+yes
+checking for wait4... checking for wait4... yes
+yes
+checking whether basename is declared... checking whether basename is declared... yes
+yes
+checking whether ffs is declared... checking whether ffs is declared... yes
+yes
+checking whether asprintf is declared... checking whether asprintf is declared... yes
+checking whether vasprintf is declared... yes
+checking whether vasprintf is declared... yes
+yes
+checking whether snprintf is declared... checking whether snprintf is declared... yes
+yes
+checking whether vsnprintf is declared... checking whether vsnprintf is declared... yes
+yes
+checking whether calloc is declared... checking whether calloc is declared... yes
+yes
+checking whether getenv is declared... checking whether getenv is declared... yes
+checking whether getopt is declared... yes
+checking whether getopt is declared... yes
+checking whether malloc is declared... yes
+checking whether malloc is declared... yes
+checking whether realloc is declared... yes
+checking whether realloc is declared... yes
+yes
+checking whether sbrk is declared... checking whether sbrk is declared... yes
+yes
+checking whether strverscmp is declared... checking whether strverscmp is declared... yes
+checking whether canonicalize_file_name must be declared... yes
+checking whether canonicalize_file_name must be declared... no
+checking for stdlib.h... (cached) yes
+no
+checking for stdlib.h... (cached) yes
+checking for unistd.h... (cached) yes
+checking for unistd.h... (cached) yes
+checking for getpagesize... (cached) yes
+checking for working mmap... checking for getpagesize... (cached) yes
+checking for working mmap... yes
+checking for working strncmp... yes
+checking for working strncmp... yes
+yes
+configure: updating cache ./config.cache
+configure: updating cache ../config.cache
+configure: creating ./config.status
+configure: creating ./config.status
+config.status: creating Makefile
+config.status: creating Makefile
+config.status: creating testsuite/Makefile
+config.status: creating testsuite/Makefile
+config.status: creating config.h
+config.status: executing default commands
+config.status: creating config.h
+config.status: executing default commands
+mkdir -p -- ./libcpp
+Configuring in ./libcpp
+make[1]: Entering directory '/home/lucio/midipix/tmp/cbb-gcc-4.6.4-build-x86_64-nt64-midipix/libiberty'
+if [ x"-fpic" != x ] && [ ! -d pic ]; then \
+ mkdir pic; \
+else true; fi
+touch stamp-picdir
+echo ./neutral.o ./regex.o ./cplus-dem.o ./cp-demangle.o ./md5.o ./sha1.o ./alloca.o ./argv.o ./choose-temp.o ./concat.o ./cp-demint.o ./crc32.o ./dyn-string.o ./fdmatch.o ./fibheap.o ./filename_cmp.o ./floatformat.o ./fnmatch.o ./fopen_unlocked.o ./getopt.o ./getopt1.o ./getpwd.o ./getruntime.o ./hashtab.o ./hex.o ./lbasename.o ./lrealpath.o ./make-relative-prefix.o ./make-temp-file.o ./objalloc.o ./obstack.o ./partition.o ./pexecute.o ./physmem.o ./pex-common.o ./pex-one.o ./pex-unix.o ./safe-ctype.o ./simple-object.o ./simple-object-coff.o ./simple-object-elf.o ./simple-object-mach-o.o ./sort.o ./spaces.o ./splay-tree.o ./strerror.o ./strsignal.o ./unlink-if-ordinary.o ./xatexit.o ./xexit.o ./xmalloc.o ./xmemdup.o ./xstrdup.o ./xstrerror.o ./xstrndup.o > required-list
+if [ x"-fpic" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic ../../cbb-gcc-4.6.4/libiberty/neutral.c -o pic/neutral.o; \
+else true; fi
+if [ x"-fpic" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic ../../cbb-gcc-4.6.4/libiberty/regex.c -o pic/regex.o; \
+else true; fi
+if [ x"-fpic" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic ../../cbb-gcc-4.6.4/libiberty/cplus-dem.c -o pic/cplus-dem.o; \
+else true; fi
+if [ x"-fpic" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic ../../cbb-gcc-4.6.4/libiberty/cp-demangle.c -o pic/cp-demangle.o; \
+else true; fi
+if [ x"-fpic" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic ../../cbb-gcc-4.6.4/libiberty/md5.c -o pic/md5.o; \
+else true; fi
+make[2]: Entering directory '/home/lucio/midipix/tmp/cbb-gcc-4.6.4-build-x86_64-nt64-midipix/libiberty/testsuite'
+make[2]: Nothing to be done for 'all'.
+make[2]: Leaving directory '/home/lucio/midipix/tmp/cbb-gcc-4.6.4-build-x86_64-nt64-midipix/libiberty/testsuite'
+if [ x"-fpic" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic ../../cbb-gcc-4.6.4/libiberty/sha1.c -o pic/sha1.o; \
+else true; fi
+make[1]: Entering directory '/home/lucio/midipix/tmp/cbb-gcc-4.6.4-build-x86_64-nt64-midipix/build-x86_64-unknown-linux-gnu/libiberty'
+if [ x"" != x ] && [ ! -d pic ]; then \
+ mkdir pic; \
+else true; fi
+touch stamp-picdir
+if [ x"" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/safe-ctype.c -o pic/safe-ctype.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/safe-ctype.c -o safe-ctype.o
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../cbb-gcc-4.6.4/libiberty/regex.c -o regex.o
+../../cbb-gcc-4.6.4/libiberty/neutral.c: In function ‘xatexit’:
+../../cbb-gcc-4.6.4/libiberty/neutral.c:12:1: warning: implicit declaration of function ‘atexit’ [-Wimplicit-function-declaration]
+ int xatexit(void (*function)(void)) {return atexit(function);}
+ ^
+../../cbb-gcc-4.6.4/libiberty/neutral.c: In function ‘xcalloc’:
+../../cbb-gcc-4.6.4/libiberty/neutral.c:13:1: warning: implicit declaration of function ‘calloc’ [-Wimplicit-function-declaration]
+ void * xcalloc(size_t nmemb, size_t size) {return calloc(nmemb,size);}
+ ^
+../../cbb-gcc-4.6.4/libiberty/neutral.c:13:51: warning: incompatible implicit declaration of built-in function ‘calloc’
+ void * xcalloc(size_t nmemb, size_t size) {return calloc(nmemb,size);}
+ ^
+../../cbb-gcc-4.6.4/libiberty/neutral.c: In function ‘xrealloc’:
+../../cbb-gcc-4.6.4/libiberty/neutral.c:14:1: warning: implicit declaration of function ‘realloc’ [-Wimplicit-function-declaration]
+ void * xrealloc(void *ptr, size_t size) {return realloc(ptr,size);}
+ ^
+../../cbb-gcc-4.6.4/libiberty/neutral.c:14:50: warning: incompatible implicit declaration of built-in function ‘realloc’
+ void * xrealloc(void *ptr, size_t size) {return realloc(ptr,size);}
+ ^
+../../cbb-gcc-4.6.4/libiberty/neutral.c: In function ‘xmalloc’:
+../../cbb-gcc-4.6.4/libiberty/neutral.c:17:1: warning: implicit declaration of function ‘malloc’ [-Wimplicit-function-declaration]
+ void * xmalloc(size_t block_size) {return malloc(block_size);}
+ ^
+../../cbb-gcc-4.6.4/libiberty/neutral.c:17:44: warning: incompatible implicit declaration of built-in function ‘malloc’
+ void * xmalloc(size_t block_size) {return malloc(block_size);}
+ ^
+../../cbb-gcc-4.6.4/libiberty/neutral.c: In function ‘xmemdup’:
+../../cbb-gcc-4.6.4/libiberty/neutral.c:21:15: warning: incompatible implicit declaration of built-in function ‘calloc’
+ void * dst = calloc (1, alloc_size);
+ ^
+../../cbb-gcc-4.6.4/libiberty/neutral.c: In function ‘xmalloc_set_program_name’:
+../../cbb-gcc-4.6.4/libiberty/neutral.c:25:44: warning: unused parameter ‘s’ [-Wunused-parameter]
+ void xmalloc_set_program_name (const char *s)
+ ^
+../../cbb-gcc-4.6.4/libiberty/neutral.c: In function ‘xmalloc_failed’:
+../../cbb-gcc-4.6.4/libiberty/neutral.c:30:29: warning: unused parameter ‘size’ [-Wunused-parameter]
+ void xmalloc_failed (size_t size)
+ ^
+if [ x"" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/simple-object.c -o pic/simple-object.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/simple-object.c -o simple-object.o
+if [ x"-fpic" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic ../../cbb-gcc-4.6.4/libiberty/alloca.c -o pic/alloca.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../cbb-gcc-4.6.4/libiberty/neutral.c -o neutral.o
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../cbb-gcc-4.6.4/libiberty/md5.c -o md5.o
+../../cbb-gcc-4.6.4/libiberty/neutral.c: In function ‘xatexit’:
+../../cbb-gcc-4.6.4/libiberty/neutral.c:12:1: warning: implicit declaration of function ‘atexit’ [-Wimplicit-function-declaration]
+ int xatexit(void (*function)(void)) {return atexit(function);}
+ ^
+../../cbb-gcc-4.6.4/libiberty/neutral.c: In function ‘xcalloc’:
+../../cbb-gcc-4.6.4/libiberty/neutral.c:13:1: warning: implicit declaration of function ‘calloc’ [-Wimplicit-function-declaration]
+ void * xcalloc(size_t nmemb, size_t size) {return calloc(nmemb,size);}
+ ^
+../../cbb-gcc-4.6.4/libiberty/neutral.c:13:51: warning: incompatible implicit declaration of built-in function ‘calloc’
+ void * xcalloc(size_t nmemb, size_t size) {return calloc(nmemb,size);}
+ ^
+../../cbb-gcc-4.6.4/libiberty/neutral.c: In function ‘xrealloc’:
+../../cbb-gcc-4.6.4/libiberty/neutral.c:14:1: warning: implicit declaration of function ‘realloc’ [-Wimplicit-function-declaration]
+ void * xrealloc(void *ptr, size_t size) {return realloc(ptr,size);}
+ ^
+../../cbb-gcc-4.6.4/libiberty/neutral.c:14:50: warning: incompatible implicit declaration of built-in function ‘realloc’
+ void * xrealloc(void *ptr, size_t size) {return realloc(ptr,size);}
+ ^
+../../cbb-gcc-4.6.4/libiberty/neutral.c: In function ‘xmalloc’:
+../../cbb-gcc-4.6.4/libiberty/neutral.c:17:1: warning: implicit declaration of function ‘malloc’ [-Wimplicit-function-declaration]
+ void * xmalloc(size_t block_size) {return malloc(block_size);}
+ ^
+../../cbb-gcc-4.6.4/libiberty/neutral.c:17:44: warning: incompatible implicit declaration of built-in function ‘malloc’
+ void * xmalloc(size_t block_size) {return malloc(block_size);}
+ ^
+../../cbb-gcc-4.6.4/libiberty/neutral.c: In function ‘xmemdup’:
+../../cbb-gcc-4.6.4/libiberty/neutral.c:21:15: warning: incompatible implicit declaration of built-in function ‘calloc’
+ void * dst = calloc (1, alloc_size);
+ ^
+../../cbb-gcc-4.6.4/libiberty/neutral.c: In function ‘xmalloc_set_program_name’:
+../../cbb-gcc-4.6.4/libiberty/neutral.c:25:44: warning: unused parameter ‘s’ [-Wunused-parameter]
+ void xmalloc_set_program_name (const char *s)
+ ^
+../../cbb-gcc-4.6.4/libiberty/neutral.c: In function ‘xmalloc_failed’:
+../../cbb-gcc-4.6.4/libiberty/neutral.c:30:29: warning: unused parameter ‘size’ [-Wunused-parameter]
+ void xmalloc_failed (size_t size)
+ ^
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../cbb-gcc-4.6.4/libiberty/alloca.c -o alloca.o
+if [ x"-fpic" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic ../../cbb-gcc-4.6.4/libiberty/argv.c -o pic/argv.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../cbb-gcc-4.6.4/libiberty/sha1.c -o sha1.o
+if [ x"" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/simple-object-coff.c -o pic/simple-object-coff.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/simple-object-coff.c -o simple-object-coff.o
+if [ x"-fpic" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic ../../cbb-gcc-4.6.4/libiberty/choose-temp.c -o pic/choose-temp.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../cbb-gcc-4.6.4/libiberty/choose-temp.c -o choose-temp.o
+if [ x"-fpic" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic ../../cbb-gcc-4.6.4/libiberty/concat.c -o pic/concat.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../cbb-gcc-4.6.4/libiberty/argv.c -o argv.o
+if [ x"" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/simple-object-elf.c -o pic/simple-object-elf.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/simple-object-elf.c -o simple-object-elf.o
+configure: creating cache ./config.cache
+if [ x"-fpic" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic ../../cbb-gcc-4.6.4/libiberty/cp-demint.c -o pic/cp-demint.o; \
+else true; fi
+checking build system type... gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../cbb-gcc-4.6.4/libiberty/concat.c -o concat.o
+if [ x"-fpic" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic ../../cbb-gcc-4.6.4/libiberty/crc32.c -o pic/crc32.o; \
+else true; fi
+x86_64-unknown-linux-gnu
+checking host system type... x86_64-unknown-linux-gnu
+checking target system type... if [ x"-fpic" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic ../../cbb-gcc-4.6.4/libiberty/dyn-string.c -o pic/dyn-string.o; \
+else true; fi
+x86_64-nt64-midipix
+checking whether make sets $(MAKE)... gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../cbb-gcc-4.6.4/libiberty/cp-demint.c -o cp-demint.o
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../cbb-gcc-4.6.4/libiberty/crc32.c -o crc32.o
+if [ x"-fpic" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic ../../cbb-gcc-4.6.4/libiberty/fdmatch.c -o pic/fdmatch.o; \
+else true; fi
+yes
+checking for a BSD-compatible install... /usr/bin/install -c
+checking for x86_64-unknown-linux-gnu-gcc... gcc
+if [ x"-fpic" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic ../../cbb-gcc-4.6.4/libiberty/fibheap.c -o pic/fibheap.o; \
+else true; fi
+checking for C compiler default output file name... gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../cbb-gcc-4.6.4/libiberty/fdmatch.c -o fdmatch.o
+if [ x"-fpic" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic ../../cbb-gcc-4.6.4/libiberty/filename_cmp.c -o pic/filename_cmp.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../cbb-gcc-4.6.4/libiberty/dyn-string.c -o dyn-string.o
+if [ x"" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/simple-object-mach-o.c -o pic/simple-object-mach-o.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/simple-object-mach-o.c -o simple-object-mach-o.o
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../cbb-gcc-4.6.4/libiberty/cp-demangle.c -o cp-demangle.o
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../cbb-gcc-4.6.4/libiberty/filename_cmp.c -o filename_cmp.o
+if [ x"" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/sort.c -o pic/sort.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/sort.c -o sort.o
+a.out
+checking whether the C compiler works... yes
+checking whether we are cross compiling... no
+checking for suffix of executables... gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../cbb-gcc-4.6.4/libiberty/fibheap.c -o fibheap.o
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../cbb-gcc-4.6.4/libiberty/cplus-dem.c -o cplus-dem.o
+if [ x"-fpic" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic ../../cbb-gcc-4.6.4/libiberty/floatformat.c -o pic/floatformat.o; \
+else true; fi
+if [ x"-fpic" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic ../../cbb-gcc-4.6.4/libiberty/fnmatch.c -o pic/fnmatch.o; \
+else true; fi
+if [ x"" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/spaces.c -o pic/spaces.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/spaces.c -o spaces.o
+
+checking for suffix of object files... gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../cbb-gcc-4.6.4/libiberty/fnmatch.c -o fnmatch.o
+if [ x"" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/splay-tree.c -o pic/splay-tree.o; \
+else true; fi
+if [ x"" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/strerror.c -o pic/strerror.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/splay-tree.c -o splay-tree.o
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/strerror.c -o strerror.o
+o
+checking whether we are using the GNU C compiler... if [ x"-fpic" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic ../../cbb-gcc-4.6.4/libiberty/fopen_unlocked.c -o pic/fopen_unlocked.o; \
+else true; fi
+if [ x"-fpic" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic ../../cbb-gcc-4.6.4/libiberty/getopt.c -o pic/getopt.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../cbb-gcc-4.6.4/libiberty/floatformat.c -o floatformat.o
+if [ x"" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/strsignal.c -o pic/strsignal.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/strsignal.c -o strsignal.o
+yes
+checking whether gcc accepts -g... gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../cbb-gcc-4.6.4/libiberty/fopen_unlocked.c -o fopen_unlocked.o
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../cbb-gcc-4.6.4/libiberty/getopt.c -o getopt.o
+if [ x"" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/unlink-if-ordinary.c -o pic/unlink-if-ordinary.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/unlink-if-ordinary.c -o unlink-if-ordinary.o
+yes
+checking for gcc option to accept ISO C89... if [ x"-fpic" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic ../../cbb-gcc-4.6.4/libiberty/getopt1.c -o pic/getopt1.o; \
+else true; fi
+if [ x"" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/xatexit.c -o pic/xatexit.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/xatexit.c -o xatexit.o
+if [ x"-fpic" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic ../../cbb-gcc-4.6.4/libiberty/getpwd.c -o pic/getpwd.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../cbb-gcc-4.6.4/libiberty/getopt1.c -o getopt1.o
+if [ x"" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/xexit.c -o pic/xexit.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/xexit.c -o xexit.o
+none needed
+if [ x"" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/xmalloc.c -o pic/xmalloc.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/xmalloc.c -o xmalloc.o
+if [ x"-fpic" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic ../../cbb-gcc-4.6.4/libiberty/getruntime.c -o pic/getruntime.o; \
+else true; fi
+if [ x"-fpic" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic ../../cbb-gcc-4.6.4/libiberty/hashtab.c -o pic/hashtab.o; \
+else true; fi
+checking whether we are using the GNU C++ compiler... if [ x"" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/xmemdup.c -o pic/xmemdup.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/xmemdup.c -o xmemdup.o
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../cbb-gcc-4.6.4/libiberty/getpwd.c -o getpwd.o
+if [ x"" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/xstrdup.c -o pic/xstrdup.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/xstrdup.c -o xstrdup.o
+../../cbb-gcc-4.6.4/libiberty/getruntime.c: In function ‘get_run_time’:
+../../cbb-gcc-4.6.4/libiberty/getruntime.c:98:14: warning: enum conversion when passing argument 1 of ‘getrusage’ is invalid in C++ [-Wc++-compat]
+ getrusage (0, &rusage);
+ ^
+In file included from ../../cbb-gcc-4.6.4/libiberty/getruntime.c:47:0:
+/usr/include/x86_64-linux-gnu/sys/resource.h:87:12: note: expected ‘__rusage_who_t’ but argument is of type ‘int’
+ extern int getrusage (__rusage_who_t __who, struct rusage *__usage) __THROW;
+ ^
+if [ x"" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/xstrerror.c -o pic/xstrerror.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/xstrerror.c -o xstrerror.o
+yes
+checking whether g++ accepts -g... gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../cbb-gcc-4.6.4/libiberty/getruntime.c -o getruntime.o
+if [ x"" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/xstrndup.c -o pic/xstrndup.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/xstrndup.c -o xstrndup.o
+if [ x"" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/asprintf.c -o pic/asprintf.o; \
+else true; fi
+yes
+checking for x86_64-unknown-linux-gnu-ranlib... ranlib
+checking how to run the C preprocessor... gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/asprintf.c -o asprintf.o
+if [ x"-fpic" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic ../../cbb-gcc-4.6.4/libiberty/hex.c -o pic/hex.o; \
+else true; fi
+../../cbb-gcc-4.6.4/libiberty/getruntime.c: In function ‘get_run_time’:
+../../cbb-gcc-4.6.4/libiberty/getruntime.c:98:14: warning: enum conversion when passing argument 1 of ‘getrusage’ is invalid in C++ [-Wc++-compat]
+ getrusage (0, &rusage);
+ ^
+In file included from ../../cbb-gcc-4.6.4/libiberty/getruntime.c:47:0:
+/usr/include/x86_64-linux-gnu/sys/resource.h:87:12: note: expected ‘__rusage_who_t’ but argument is of type ‘int’
+ extern int getrusage (__rusage_who_t __who, struct rusage *__usage) __THROW;
+ ^
+if [ x"" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/rename.c -o pic/rename.o; \
+else true; fi
+gcc -E
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/rename.c -o rename.o
+if [ x"" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/snprintf.c -o pic/snprintf.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/snprintf.c -o snprintf.o
+if [ x"-fpic" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic ../../cbb-gcc-4.6.4/libiberty/lbasename.c -o pic/lbasename.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../cbb-gcc-4.6.4/libiberty/hex.c -o hex.o
+checking for grep that handles long lines and -e... /bin/grep
+checking for egrep... /bin/grep -E
+checking for ANSI C header files... gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../cbb-gcc-4.6.4/libiberty/hashtab.c -o hashtab.o
+if [ x"" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/tmpnam.c -o pic/tmpnam.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/tmpnam.c -o tmpnam.o
+if [ x"" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/vasprintf.c -o pic/vasprintf.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/vasprintf.c -o vasprintf.o
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../cbb-gcc-4.6.4/libiberty/lbasename.c -o lbasename.o
+if [ x"-fpic" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic ../../cbb-gcc-4.6.4/libiberty/lrealpath.c -o pic/lrealpath.o; \
+else true; fi
+if [ x"-fpic" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic ../../cbb-gcc-4.6.4/libiberty/make-relative-prefix.c -o pic/make-relative-prefix.o; \
+else true; fi
+if [ x"" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/vfprintf.c -o pic/vfprintf.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/vfprintf.c -o vfprintf.o
+if [ x"" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/vprintf.c -o pic/vprintf.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/vprintf.c -o vprintf.o
+if [ x"-fpic" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic ../../cbb-gcc-4.6.4/libiberty/make-temp-file.c -o pic/make-temp-file.o; \
+else true; fi
+if [ x"" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/vsnprintf.c -o pic/vsnprintf.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/vsnprintf.c -o vsnprintf.o
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../cbb-gcc-4.6.4/libiberty/lrealpath.c -o lrealpath.o
+if [ x"" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/vsprintf.c -o pic/vsprintf.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/vsprintf.c -o vsprintf.o
+if [ x"-fpic" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic ../../cbb-gcc-4.6.4/libiberty/objalloc.c -o pic/objalloc.o; \
+else true; fi
+if [ x"" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/setproctitle.c -o pic/setproctitle.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../cbb-gcc-4.6.4/libiberty/make-relative-prefix.c -o make-relative-prefix.o
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/setproctitle.c -o setproctitle.o
+if [ x"-fpic" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic ../../cbb-gcc-4.6.4/libiberty/obstack.c -o pic/obstack.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../cbb-gcc-4.6.4/libiberty/make-temp-file.c -o make-temp-file.o
+if [ x"" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/_doprnt.c -o pic/_doprnt.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/_doprnt.c -o _doprnt.o
+if [ x"-fpic" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic ../../cbb-gcc-4.6.4/libiberty/partition.c -o pic/partition.o; \
+else true; fi
+yes
+echo ./neutral.o ./regex.o ./cplus-dem.o ./cp-demangle.o ./md5.o ./sha1.o ./alloca.o ./argv.o ./choose-temp.o ./concat.o ./cp-demint.o ./crc32.o ./dyn-string.o ./fdmatch.o ./fibheap.o ./filename_cmp.o ./floatformat.o ./fnmatch.o ./fopen_unlocked.o ./getopt.o ./getopt1.o ./getpwd.o ./getruntime.o ./hashtab.o ./hex.o ./lbasename.o ./lrealpath.o ./make-relative-prefix.o ./make-temp-file.o ./objalloc.o ./obstack.o ./partition.o ./pexecute.o ./physmem.o ./pex-common.o ./pex-one.o ./pex-unix.o ./safe-ctype.o ./simple-object.o ./simple-object-coff.o ./simple-object-elf.o ./simple-object-mach-o.o ./sort.o ./spaces.o ./splay-tree.o ./strerror.o ./strsignal.o ./unlink-if-ordinary.o ./xatexit.o ./xexit.o ./xmalloc.o ./xmemdup.o ./xstrdup.o ./xstrerror.o ./xstrndup.o > required-list
+checking for sys/types.h... gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../cbb-gcc-4.6.4/libiberty/obstack.c -o obstack.o
+make[2]: Entering directory '/home/lucio/midipix/tmp/cbb-gcc-4.6.4-build-x86_64-nt64-midipix/build-x86_64-unknown-linux-gnu/libiberty/testsuite'
+make[2]: Nothing to be done for 'all'.
+make[2]: Leaving directory '/home/lucio/midipix/tmp/cbb-gcc-4.6.4-build-x86_64-nt64-midipix/build-x86_64-unknown-linux-gnu/libiberty/testsuite'
+if [ x"" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/neutral.c -o pic/neutral.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/neutral.c -o neutral.o
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../cbb-gcc-4.6.4/libiberty/objalloc.c -o objalloc.o
+../../../cbb-gcc-4.6.4/libiberty/_doprnt.c: In function ‘_doprnt’:
+../../../cbb-gcc-4.6.4/libiberty/_doprnt.c:160:20: warning: ISO C90 does not support ‘long long’ [-Wlong-long]
+ PRINT_TYPE(long long);
+ ^
+../../../cbb-gcc-4.6.4/libiberty/_doprnt.c:64:2: note: in definition of macro ‘PRINT_TYPE’
+ TYPE value = va_arg (ap, TYPE); \
+ ^
+In file included from /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-common.h:19:0,
+ from /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h:7,
+ from <command-line>:0:
+../../../cbb-gcc-4.6.4/libiberty/_doprnt.c:160:20: warning: ISO C90 does not support ‘long long’ [-Wlong-long]
+ PRINT_TYPE(long long);
+ ^
+../../../cbb-gcc-4.6.4/libiberty/_doprnt.c:160:4: note: in expansion of macro ‘PRINT_TYPE’
+ PRINT_TYPE(long long);
+ ^
+if [ x"-fpic" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic ../../cbb-gcc-4.6.4/libiberty/pexecute.c -o pic/pexecute.o; \
+else true; fi
+../../../cbb-gcc-4.6.4/libiberty/neutral.c: In function ‘xatexit’:
+../../../cbb-gcc-4.6.4/libiberty/neutral.c:12:1: warning: implicit declaration of function ‘atexit’ [-Wimplicit-function-declaration]
+ int xatexit(void (*function)(void)) {return atexit(function);}
+ ^
+../../../cbb-gcc-4.6.4/libiberty/neutral.c: In function ‘xcalloc’:
+../../../cbb-gcc-4.6.4/libiberty/neutral.c:13:1: warning: implicit declaration of function ‘calloc’ [-Wimplicit-function-declaration]
+ void * xcalloc(size_t nmemb, size_t size) {return calloc(nmemb,size);}
+ ^
+../../../cbb-gcc-4.6.4/libiberty/neutral.c:13:51: warning: incompatible implicit declaration of built-in function ‘calloc’
+ void * xcalloc(size_t nmemb, size_t size) {return calloc(nmemb,size);}
+ ^
+../../../cbb-gcc-4.6.4/libiberty/neutral.c: In function ‘xrealloc’:
+../../../cbb-gcc-4.6.4/libiberty/neutral.c:14:1: warning: implicit declaration of function ‘realloc’ [-Wimplicit-function-declaration]
+ void * xrealloc(void *ptr, size_t size) {return realloc(ptr,size);}
+ ^
+../../../cbb-gcc-4.6.4/libiberty/neutral.c:14:50: warning: incompatible implicit declaration of built-in function ‘realloc’
+ void * xrealloc(void *ptr, size_t size) {return realloc(ptr,size);}
+ ^
+../../../cbb-gcc-4.6.4/libiberty/neutral.c: In function ‘xmalloc’:
+../../../cbb-gcc-4.6.4/libiberty/neutral.c:17:1: warning: implicit declaration of function ‘malloc’ [-Wimplicit-function-declaration]
+ void * xmalloc(size_t block_size) {return malloc(block_size);}
+ ^
+../../../cbb-gcc-4.6.4/libiberty/neutral.c:17:44: warning: incompatible implicit declaration of built-in function ‘malloc’
+ void * xmalloc(size_t block_size) {return malloc(block_size);}
+ ^
+../../../cbb-gcc-4.6.4/libiberty/neutral.c: In function ‘xmemdup’:
+../../../cbb-gcc-4.6.4/libiberty/neutral.c:21:15: warning: incompatible implicit declaration of built-in function ‘calloc’
+ void * dst = calloc (1, alloc_size);
+ ^
+../../../cbb-gcc-4.6.4/libiberty/neutral.c: In function ‘xmalloc_set_program_name’:
+../../../cbb-gcc-4.6.4/libiberty/neutral.c:25:44: warning: unused parameter ‘s’ [-Wunused-parameter]
+ void xmalloc_set_program_name (const char *s)
+ ^
+../../../cbb-gcc-4.6.4/libiberty/neutral.c: In function ‘xmalloc_failed’:
+../../../cbb-gcc-4.6.4/libiberty/neutral.c:30:29: warning: unused parameter ‘size’ [-Wunused-parameter]
+ void xmalloc_failed (size_t size)
+ ^
+if [ x"-fpic" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic ../../cbb-gcc-4.6.4/libiberty/physmem.c -o pic/physmem.o; \
+else true; fi
+if [ x"-fpic" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic ../../cbb-gcc-4.6.4/libiberty/pex-common.c -o pic/pex-common.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../cbb-gcc-4.6.4/libiberty/partition.c -o partition.o
+yes
+checking for sys/stat.h... if [ x"" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/regex.c -o pic/regex.o; \
+else true; fi
+if [ x"" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/cplus-dem.c -o pic/cplus-dem.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/regex.c -o regex.o
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/cplus-dem.c -o cplus-dem.o
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../cbb-gcc-4.6.4/libiberty/pexecute.c -o pexecute.o
+if [ x"-fpic" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic ../../cbb-gcc-4.6.4/libiberty/pex-one.c -o pic/pex-one.o; \
+else true; fi
+if [ x"" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/cp-demangle.c -o pic/cp-demangle.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/cp-demangle.c -o cp-demangle.o
+yes
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../cbb-gcc-4.6.4/libiberty/physmem.c -o physmem.o
+if [ x"-fpic" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic ../../cbb-gcc-4.6.4/libiberty/pex-unix.c -o pic/pex-unix.o; \
+else true; fi
+checking for stdlib.h... gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../cbb-gcc-4.6.4/libiberty/pex-one.c -o pex-one.o
+if [ x"-fpic" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic ../../cbb-gcc-4.6.4/libiberty/safe-ctype.c -o pic/safe-ctype.o; \
+else true; fi
+yes
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../cbb-gcc-4.6.4/libiberty/pex-common.c -o pex-common.o
+checking for string.h... if [ x"-fpic" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic ../../cbb-gcc-4.6.4/libiberty/simple-object.c -o pic/simple-object.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../cbb-gcc-4.6.4/libiberty/safe-ctype.c -o safe-ctype.o
+if [ x"-fpic" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic ../../cbb-gcc-4.6.4/libiberty/simple-object-coff.c -o pic/simple-object-coff.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../cbb-gcc-4.6.4/libiberty/pex-unix.c -o pex-unix.o
+yes
+if [ x"-fpic" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic ../../cbb-gcc-4.6.4/libiberty/simple-object-elf.c -o pic/simple-object-elf.o; \
+else true; fi
+checking for memory.h... gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../cbb-gcc-4.6.4/libiberty/simple-object.c -o simple-object.o
+if [ x"-fpic" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic ../../cbb-gcc-4.6.4/libiberty/simple-object-mach-o.c -o pic/simple-object-mach-o.o; \
+else true; fi
+yes
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../cbb-gcc-4.6.4/libiberty/simple-object-coff.c -o simple-object-coff.o
+checking for strings.h... if [ x"-fpic" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic ../../cbb-gcc-4.6.4/libiberty/sort.c -o pic/sort.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../cbb-gcc-4.6.4/libiberty/simple-object-elf.c -o simple-object-elf.o
+yes
+if [ x"-fpic" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic ../../cbb-gcc-4.6.4/libiberty/spaces.c -o pic/spaces.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../cbb-gcc-4.6.4/libiberty/sort.c -o sort.o
+checking for inttypes.h... gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../cbb-gcc-4.6.4/libiberty/spaces.c -o spaces.o
+yes
+if [ x"-fpic" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic ../../cbb-gcc-4.6.4/libiberty/splay-tree.c -o pic/splay-tree.o; \
+else true; fi
+if [ x"-fpic" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic ../../cbb-gcc-4.6.4/libiberty/strerror.c -o pic/strerror.o; \
+else true; fi
+checking for stdint.h... gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../cbb-gcc-4.6.4/libiberty/simple-object-mach-o.c -o simple-object-mach-o.o
+if [ x"-fpic" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic ../../cbb-gcc-4.6.4/libiberty/strsignal.c -o pic/strsignal.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../cbb-gcc-4.6.4/libiberty/strerror.c -o strerror.o
+yes
+checking for unistd.h... gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../cbb-gcc-4.6.4/libiberty/strsignal.c -o strsignal.o
+if [ x"-fpic" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic ../../cbb-gcc-4.6.4/libiberty/unlink-if-ordinary.c -o pic/unlink-if-ordinary.o; \
+else true; fi
+if [ x"-fpic" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic ../../cbb-gcc-4.6.4/libiberty/xatexit.c -o pic/xatexit.o; \
+else true; fi
+if [ x"" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/md5.c -o pic/md5.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../cbb-gcc-4.6.4/libiberty/splay-tree.c -o splay-tree.o
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/md5.c -o md5.o
+if [ x"" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/sha1.c -o pic/sha1.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/sha1.c -o sha1.o
+if [ x"" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/alloca.c -o pic/alloca.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/alloca.c -o alloca.o
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../cbb-gcc-4.6.4/libiberty/xatexit.c -o xatexit.o
+yes
+checking minix/config.h usability... gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../cbb-gcc-4.6.4/libiberty/unlink-if-ordinary.c -o unlink-if-ordinary.o
+if [ x"-fpic" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic ../../cbb-gcc-4.6.4/libiberty/xexit.c -o pic/xexit.o; \
+else true; fi
+if [ x"" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/argv.c -o pic/argv.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/argv.c -o argv.o
+if [ x"-fpic" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic ../../cbb-gcc-4.6.4/libiberty/xmalloc.c -o pic/xmalloc.o; \
+else true; fi
+if [ x"-fpic" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic ../../cbb-gcc-4.6.4/libiberty/xmemdup.c -o pic/xmemdup.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../cbb-gcc-4.6.4/libiberty/xexit.c -o xexit.o
+if [ x"-fpic" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic ../../cbb-gcc-4.6.4/libiberty/xstrdup.c -o pic/xstrdup.o; \
+else true; fi
+if [ x"" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/choose-temp.c -o pic/choose-temp.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/choose-temp.c -o choose-temp.o
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../cbb-gcc-4.6.4/libiberty/xmalloc.c -o xmalloc.o
+if [ x"-fpic" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic ../../cbb-gcc-4.6.4/libiberty/xstrerror.c -o pic/xstrerror.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../cbb-gcc-4.6.4/libiberty/xmemdup.c -o xmemdup.o
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../cbb-gcc-4.6.4/libiberty/xstrdup.c -o xstrdup.o
+if [ x"" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/concat.c -o pic/concat.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/concat.c -o concat.o
+if [ x"-fpic" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic ../../cbb-gcc-4.6.4/libiberty/xstrndup.c -o pic/xstrndup.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../cbb-gcc-4.6.4/libiberty/xstrerror.c -o xstrerror.o
+if [ x"-fpic" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic ../../cbb-gcc-4.6.4/libiberty/asprintf.c -o pic/asprintf.o; \
+else true; fi
+if [ x"" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/cp-demint.c -o pic/cp-demint.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/cp-demint.c -o cp-demint.o
+if [ x"-fpic" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic ../../cbb-gcc-4.6.4/libiberty/rename.c -o pic/rename.o; \
+else true; fi
+if [ x"" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/crc32.c -o pic/crc32.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/crc32.c -o crc32.o
+no
+checking minix/config.h presence... no
+checking for minix/config.h... no
+checking whether it is safe to define __EXTENSIONS__... if [ x"-fpic" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic ../../cbb-gcc-4.6.4/libiberty/snprintf.c -o pic/snprintf.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../cbb-gcc-4.6.4/libiberty/asprintf.c -o asprintf.o
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../cbb-gcc-4.6.4/libiberty/xstrndup.c -o xstrndup.o
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../cbb-gcc-4.6.4/libiberty/rename.c -o rename.o
+if [ x"" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/dyn-string.c -o pic/dyn-string.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/dyn-string.c -o dyn-string.o
+if [ x"" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/fdmatch.c -o pic/fdmatch.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/fdmatch.c -o fdmatch.o
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../cbb-gcc-4.6.4/libiberty/snprintf.c -o snprintf.o
+if [ x"-fpic" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic ../../cbb-gcc-4.6.4/libiberty/tmpnam.c -o pic/tmpnam.o; \
+else true; fi
+if [ x"-fpic" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic ../../cbb-gcc-4.6.4/libiberty/vasprintf.c -o pic/vasprintf.o; \
+else true; fi
+yes
+checking for special C compiler options needed for large files... no
+checking for _FILE_OFFSET_BITS value needed for large files... if [ x"-fpic" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic ../../cbb-gcc-4.6.4/libiberty/vfprintf.c -o pic/vfprintf.o; \
+else true; fi
+if [ x"" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/fibheap.c -o pic/fibheap.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/fibheap.c -o fibheap.o
+if [ x"" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/filename_cmp.c -o pic/filename_cmp.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/filename_cmp.c -o filename_cmp.o
+if [ x"-fpic" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic ../../cbb-gcc-4.6.4/libiberty/vprintf.c -o pic/vprintf.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../cbb-gcc-4.6.4/libiberty/vasprintf.c -o vasprintf.o
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../cbb-gcc-4.6.4/libiberty/vfprintf.c -o vfprintf.o
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../cbb-gcc-4.6.4/libiberty/tmpnam.c -o tmpnam.o
+no
+checking for aclocal... no
+checking for autoconf... no
+checking for autoheader... no
+checking whether gcc supports -W... if [ x"-fpic" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic ../../cbb-gcc-4.6.4/libiberty/vsnprintf.c -o pic/vsnprintf.o; \
+else true; fi
+if [ x"-fpic" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic ../../cbb-gcc-4.6.4/libiberty/vsprintf.c -o pic/vsprintf.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../cbb-gcc-4.6.4/libiberty/vprintf.c -o vprintf.o
+if [ x"" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/floatformat.c -o pic/floatformat.o; \
+else true; fi
+if [ x"" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/fnmatch.c -o pic/fnmatch.o; \
+else true; fi
+if [ x"-fpic" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic ../../cbb-gcc-4.6.4/libiberty/setproctitle.c -o pic/setproctitle.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/floatformat.c -o floatformat.o
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/fnmatch.c -o fnmatch.o
+yes
+checking whether gcc supports -Wall... gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../cbb-gcc-4.6.4/libiberty/vsnprintf.c -o vsnprintf.o
+if [ x"-fpic" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic ../../cbb-gcc-4.6.4/libiberty/_doprnt.c -o pic/_doprnt.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../cbb-gcc-4.6.4/libiberty/vsprintf.c -o vsprintf.o
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../cbb-gcc-4.6.4/libiberty/setproctitle.c -o setproctitle.o
+if [ x"" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/fopen_unlocked.c -o pic/fopen_unlocked.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/fopen_unlocked.c -o fopen_unlocked.o
+if [ x"" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/getopt.c -o pic/getopt.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/getopt.c -o getopt.o
+yes
+if [ x"" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/getopt1.c -o pic/getopt1.o; \
+else true; fi
+checking whether gcc supports -Wwrite-strings... gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/getopt1.c -o getopt1.o
+if [ x"" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/getpwd.c -o pic/getpwd.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/getpwd.c -o getpwd.o
+../../cbb-gcc-4.6.4/libiberty/_doprnt.c: In function ‘_doprnt’:
+../../cbb-gcc-4.6.4/libiberty/_doprnt.c:160:20: warning: ISO C90 does not support ‘long long’ [-Wlong-long]
+ PRINT_TYPE(long long);
+ ^
+../../cbb-gcc-4.6.4/libiberty/_doprnt.c:64:2: note: in definition of macro ‘PRINT_TYPE’
+ TYPE value = va_arg (ap, TYPE); \
+ ^
+In file included from /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-common.h:19:0,
+ from /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h:7,
+ from <command-line>:0:
+../../cbb-gcc-4.6.4/libiberty/_doprnt.c:160:20: warning: ISO C90 does not support ‘long long’ [-Wlong-long]
+ PRINT_TYPE(long long);
+ ^
+../../cbb-gcc-4.6.4/libiberty/_doprnt.c:160:4: note: in expansion of macro ‘PRINT_TYPE’
+ PRINT_TYPE(long long);
+ ^
+if [ x"" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/getruntime.c -o pic/getruntime.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/getruntime.c -o getruntime.o
+if [ x"" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/hashtab.c -o pic/hashtab.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/hashtab.c -o hashtab.o
+if [ x"" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/hex.c -o pic/hex.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/hex.c -o hex.o
+yes
+if [ x"" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/lbasename.c -o pic/lbasename.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/lbasename.c -o lbasename.o
+checking whether gcc supports -Wmissing-format-attribute... gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../cbb-gcc-4.6.4/libiberty/_doprnt.c -o _doprnt.o
+if [ x"" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/lrealpath.c -o pic/lrealpath.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/lrealpath.c -o lrealpath.o
+if [ x"" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/make-relative-prefix.c -o pic/make-relative-prefix.o; \
+else true; fi
+../../../cbb-gcc-4.6.4/libiberty/getruntime.c: In function ‘get_run_time’:
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/make-relative-prefix.c -o make-relative-prefix.o
+../../../cbb-gcc-4.6.4/libiberty/getruntime.c:98:14: warning: enum conversion when passing argument 1 of ‘getrusage’ is invalid in C++ [-Wc++-compat]
+ getrusage (0, &rusage);
+ ^
+In file included from ../../../cbb-gcc-4.6.4/libiberty/getruntime.c:47:0:
+/usr/include/x86_64-linux-gnu/sys/resource.h:87:12: note: expected ‘__rusage_who_t’ but argument is of type ‘int’
+ extern int getrusage (__rusage_who_t __who, struct rusage *__usage) __THROW;
+ ^
+yes
+checking whether gcc supports -Wstrict-prototypes... if [ x"" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/make-temp-file.c -o pic/make-temp-file.o; \
+else true; fi
+if [ x"" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/objalloc.c -o pic/objalloc.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/objalloc.c -o objalloc.o
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/make-temp-file.c -o make-temp-file.o
+../../cbb-gcc-4.6.4/libiberty/_doprnt.c: In function ‘_doprnt’:
+../../cbb-gcc-4.6.4/libiberty/_doprnt.c:160:20: warning: ISO C90 does not support ‘long long’ [-Wlong-long]
+ PRINT_TYPE(long long);
+ ^
+../../cbb-gcc-4.6.4/libiberty/_doprnt.c:64:2: note: in definition of macro ‘PRINT_TYPE’
+ TYPE value = va_arg (ap, TYPE); \
+ ^
+In file included from /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-common.h:19:0,
+ from /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h:7,
+ from <command-line>:0:
+../../cbb-gcc-4.6.4/libiberty/_doprnt.c:160:20: warning: ISO C90 does not support ‘long long’ [-Wlong-long]
+ PRINT_TYPE(long long);
+ ^
+../../cbb-gcc-4.6.4/libiberty/_doprnt.c:160:4: note: in expansion of macro ‘PRINT_TYPE’
+ PRINT_TYPE(long long);
+ ^
+if [ x"" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/obstack.c -o pic/obstack.o; \
+else true; fi
+if [ x"" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/partition.c -o pic/partition.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/obstack.c -o obstack.o
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/partition.c -o partition.o
+yes
+rm -f ./libiberty.a pic/./libiberty.a
+ar rc ./libiberty.a \
+ ./neutral.o ./regex.o ./cplus-dem.o ./cp-demangle.o ./md5.o ./sha1.o ./alloca.o ./argv.o ./choose-temp.o ./concat.o ./cp-demint.o ./crc32.o ./dyn-string.o ./fdmatch.o ./fibheap.o ./filename_cmp.o ./floatformat.o ./fnmatch.o ./fopen_unlocked.o ./getopt.o ./getopt1.o ./getpwd.o ./getruntime.o ./hashtab.o ./hex.o ./lbasename.o ./lrealpath.o ./make-relative-prefix.o ./make-temp-file.o ./objalloc.o ./obstack.o ./partition.o ./pexecute.o ./physmem.o ./pex-common.o ./pex-one.o ./pex-unix.o ./safe-ctype.o ./simple-object.o ./simple-object-coff.o ./simple-object-elf.o ./simple-object-mach-o.o ./sort.o ./spaces.o ./splay-tree.o ./strerror.o ./strsignal.o ./unlink-if-ordinary.o ./xatexit.o ./xexit.o ./xmalloc.o ./xmemdup.o ./xstrdup.o ./xstrerror.o ./xstrndup.o ./asprintf.o ./rename.o ./snprintf.o ./tmpnam.o ./vasprintf.o ./vfprintf.o ./vprintf.o ./vsnprintf.o ./vsprintf.o ./setproctitle.o ./_doprnt.o
+checking whether gcc supports -Wmissing-prototypes... ranlib ./libiberty.a
+if [ x"-fpic" != x ]; then \
+ cd pic; \
+ ar rc ./libiberty.a \
+ ./neutral.o ./regex.o ./cplus-dem.o ./cp-demangle.o ./md5.o ./sha1.o ./alloca.o ./argv.o ./choose-temp.o ./concat.o ./cp-demint.o ./crc32.o ./dyn-string.o ./fdmatch.o ./fibheap.o ./filename_cmp.o ./floatformat.o ./fnmatch.o ./fopen_unlocked.o ./getopt.o ./getopt1.o ./getpwd.o ./getruntime.o ./hashtab.o ./hex.o ./lbasename.o ./lrealpath.o ./make-relative-prefix.o ./make-temp-file.o ./objalloc.o ./obstack.o ./partition.o ./pexecute.o ./physmem.o ./pex-common.o ./pex-one.o ./pex-unix.o ./safe-ctype.o ./simple-object.o ./simple-object-coff.o ./simple-object-elf.o ./simple-object-mach-o.o ./sort.o ./spaces.o ./splay-tree.o ./strerror.o ./strsignal.o ./unlink-if-ordinary.o ./xatexit.o ./xexit.o ./xmalloc.o ./xmemdup.o ./xstrdup.o ./xstrerror.o ./xstrndup.o ./asprintf.o ./rename.o ./snprintf.o ./tmpnam.o ./vasprintf.o ./vfprintf.o ./vprintf.o ./vsnprintf.o ./vsprintf.o ./setproctitle.o ./_doprnt.o; \
+ ranlib ./libiberty.a; \
+ cd ..; \
+else true; fi
+if [ x"" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/pexecute.c -o pic/pexecute.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/pexecute.c -o pexecute.o
+if [ x"" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/physmem.c -o pic/physmem.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/physmem.c -o physmem.o
+if [ x"" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/pex-common.c -o pic/pex-common.o; \
+else true; fi
+make[1]: Leaving directory '/home/lucio/midipix/tmp/cbb-gcc-4.6.4-build-x86_64-nt64-midipix/libiberty'
+if [ x"" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/pex-one.c -o pic/pex-one.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/pex-common.c -o pex-common.o
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/pex-one.c -o pex-one.o
+if [ x"" != x ]; then \
+ gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/pex-unix.c -o pic/pex-unix.o; \
+else true; fi
+gcc -c -DHAVE_CONFIG_H --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -I. -I../../../cbb-gcc-4.6.4/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic ../../../cbb-gcc-4.6.4/libiberty/pex-unix.c -o pex-unix.o
+yes
+checking whether gcc supports -Wold-style-definition... make[1]: Entering directory '/home/lucio/midipix/tmp/cbb-gcc-4.6.4-build-x86_64-nt64-midipix/lto-plugin'
+make all-am
+make[2]: Entering directory '/home/lucio/midipix/tmp/cbb-gcc-4.6.4-build-x86_64-nt64-midipix/lto-plugin'
+make[1]: Entering directory '/home/lucio/midipix/tmp/cbb-gcc-4.6.4-build-x86_64-nt64-midipix/fixincludes'
+gcc -o fixincl /home/lucio/midipix/tmp/cbb-gcc-4.6.4/fixincludes/fixincl.c
+cp /home/lucio/midipix/tmp/cbb-gcc-4.6.4/fixincludes/fixinc.sh .
+/bin/bash ./libtool --tag=CC --tag=disable-static --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../cbb-gcc-4.6.4/lto-plugin -I../../cbb-gcc-4.6.4/lto-plugin/../include -DHAVE_CONFIG_H -Wall --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -c -o lto-plugin.lo ../../cbb-gcc-4.6.4/lto-plugin/lto-plugin.c
+chmod +x fixinc.sh
+yes
+checking whether gcc supports -Wc++-compat... yes
+checking whether gcc supports -pedantic -Wno-long-long... libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../cbb-gcc-4.6.4/lto-plugin -I../../cbb-gcc-4.6.4/lto-plugin/../include -DHAVE_CONFIG_H -Wall --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -c ../../cbb-gcc-4.6.4/lto-plugin/lto-plugin.c -fPIC -DPIC -o .libs/lto-plugin.o
+rm -f ./libiberty.a pic/./libiberty.a
+ar rc ./libiberty.a \
+ ./neutral.o ./regex.o ./cplus-dem.o ./cp-demangle.o ./md5.o ./sha1.o ./alloca.o ./argv.o ./choose-temp.o ./concat.o ./cp-demint.o ./crc32.o ./dyn-string.o ./fdmatch.o ./fibheap.o ./filename_cmp.o ./floatformat.o ./fnmatch.o ./fopen_unlocked.o ./getopt.o ./getopt1.o ./getpwd.o ./getruntime.o ./hashtab.o ./hex.o ./lbasename.o ./lrealpath.o ./make-relative-prefix.o ./make-temp-file.o ./objalloc.o ./obstack.o ./partition.o ./pexecute.o ./physmem.o ./pex-common.o ./pex-one.o ./pex-unix.o ./safe-ctype.o ./simple-object.o ./simple-object-coff.o ./simple-object-elf.o ./simple-object-mach-o.o ./sort.o ./spaces.o ./splay-tree.o ./strerror.o ./strsignal.o ./unlink-if-ordinary.o ./xatexit.o ./xexit.o ./xmalloc.o ./xmemdup.o ./xstrdup.o ./xstrerror.o ./xstrndup.o ./asprintf.o ./rename.o ./snprintf.o ./tmpnam.o ./vasprintf.o ./vfprintf.o ./vprintf.o ./vsnprintf.o ./vsprintf.o ./setproctitle.o ./_doprnt.o
+make[1]: Leaving directory '/home/lucio/midipix/tmp/cbb-gcc-4.6.4-build-x86_64-nt64-midipix/fixincludes'
+yes
+ranlib ./libiberty.a
+checking dependency style of gcc... if [ x"" != x ]; then \
+ cd pic; \
+ ar rc ./libiberty.a \
+ ./neutral.o ./regex.o ./cplus-dem.o ./cp-demangle.o ./md5.o ./sha1.o ./alloca.o ./argv.o ./choose-temp.o ./concat.o ./cp-demint.o ./crc32.o ./dyn-string.o ./fdmatch.o ./fibheap.o ./filename_cmp.o ./floatformat.o ./fnmatch.o ./fopen_unlocked.o ./getopt.o ./getopt1.o ./getpwd.o ./getruntime.o ./hashtab.o ./hex.o ./lbasename.o ./lrealpath.o ./make-relative-prefix.o ./make-temp-file.o ./objalloc.o ./obstack.o ./partition.o ./pexecute.o ./physmem.o ./pex-common.o ./pex-one.o ./pex-unix.o ./safe-ctype.o ./simple-object.o ./simple-object-coff.o ./simple-object-elf.o ./simple-object-mach-o.o ./sort.o ./spaces.o ./splay-tree.o ./strerror.o ./strsignal.o ./unlink-if-ordinary.o ./xatexit.o ./xexit.o ./xmalloc.o ./xmemdup.o ./xstrdup.o ./xstrerror.o ./xstrndup.o ./asprintf.o ./rename.o ./snprintf.o ./tmpnam.o ./vasprintf.o ./vfprintf.o ./vprintf.o ./vsnprintf.o ./vsprintf.o ./setproctitle.o ./_doprnt.o; \
+ ranlib ./libiberty.a; \
+ cd ..; \
+else true; fi
+make[1]: Leaving directory '/home/lucio/midipix/tmp/cbb-gcc-4.6.4-build-x86_64-nt64-midipix/build-x86_64-unknown-linux-gnu/libiberty'
+make[1]: Entering directory '/home/lucio/midipix/tmp/cbb-gcc-4.6.4-build-x86_64-nt64-midipix/build-x86_64-unknown-linux-gnu/fixincludes'
+gcc -o fixincl /home/lucio/midipix/tmp/cbb-gcc-4.6.4/fixincludes/fixincl.c
+cp /home/lucio/midipix/tmp/cbb-gcc-4.6.4/fixincludes/fixinc.sh .
+chmod +x fixinc.sh
+gcc3
+checking whether time.h and sys/time.h may both be included... make[1]: Leaving directory '/home/lucio/midipix/tmp/cbb-gcc-4.6.4-build-x86_64-nt64-midipix/build-x86_64-unknown-linux-gnu/fixincludes'
+/bin/bash ./libtool --tag=CC --tag=disable-static --mode=link gcc -Wall --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -module -bindir /home/lucio/midipix/libexec/gcc/x86_64-nt64-midipix/4.6.4 -o liblto_plugin.la -rpath /home/lucio/midipix/libexec/gcc/x86_64-nt64-midipix/4.6.4 lto-plugin.lo -Wc,../libiberty/pic/libiberty.a
+yes
+checking whether string.h and strings.h may both be included... yes
+checking locale.h usability... yes
+checking locale.h presence... yes
+checking for locale.h... yes
+checking fcntl.h usability... yes
+checking fcntl.h presence... yes
+checking for fcntl.h... yes
+checking limits.h usability... yes
+checking limits.h presence... yes
+checking for limits.h... yes
+checking stddef.h usability... yes
+checking stddef.h presence... yes
+checking for stddef.h... yes
+checking for stdlib.h... (cached) yes
+checking for strings.h... (cached) yes
+checking for string.h... (cached) yes
+checking sys/file.h usability... yes
+checking sys/file.h presence... yes
+checking for sys/file.h... yes
+checking for unistd.h... (cached) yes
+checking whether byte ordering is bigendian... libtool: link: gcc -shared .libs/lto-plugin.o ../libiberty/pic/libiberty.a -Wl,-soname -Wl,liblto_plugin.so.0 -o .libs/liblto_plugin.so.0.0.0
+libtool: link: (cd ".libs" && rm -f "liblto_plugin.so.0" && ln -s "liblto_plugin.so.0.0.0" "liblto_plugin.so.0")
+libtool: link: (cd ".libs" && rm -f "liblto_plugin.so" && ln -s "liblto_plugin.so.0.0.0" "liblto_plugin.so")
+libtool: link: ( cd ".libs" && rm -f "liblto_plugin.la" && ln -s "../liblto_plugin.la" "liblto_plugin.la" )
+mkdir -p -- .././gcc
+no
+checking for an ANSI C-conforming const... libtool: install: /usr/bin/install -c .libs/liblto_plugin.so.0.0.0 /home/lucio/midipix/tmp/cbb-gcc-4.6.4-build-x86_64-nt64-midipix/lto-plugin/.././gcc/liblto_plugin.so.0.0.0
+libtool: install: (cd /home/lucio/midipix/tmp/cbb-gcc-4.6.4-build-x86_64-nt64-midipix/lto-plugin/.././gcc && { ln -s -f liblto_plugin.so.0.0.0 liblto_plugin.so.0 || { rm -f liblto_plugin.so.0 && ln -s liblto_plugin.so.0.0.0 liblto_plugin.so.0; }; })
+libtool: install: (cd /home/lucio/midipix/tmp/cbb-gcc-4.6.4-build-x86_64-nt64-midipix/lto-plugin/.././gcc && { ln -s -f liblto_plugin.so.0.0.0 liblto_plugin.so || { rm -f liblto_plugin.so && ln -s liblto_plugin.so.0.0.0 liblto_plugin.so; }; })
+libtool: install: /usr/bin/install -c .libs/liblto_plugin.lai /home/lucio/midipix/tmp/cbb-gcc-4.6.4-build-x86_64-nt64-midipix/lto-plugin/.././gcc/liblto_plugin.la
+libtool: install: warning: remember to run `libtool --finish /home/lucio/midipix/libexec/gcc/x86_64-nt64-midipix/4.6.4'
+make[2]: Leaving directory '/home/lucio/midipix/tmp/cbb-gcc-4.6.4-build-x86_64-nt64-midipix/lto-plugin'
+make[1]: Leaving directory '/home/lucio/midipix/tmp/cbb-gcc-4.6.4-build-x86_64-nt64-midipix/lto-plugin'
+yes
+checking for inline... Configuring in ./gcc
+inline
+checking for obstacks... yes
+checking for off_t... yes
+checking for size_t... yes
+checking for ssize_t... configure: creating cache ./config.cache
+yes
+checking for uintptr_t... checking build system type... x86_64-unknown-linux-gnu
+checking host system type... x86_64-unknown-linux-gnu
+checking target system type... x86_64-nt64-midipix
+checking LIBRARY_PATH variable... ok
+checking GCC_EXEC_PREFIX variable... ok
+checking whether to place generated files in the source directory... no
+checking whether a default linker was specified... no
+checking whether a default assembler was specified... no
+checking for x86_64-unknown-linux-gnu-gcc... gcc
+yes
+checking for ptrdiff_t... checking for C compiler default output file name... a.out
+checking whether the C compiler works... yes
+checking whether we are cross compiling... no
+checking for suffix of executables... yes
+checking whether struct tm is in sys/time.h or time.h...
+checking for suffix of object files... o
+checking whether we are using the GNU C compiler... time.h
+checking size of int... yes
+checking whether gcc accepts -g... yes
+checking for gcc option to accept ISO C89... 4
+checking size of long... none needed
+checking whether gcc and cc understand -c and -o together... 8
+checking for clearerr_unlocked... no
+checking for feof_unlocked... yes
+no
+checking for ferror_unlocked... checking whether we are using the GNU C++ compiler... no
+checking for fflush_unlocked... yes
+checking whether g++ accepts -g... no
+checking for fgetc_unlocked... yes
+checking for x86_64-unknown-linux-gnu-gnatbind... no
+checking for gnatbind... no
+checking for x86_64-unknown-linux-gnu-gnatmake... no
+checking for gnatmake... no
+checking whether compiler driver understands Ada... no
+no
+checking how to run the C preprocessor... checking for fgets_unlocked... gcc -E
+no
+checking for fileno_unlocked... checking for grep that handles long lines and -e... /bin/grep
+checking for egrep... /bin/grep -E
+checking for ANSI C header files... no
+checking for fprintf_unlocked... no
+checking for fputc_unlocked... no
+checking for fputs_unlocked... yes
+checking for sys/types.h... no
+yes
+checking for fread_unlocked... checking for sys/stat.h... no
+checking for fwrite_unlocked... yes
+checking for stdlib.h... no
+checking for getchar_unlocked... yes
+checking for string.h... no
+checking for getc_unlocked... yes
+checking for memory.h... no
+checking for putchar_unlocked... yes
+checking for strings.h... no
+checking for putc_unlocked... yes
+no
+checking for inttypes.h... checking whether abort is declared... yes
+checking for stdint.h... yes
+checking whether asprintf is declared... yes
+checking for unistd.h... yes
+checking whether basename is declared... yes
+checking minix/config.h usability... yes
+checking whether errno is declared... yes
+checking whether getopt is declared... no
+checking minix/config.h presence... no
+checking for minix/config.h... no
+checking whether it is safe to define __EXTENSIONS__... yes
+checking whether vasprintf is declared... yes
+checking how to run the C preprocessor... gcc -E
+yes
+checking whether clearerr_unlocked is declared... checking for inline... inline
+checking for special C compiler options needed for large files... no
+checking for _FILE_OFFSET_BITS value needed for large files... yes
+checking whether feof_unlocked is declared... no
+checking size of void *... yes
+checking whether ferror_unlocked is declared... yes
+8
+checking size of short... checking whether fflush_unlocked is declared... yes
+checking whether fgetc_unlocked is declared... 2
+checking size of int... yes
+checking whether fgets_unlocked is declared... 4
+checking size of long... yes
+checking whether fileno_unlocked is declared... 8
+checking for long long... yes
+checking whether fprintf_unlocked is declared... no
+checking whether fputc_unlocked is declared... yes
+checking size of long long... yes
+checking whether fputs_unlocked is declared... 8
+checking for __int64... yes
+checking whether fread_unlocked is declared... no
+checking for int8_t... yes
+checking whether fwrite_unlocked is declared... yes
+checking for int16_t... yes
+checking whether getchar_unlocked is declared... yes
+checking whether getc_unlocked is declared... yes
+checking for int32_t... yes
+checking whether putchar_unlocked is declared... yes
+checking for int64_t... yes
+checking whether putc_unlocked is declared... yes
+checking for working alloca.h... yes
+checking for long long int... yes
+checking for alloca... yes
+checking for ANSI C header files... (cached) yes
+checking for nl_langinfo and CODESET... yes
+checking for intmax_t... yes
+checking whether NLS is requested... no
+checking for uchar...
+checking for ld used by GCC... ld
+checking if the linker (ld) is GNU ld... yes
+checking for shared library run path origin... yes
+checking for intptr_t... done
+checking for iconv... yes
+checking for iconv declaration... yes
+checking for uint8_t... install-shextern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);
+yes
+checking for uint16_t... yes
+checking for uint32_t... configure: updating cache ./config.cache
+configure: creating ./config.status
+yes
+checking for uint64_t... yes
+checking for unsigned long long int... yes
+checking for uintmax_t... config.status: creating Makefile
+config.status: creating config.h
+config.status: executing depdir commands
+mkdir -p -- .deps
+yes
+checking for uintptr_t... make[1]: Entering directory '/home/lucio/midipix/tmp/cbb-gcc-4.6.4-build-x86_64-nt64-midipix/libcpp'
+gcc -I../../cbb-gcc-4.6.4/libcpp -I. -I../../cbb-gcc-4.6.4/libcpp/../include -I../../cbb-gcc-4.6.4/libcpp/include --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -W -Wall -Wwrite-strings -Wmissing-format-attribute -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wc++-compat -pedantic -Wno-long-long -I../../cbb-gcc-4.6.4/libcpp -I. -I../../cbb-gcc-4.6.4/libcpp/../include -I../../cbb-gcc-4.6.4/libcpp/include -c -o charset.o -MT charset.o -MMD -MP -MF .deps/charset.Tpo ../../cbb-gcc-4.6.4/libcpp/charset.c
+gcc -I../../cbb-gcc-4.6.4/libcpp -I. -I../../cbb-gcc-4.6.4/libcpp/../include -I../../cbb-gcc-4.6.4/libcpp/include --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -W -Wall -Wwrite-strings -Wmissing-format-attribute -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wc++-compat -pedantic -Wno-long-long -I../../cbb-gcc-4.6.4/libcpp -I. -I../../cbb-gcc-4.6.4/libcpp/../include -I../../cbb-gcc-4.6.4/libcpp/include -c -o directives.o -MT directives.o -MMD -MP -MF .deps/directives.Tpo ../../cbb-gcc-4.6.4/libcpp/directives.c
+gcc -I../../cbb-gcc-4.6.4/libcpp -I. -I../../cbb-gcc-4.6.4/libcpp/../include -I../../cbb-gcc-4.6.4/libcpp/include --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -W -Wall -Wwrite-strings -Wmissing-format-attribute -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wc++-compat -pedantic -Wno-long-long -I../../cbb-gcc-4.6.4/libcpp -I. -I../../cbb-gcc-4.6.4/libcpp/../include -I../../cbb-gcc-4.6.4/libcpp/include -c -o directives-only.o -MT directives-only.o -MMD -MP -MF .deps/directives-only.Tpo ../../cbb-gcc-4.6.4/libcpp/directives-only.c
+gcc -I../../cbb-gcc-4.6.4/libcpp -I. -I../../cbb-gcc-4.6.4/libcpp/../include -I../../cbb-gcc-4.6.4/libcpp/include --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -W -Wall -Wwrite-strings -Wmissing-format-attribute -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wc++-compat -pedantic -Wno-long-long -I../../cbb-gcc-4.6.4/libcpp -I. -I../../cbb-gcc-4.6.4/libcpp/../include -I../../cbb-gcc-4.6.4/libcpp/include -c -o errors.o -MT errors.o -MMD -MP -MF .deps/errors.Tpo ../../cbb-gcc-4.6.4/libcpp/errors.c
+gcc -I../../cbb-gcc-4.6.4/libcpp -I. -I../../cbb-gcc-4.6.4/libcpp/../include -I../../cbb-gcc-4.6.4/libcpp/include --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -W -Wall -Wwrite-strings -Wmissing-format-attribute -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wc++-compat -pedantic -Wno-long-long -I../../cbb-gcc-4.6.4/libcpp -I. -I../../cbb-gcc-4.6.4/libcpp/../include -I../../cbb-gcc-4.6.4/libcpp/include -c -o expr.o -MT expr.o -MMD -MP -MF .deps/expr.Tpo ../../cbb-gcc-4.6.4/libcpp/expr.c
+gcc -I../../cbb-gcc-4.6.4/libcpp -I. -I../../cbb-gcc-4.6.4/libcpp/../include -I../../cbb-gcc-4.6.4/libcpp/include --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -W -Wall -Wwrite-strings -Wmissing-format-attribute -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wc++-compat -pedantic -Wno-long-long -I../../cbb-gcc-4.6.4/libcpp -I. -I../../cbb-gcc-4.6.4/libcpp/../include -I../../cbb-gcc-4.6.4/libcpp/include -c -o files.o -MT files.o -MMD -MP -MF .deps/files.Tpo ../../cbb-gcc-4.6.4/libcpp/files.c
+gcc -I../../cbb-gcc-4.6.4/libcpp -I. -I../../cbb-gcc-4.6.4/libcpp/../include -I../../cbb-gcc-4.6.4/libcpp/include --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -W -Wall -Wwrite-strings -Wmissing-format-attribute -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wc++-compat -pedantic -Wno-long-long -I../../cbb-gcc-4.6.4/libcpp -I. -I../../cbb-gcc-4.6.4/libcpp/../include -I../../cbb-gcc-4.6.4/libcpp/include -c -o identifiers.o -MT identifiers.o -MMD -MP -MF .deps/identifiers.Tpo ../../cbb-gcc-4.6.4/libcpp/identifiers.c
+yes
+checking whether gcc supports -W... yes
+checking whether gcc supports -Wall... echo "#define LOCALEDIR \"/home/lucio/midipix/share/locale\"" > localedir.new
+../../cbb-gcc-4.6.4/libcpp/../move-if-change localedir.new localedir.h
+gcc -I../../cbb-gcc-4.6.4/libcpp -I. -I../../cbb-gcc-4.6.4/libcpp/../include -I../../cbb-gcc-4.6.4/libcpp/include --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -W -Wall -Wwrite-strings -Wmissing-format-attribute -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wc++-compat -pedantic -Wno-long-long -I../../cbb-gcc-4.6.4/libcpp -I. -I../../cbb-gcc-4.6.4/libcpp/../include -I../../cbb-gcc-4.6.4/libcpp/include -c -o lex.o -MT lex.o -MMD -MP -MF .deps/lex.Tpo ../../cbb-gcc-4.6.4/libcpp/lex.c
+echo timestamp > localedir.hs
+gcc -I../../cbb-gcc-4.6.4/libcpp -I. -I../../cbb-gcc-4.6.4/libcpp/../include -I../../cbb-gcc-4.6.4/libcpp/include --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -W -Wall -Wwrite-strings -Wmissing-format-attribute -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wc++-compat -pedantic -Wno-long-long -I../../cbb-gcc-4.6.4/libcpp -I. -I../../cbb-gcc-4.6.4/libcpp/../include -I../../cbb-gcc-4.6.4/libcpp/include -c -o line-map.o -MT line-map.o -MMD -MP -MF .deps/line-map.Tpo ../../cbb-gcc-4.6.4/libcpp/line-map.c
+gcc -I../../cbb-gcc-4.6.4/libcpp -I. -I../../cbb-gcc-4.6.4/libcpp/../include -I../../cbb-gcc-4.6.4/libcpp/include --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -W -Wall -Wwrite-strings -Wmissing-format-attribute -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wc++-compat -pedantic -Wno-long-long -I../../cbb-gcc-4.6.4/libcpp -I. -I../../cbb-gcc-4.6.4/libcpp/../include -I../../cbb-gcc-4.6.4/libcpp/include -c -o macro.o -MT macro.o -MMD -MP -MF .deps/macro.Tpo ../../cbb-gcc-4.6.4/libcpp/macro.c
+yes
+checking whether gcc supports -Wwrite-strings... yes
+checking whether gcc supports -Wcast-qual... gcc -I../../cbb-gcc-4.6.4/libcpp -I. -I../../cbb-gcc-4.6.4/libcpp/../include -I../../cbb-gcc-4.6.4/libcpp/include --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -W -Wall -Wwrite-strings -Wmissing-format-attribute -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wc++-compat -pedantic -Wno-long-long -I../../cbb-gcc-4.6.4/libcpp -I. -I../../cbb-gcc-4.6.4/libcpp/../include -I../../cbb-gcc-4.6.4/libcpp/include -c -o mkdeps.o -MT mkdeps.o -MMD -MP -MF .deps/mkdeps.Tpo ../../cbb-gcc-4.6.4/libcpp/mkdeps.c
+yes
+checking whether gcc supports -Wstrict-prototypes... gcc -I../../cbb-gcc-4.6.4/libcpp -I. -I../../cbb-gcc-4.6.4/libcpp/../include -I../../cbb-gcc-4.6.4/libcpp/include --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -W -Wall -Wwrite-strings -Wmissing-format-attribute -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wc++-compat -pedantic -Wno-long-long -I../../cbb-gcc-4.6.4/libcpp -I. -I../../cbb-gcc-4.6.4/libcpp/../include -I../../cbb-gcc-4.6.4/libcpp/include -c -o pch.o -MT pch.o -MMD -MP -MF .deps/pch.Tpo ../../cbb-gcc-4.6.4/libcpp/pch.c
+gcc -I../../cbb-gcc-4.6.4/libcpp -I. -I../../cbb-gcc-4.6.4/libcpp/../include -I../../cbb-gcc-4.6.4/libcpp/include --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -W -Wall -Wwrite-strings -Wmissing-format-attribute -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wc++-compat -pedantic -Wno-long-long -I../../cbb-gcc-4.6.4/libcpp -I. -I../../cbb-gcc-4.6.4/libcpp/../include -I../../cbb-gcc-4.6.4/libcpp/include -c -o symtab.o -MT symtab.o -MMD -MP -MF .deps/symtab.Tpo ../../cbb-gcc-4.6.4/libcpp/symtab.c
+yes
+gcc -I../../cbb-gcc-4.6.4/libcpp -I. -I../../cbb-gcc-4.6.4/libcpp/../include -I../../cbb-gcc-4.6.4/libcpp/include --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -W -Wall -Wwrite-strings -Wmissing-format-attribute -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wc++-compat -pedantic -Wno-long-long -I../../cbb-gcc-4.6.4/libcpp -I. -I../../cbb-gcc-4.6.4/libcpp/../include -I../../cbb-gcc-4.6.4/libcpp/include -c -o traditional.o -MT traditional.o -MMD -MP -MF .deps/traditional.Tpo ../../cbb-gcc-4.6.4/libcpp/traditional.c
+checking whether gcc supports -Wmissing-prototypes... yes
+checking whether gcc supports -Wmissing-format-attribute... gcc -I../../cbb-gcc-4.6.4/libcpp -I. -I../../cbb-gcc-4.6.4/libcpp/../include -I../../cbb-gcc-4.6.4/libcpp/include --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -W -Wall -Wwrite-strings -Wmissing-format-attribute -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wc++-compat -pedantic -Wno-long-long -I../../cbb-gcc-4.6.4/libcpp -I. -I../../cbb-gcc-4.6.4/libcpp/../include -I../../cbb-gcc-4.6.4/libcpp/include -c -o init.o -MT init.o -MMD -MP -MF .deps/init.Tpo ../../cbb-gcc-4.6.4/libcpp/init.c
+yes
+checking whether gcc supports -Wold-style-definition... yes
+checking whether gcc supports -Wc++-compat... yes
+checking whether gcc supports -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings... yes
+checking valgrind.h usability... rm -f libcpp.a
+ar cru libcpp.a charset.o directives.o directives-only.o errors.o expr.o files.o identifiers.o init.o lex.o line-map.o macro.o mkdeps.o pch.o symtab.o traditional.o
+ranlib libcpp.a
+make[1]: Leaving directory '/home/lucio/midipix/tmp/cbb-gcc-4.6.4-build-x86_64-nt64-midipix/libcpp'
+no
+checking valgrind.h presence... no
+checking for valgrind.h... no
+checking for multiarch configuration... yes
+configure: WARNING: fixed-point is not supported for this target, ignored
+checking whether make sets $(MAKE)... yes
+checking for gawk... gawk
+checking whether ln -s works... yes
+checking whether ln works... yes
+checking for x86_64-unknown-linux-gnu-ranlib... ranlib
+checking for a BSD compatible install... /usr/bin/install -c
+checking for cmp's capabilities... gnucompare
+checking for mktemp... yes
+checking for makeinfo... makeinfo
+checking for modern makeinfo... yes
+checking for recent Pod::Man... yes
+checking for flex... /home/lucio/midipix/tmp/cbb-gcc-4.6.4/missing flex
+checking for bison... /home/lucio/midipix/tmp/cbb-gcc-4.6.4/missing bison
+checking for nm... nm
+checking for ar... ar
+checking for ANSI C header files... (cached) yes
+checking whether time.h and sys/time.h may both be included... yes
+checking whether string.h and strings.h may both be included... yes
+checking for sys/wait.h that is POSIX.1 compatible... yes
+checking for limits.h... yes
+checking for stddef.h... yes
+checking for string.h... (cached) yes
+checking for strings.h... (cached) yes
+checking for stdlib.h... (cached) yes
+checking for time.h... yes
+checking for iconv.h... yes
+checking for fcntl.h... yes
+checking for unistd.h... (cached) yes
+checking for sys/file.h... yes
+checking for sys/time.h... yes
+checking for sys/mman.h... yes
+checking for sys/resource.h... yes
+checking for sys/param.h... yes
+checking for sys/times.h... yes
+checking for sys/stat.h... (cached) yes
+checking for direct.h... no
+checking for malloc.h... yes
+checking for langinfo.h... yes
+checking for ldfcn.h... no
+checking for locale.h... yes
+checking for wchar.h... yes
+checking for thread.h... no
+checking for pthread.h... yes
+checking for CHAR_BIT... yes
+checking whether byte ordering is bigendian... no
+checking how to run the C++ preprocessor... g++ -E
+checking for unordered_map... no
+checking for tr1/unordered_map... yes
+checking for ext/hash_map... yes
+checking for collect2 libraries... none required
+checking for library containing exc_resume... no
+checking for library containing ldexp... none required
+checking for inttypes.h... yes
+checking for times... yes
+checking for clock... yes
+checking for kill... yes
+checking for getrlimit... yes
+checking for setrlimit... yes
+checking for atoll... yes
+checking for atoq... no
+checking for sysconf... yes
+checking for strsignal... yes
+checking for getrusage... yes
+checking for nl_langinfo... yes
+checking for gettimeofday... yes
+checking for mbstowcs... yes
+checking for wcswidth... yes
+checking for mmap... yes
+checking for setlocale... yes
+checking for clearerr_unlocked... no
+checking for feof_unlocked... no
+checking for ferror_unlocked... no
+checking for fflush_unlocked... no
+checking for fgetc_unlocked... no
+checking for fgets_unlocked... no
+checking for fileno_unlocked... no
+checking for fprintf_unlocked... no
+checking for fputc_unlocked... no
+checking for fputs_unlocked... no
+checking for fread_unlocked... no
+checking for fwrite_unlocked... no
+checking for getchar_unlocked... no
+checking for getc_unlocked... no
+checking for putchar_unlocked... no
+checking for putc_unlocked... no
+checking whether mbstowcs works... yes
+checking for ssize_t... yes
+checking for caddr_t... yes
+checking for sys/mman.h... (cached) yes
+checking for mmap... (cached) yes
+checking whether read-only mmap of a plain file works... yes
+checking whether mmap from /dev/zero works... yes
+checking for MAP_ANON(YMOUS)... yes
+checking whether mmap with MAP_ANON(YMOUS) works... yes
+checking for pid_t... yes
+checking for vfork.h... no
+checking for fork... yes
+checking for vfork... yes
+checking for working fork... yes
+checking for working vfork... (cached) yes
+checking for ld used by GCC... ld
+checking if the linker (ld) is GNU ld... yes
+checking for shared library run path origin... done
+checking for iconv... yes
+checking for iconv declaration... install-shextern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);
+checking for LC_MESSAGES... yes
+checking for nl_langinfo and CODESET... yes
+checking whether getenv is declared... yes
+checking whether atol is declared... yes
+checking whether asprintf is declared... yes
+checking whether sbrk is declared... yes
+checking whether abort is declared... yes
+checking whether atof is declared... yes
+checking whether getcwd is declared... yes
+checking whether getwd is declared... yes
+checking whether strsignal is declared... yes
+checking whether strstr is declared... yes
+checking whether strverscmp is declared... yes
+checking whether errno is declared... yes
+checking whether snprintf is declared... yes
+checking whether vsnprintf is declared... yes
+checking whether vasprintf is declared... yes
+checking whether malloc is declared... yes
+checking whether realloc is declared... yes
+checking whether calloc is declared... yes
+checking whether free is declared... yes
+checking whether basename is declared... yes
+checking whether getopt is declared... yes
+checking whether clock is declared... yes
+checking whether getpagesize is declared... yes
+checking whether clearerr_unlocked is declared... yes
+checking whether feof_unlocked is declared... yes
+checking whether ferror_unlocked is declared... yes
+checking whether fflush_unlocked is declared... yes
+checking whether fgetc_unlocked is declared... yes
+checking whether fgets_unlocked is declared... yes
+checking whether fileno_unlocked is declared... yes
+checking whether fprintf_unlocked is declared... no
+checking whether fputc_unlocked is declared... yes
+checking whether fputs_unlocked is declared... yes
+checking whether fread_unlocked is declared... yes
+checking whether fwrite_unlocked is declared... yes
+checking whether getchar_unlocked is declared... yes
+checking whether getc_unlocked is declared... yes
+checking whether putchar_unlocked is declared... yes
+checking whether putc_unlocked is declared... yes
+checking whether getrlimit is declared... yes
+checking whether setrlimit is declared... yes
+checking whether getrusage is declared... yes
+checking whether ldgetname is declared... no
+checking whether times is declared... yes
+checking whether sigaltstack is declared... yes
+checking for struct tms... yes
+checking for clock_t... yes
+checking if mkdir takes one argument... no
+Using `../../cbb-gcc-4.6.4/gcc/config/i386/i386.c' for machine-specific logic.
+Using `../../cbb-gcc-4.6.4/gcc/config/i386/i386.md' as machine description file.
+Using the following target machine macro files:
+ ../../cbb-gcc-4.6.4/gcc/config/vxworks-dummy.h
+ ../../cbb-gcc-4.6.4/gcc/config/i386/biarch64.h
+ ../../cbb-gcc-4.6.4/gcc/config/i386/i386.h
+ ../../cbb-gcc-4.6.4/gcc/config/i386/unix.h
+ ../../cbb-gcc-4.6.4/gcc/config/i386/bsd.h
+ ../../cbb-gcc-4.6.4/gcc/config/i386/gas.h
+ ../../cbb-gcc-4.6.4/gcc/config/dbxcoff.h
+ ../../cbb-gcc-4.6.4/gcc/config/i386/midipix.h
+ ../../cbb-gcc-4.6.4/gcc/config/glibc-stdint.h
+ ../../cbb-gcc-4.6.4/gcc/config/i386/ssemath.h
+Using host-linux.o for host machine hooks.
+checking whether NLS is requested... no
+checking how to print strings... printf
+checking for a sed that does not truncate output... /bin/sed
+checking for fgrep... /bin/grep -F
+checking for ld used by gcc... ld
+checking if the linker (ld) is GNU ld... yes
+checking for BSD- or MS-compatible name lister (nm)... nm
+checking the name lister (nm) interface... BSD nm
+checking whether ln -s works... yes
+checking the maximum length of command line arguments... 1572864
+checking whether the shell understands some XSI constructs... yes
+checking whether the shell understands "+="... yes
+checking for ld option to reload object files... -r
+checking for x86_64-unknown-linux-gnu-objdump... objdump
+checking how to recognize dependent libraries... pass_all
+checking for x86_64-unknown-linux-gnu-ar... (cached) ar
+checking for x86_64-unknown-linux-gnu-strip... no
+checking for strip... strip
+checking for x86_64-unknown-linux-gnu-ranlib... (cached) ranlib
+checking command to parse nm output from gcc object... ok
+checking for dlfcn.h... yes
+checking for objdir... .libs
+checking if gcc supports -fno-rtti -fno-exceptions... no
+checking for gcc option to produce PIC... -fPIC -DPIC
+checking if gcc PIC flag -fPIC -DPIC works... yes
+checking if gcc static flag -static works... yes
+checking if gcc supports -c -o file.o... yes
+checking if gcc supports -c -o file.o... (cached) yes
+checking whether the gcc linker (ld -m elf_x86_64) supports shared libraries... yes
+checking whether -lc should be explicitly linked in... no
+checking dynamic linker characteristics... GNU/Linux ld.so
+checking how to hardcode library paths into programs... immediate
+checking whether stripping libraries is possible... yes
+checking if libtool supports shared libraries... yes
+checking whether to build shared libraries... yes
+checking whether to build static libraries... yes
+checking how to run the C++ preprocessor... g++ -E
+checking for ld used by g++... ld -m elf_x86_64
+checking if the linker (ld -m elf_x86_64) is GNU ld... yes
+checking whether the g++ linker (ld -m elf_x86_64) supports shared libraries... yes
+checking for g++ option to produce PIC... -fPIC -DPIC
+checking if g++ PIC flag -fPIC -DPIC works... yes
+checking if g++ static flag -static works... yes
+checking if g++ supports -c -o file.o... yes
+checking if g++ supports -c -o file.o... (cached) yes
+checking whether the g++ linker (ld -m elf_x86_64) supports shared libraries... yes
+checking dynamic linker characteristics... (cached) GNU/Linux ld.so
+checking how to hardcode library paths into programs... immediate
+checking what assembler to use... /home/lucio/midipix/x86_64-nt64-midipix/bin/as
+checking whether we are using gold... no
+checking what linker to use... /home/lucio/midipix/x86_64-nt64-midipix/bin/ld
+checking what nm to use... /home/lucio/midipix/x86_64-nt64-midipix/bin/nm
+checking what objdump to use... /home/lucio/midipix/x86_64-nt64-midipix/bin/objdump
+checking for readelf... /usr/bin/readelf
+checking what readelf to use... /usr/bin/readelf
+checking assembler flags...
+checking assembler for .balign and .p2align... yes
+checking assembler for .p2align with maximum skip... yes
+checking assembler for .literal16... no
+checking assembler for working .subsection -1... no
+checking assembler for .weak... yes
+checking assembler for .weakref... yes
+checking assembler for .nsubspa comdat... no
+checking assembler for .hidden... no
+checking linker for .hidden support... yes
+checking linker read-only and read-write section mixing...
+checking assembler for .sleb128 and .uleb128... yes
+checking assembler for cfi directives... yes
+checking assembler for working cfi advance... yes
+checking assembler for cfi personality directive... yes
+checking assembler for cfi sections directive... yes
+checking assembler for eh_frame optimization... no
+checking assembler for section merging support... no
+checking assembler for section merging support... (cached) no
+checking assembler for COMDAT group support... no
+checking assembler for COMDAT group support... no
+checking assembler for line table discriminator support... yes
+checking assembler for thread-local storage support... no
+checking linker -Bstatic/-Bdynamic option... yes
+checking linker plugin support... yes
+checking assembler for .comm with alignment... yes
+checking assembler for .secrel32 relocs... yes
+checking assembler for .section with alignment... yes
+checking assembler for filds and fists mnemonics... yes
+checking assembler for fildq and fistpq mnemonics... yes
+checking assembler for cmov syntax... no
+checking assembler for ffreep mnemonic... yes
+checking assembler for .quad directive... yes
+checking assembler for sahf mnemonic... yes
+checking assembler for swap suffix... yes
+checking assembler for different section symbol subtraction... yes
+checking assembler for GOTOFF in data... yes
+checking assembler for rep and lock prefix... yes
+checking assembler for dwarf2 debug_line support... yes
+checking assembler for buggy dwarf2 .file directive... no
+checking assembler for --gdwarf2 option... yes
+checking assembler for --gstabs option... yes
+checking assembler for --debug-prefix-map option... yes
+checking assembler for .lcomm with alignment... yes
+checking assembler for tolerance to line number 0... yes
+checking linker PT_GNU_EH_FRAME support... no
+checking linker position independent executable support... yes
+checking linker EH-compatible garbage collection of sections... no
+checking linker EH garbage collection of sections bug... no
+checking linker --as-needed support... yes
+checking linker --build-id support... yes
+checking linker *_sol2 emulation support... no
+checking linker --sysroot support... yes
+checking __stack_chk_fail in target C library... yes
+checking dl_iterate_phdr in target C library... yes
+Using ggc-page for garbage collection.
+checking whether to enable maintainer-specific portions of Makefiles... no
+Links are now set up to build a cross-compiler
+ from x86_64-unknown-linux-gnu to x86_64-nt64-midipix.
+checking for exported symbols... yes
+checking for -rdynamic... yes
+checking for library containing dlopen... -ldl
+checking for -fPIC -shared... yes
+configure: updating cache ./config.cache
+configure: creating ./config.status
+config.status: creating as
+config.status: creating collect-ld
+config.status: creating nm
+config.status: creating Makefile
+config.status: creating ada/gcc-interface/Makefile
+config.status: creating ada/Makefile
+config.status: creating auto-host.h
+config.status: executing default commands
+make[1]: Entering directory '/home/lucio/midipix/tmp/cbb-gcc-4.6.4-build-x86_64-nt64-midipix/gcc'
+../../cbb-gcc-4.6.4/gcc/config/i386/t-gmm_malloc:5: warning: overriding recipe for target 'mm_malloc.h'
+../../cbb-gcc-4.6.4/gcc/config/i386/t-gmm_malloc:5: warning: ignoring old recipe for target 'mm_malloc.h'
+../../cbb-gcc-4.6.4/gcc/config/i386/t-i386:32: warning: overriding recipe for target 'i386-c.o'
+../../cbb-gcc-4.6.4/gcc/config/i386/t-i386:32: warning: ignoring old recipe for target 'i386-c.o'
+../../cbb-gcc-4.6.4/gcc/config/i386/t-i386:36: warning: overriding recipe for target 'i386-builtin-types.inc'
+../../cbb-gcc-4.6.4/gcc/config/i386/t-i386:36: warning: ignoring old recipe for target 'i386-builtin-types.inc'
+../../cbb-gcc-4.6.4/gcc/config/i386/t-i386:39: warning: overriding recipe for target 's-i386-bt'
+../../cbb-gcc-4.6.4/gcc/config/i386/t-i386:39: warning: ignoring old recipe for target 's-i386-bt'
+TARGET_CPU_DEFAULT="" \
+HEADERS="auto-host.h ansidecl.h" DEFINES="" \
+/bin/bash ../../cbb-gcc-4.6.4/gcc/mkconfig.sh config.h
+TARGET_CPU_DEFAULT="" \
+HEADERS="options.h insn-constants.h config/vxworks-dummy.h config/i386/biarch64.h config/i386/i386.h config/i386/unix.h config/i386/bsd.h config/i386/gas.h config/dbxcoff.h config/i386/midipix.h config/glibc-stdint.h config/i386/ssemath.h defaults.h" DEFINES="" \
+/bin/bash ../../cbb-gcc-4.6.4/gcc/mkconfig.sh tm.h
+gawk -f ../../cbb-gcc-4.6.4/gcc/opt-gather.awk ../../cbb-gcc-4.6.4/gcc/ada/gcc-interface/lang.opt ../../cbb-gcc-4.6.4/gcc/fortran/lang.opt ../../cbb-gcc-4.6.4/gcc/go/lang.opt ../../cbb-gcc-4.6.4/gcc/java/lang.opt ../../cbb-gcc-4.6.4/gcc/lto/lang.opt ../../cbb-gcc-4.6.4/gcc/c-family/c.opt ../../cbb-gcc-4.6.4/gcc/common.opt ../../cbb-gcc-4.6.4/gcc/config/fused-madd.opt ../../cbb-gcc-4.6.4/gcc/config/i386/i386.opt ../../cbb-gcc-4.6.4/gcc/config/i386/midipix.opt > tmp-optionlist
+TARGET_CPU_DEFAULT="" \
+HEADERS="auto-host.h ansidecl.h" DEFINES="" \
+/bin/bash ../../cbb-gcc-4.6.4/gcc/mkconfig.sh bconfig.h
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/build -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber \
+-DBASEVER="\"4.6.4\"" -DDATESTAMP="\"\"" \
+-DREVISION="\"\"" \
+-DDEVPHASE="\"\"" -DPKGVERSION="\"(GCC) \"" \
+-DBUGURL="\"<http://gcc.gnu.org/bugs.html>\"" -o build/version.o ../../cbb-gcc-4.6.4/gcc/version.c
+echo "#define BUILDING_GCC_MAJOR `echo 4.6.4 | sed -e 's/^\([0-9]*\).*$/\1/'`" > bversion.h
+TARGET_CPU_DEFAULT="" \
+HEADERS="config/i386/i386-protos.h tm-preds.h" DEFINES="" \
+/bin/bash ../../cbb-gcc-4.6.4/gcc/mkconfig.sh tm_p.h
+/bin/bash ../../cbb-gcc-4.6.4/gcc/../move-if-change tmp-gi.list gtyp-input.list
+rm -f tmp-all-tree.def
+echo "#define BUILDING_GCC_MINOR `echo 4.6.4 | sed -e 's/^[0-9]*\.\([0-9]*\).*$/\1/'`" >> bversion.h
+echo timestamp > s-gtyp-input
+echo '#include "tree.def"' > tmp-all-tree.def
+if test no = yes \
+ || test -n ""; then \
+ /bin/bash ../../cbb-gcc-4.6.4/gcc/genmultilib \
+ "" \
+ "" \
+ "" \
+ "" \
+ "" \
+ "" \
+ "" \
+ "" \
+ "no" \
+ > tmp-mlib.h; \
+else \
+ /bin/bash ../../cbb-gcc-4.6.4/gcc/genmultilib '' '' '' '' '' '' '' "" no \
+ > tmp-mlib.h; \
+fi
+lsf="../../cbb-gcc-4.6.4/gcc/cp/lang-specs.h ../../cbb-gcc-4.6.4/gcc/lto/lang-specs.h ../../cbb-gcc-4.6.4/gcc/objc/lang-specs.h"; for f in $lsf; do \
+ echo "#include \"$f\""; \
+done | sed 's|../../cbb-gcc-4.6.4/gcc/||' > tmp-specs.h
+echo "#define BUILDING_GCC_PATCHLEVEL `echo 4.6.4 | sed -e 's/^[0-9]*\.[0-9]*\.\([0-9]*\)$/\1/'`" >> bversion.h
+echo 'END_OF_BASE_TREE_CODES' >> tmp-all-tree.def
+/bin/bash ../../cbb-gcc-4.6.4/gcc/../move-if-change tmp-specs.h specs.h
+echo "gcc --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H " > checksum-options.tmp \
+&& ../../cbb-gcc-4.6.4/gcc/../move-if-change checksum-options.tmp checksum-options
+/bin/bash ../../cbb-gcc-4.6.4/gcc/../move-if-change tmp-optionlist optionlist
+/bin/bash ../../cbb-gcc-4.6.4/gcc/../move-if-change tmp-mlib.h multilib.h
+echo "#define BUILDING_GCC_VERSION (BUILDING_GCC_MAJOR * 1000 + BUILDING_GCC_MINOR)" >> bversion.h
+echo '#include "c-family/c-common.def"' >> tmp-all-tree.def
+echo timestamp > s-specs
+gawk -f ../../cbb-gcc-4.6.4/gcc/config/i386/i386-builtin-types.awk ../../cbb-gcc-4.6.4/gcc/config/i386/i386-builtin-types.def > tmp-bt.inc
+echo timestamp > s-options
+echo timestamp > s-mlib
+echo timestamp > s-bversion
+ltf="../../cbb-gcc-4.6.4/gcc/ada/gcc-interface/ada-tree.def ../../cbb-gcc-4.6.4/gcc/cp/cp-tree.def ../../cbb-gcc-4.6.4/gcc/java/java-tree.def ../../cbb-gcc-4.6.4/gcc/objc/objc-tree.def"; for f in $ltf; do \
+ echo "#include \"$f\""; \
+done | sed 's|../../cbb-gcc-4.6.4/gcc/||' >> tmp-all-tree.def
+/bin/bash ../../cbb-gcc-4.6.4/gcc/../move-if-change tmp-bt.inc i386-builtin-types.inc
+rm -f mm_malloc.h
+TARGET_CPU_DEFAULT="" \
+HEADERS="auto-host.h ansidecl.h" DEFINES="USED_FOR_TARGET " \
+/bin/bash ../../cbb-gcc-4.6.4/gcc/mkconfig.sh tconfig.h
+/bin/bash ../../cbb-gcc-4.6.4/gcc/../move-if-change tmp-all-tree.def all-tree.def
+cat ../../cbb-gcc-4.6.4/gcc/config/i386/gmm_malloc.h > mm_malloc.h
+cp ../../cbb-gcc-4.6.4/gcc/config/i386/sfp-machine.h sfp-machine.h
+echo timestamp > s-i386-bt
+(echo "@set version-GCC 4.6.4"; \
+ if [ "" = "experimental" ]; \
+ then echo "@set DEVELOPMENT"; \
+ else echo "@clear DEVELOPMENT"; \
+ fi) > gcc-vers.texiT
+echo timestamp > s-alltree
+echo @set srcdir /home/lucio/midipix/tmp/cbb-gcc-4.6.4-build-x86_64-nt64-midipix/gcc/../../cbb-gcc-4.6.4/gcc >> gcc-vers.texiT
+echo timestamp > cpp.pod
+echo timestamp > gpl.pod
+echo timestamp > fsf-funding.pod
+if [ -n "(GCC) " ]; then \
+ echo "@set VERSION_PACKAGE (GCC) " >> gcc-vers.texiT; \
+fi
+perl ../../cbb-gcc-4.6.4/gcc/../contrib/texi2pod.pl -DBUGURL="@uref{http://gcc.gnu.org/bugs.html}" ../../cbb-gcc-4.6.4/gcc/doc/cpp.texi > cpp.pod
+perl ../../cbb-gcc-4.6.4/gcc/../contrib/texi2pod.pl ../../cbb-gcc-4.6.4/gcc/doc/include/gpl_v3.texi > gpl.pod
+perl ../../cbb-gcc-4.6.4/gcc/../contrib/texi2pod.pl ../../cbb-gcc-4.6.4/gcc/doc/include/funding.texi > fsf-funding.pod
+echo "@set BUGURL @uref{http://gcc.gnu.org/bugs.html}" >> gcc-vers.texiT; \
+mv -f gcc-vers.texiT gcc-vers.texi
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/build -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber \
+ -o build/genhooks.o ../../cbb-gcc-4.6.4/gcc/genhooks.c
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/build -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber \
+ -o build/genchecksum.o ../../cbb-gcc-4.6.4/gcc/genchecksum.c
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/build -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber \
+ -o build/genenums.o ../../cbb-gcc-4.6.4/gcc/genenums.c
+gawk -f ../../cbb-gcc-4.6.4/gcc/opt-functions.awk -f ../../cbb-gcc-4.6.4/gcc/optc-gen.awk \
+ -v header_name="config.h system.h coretypes.h tm.h" < optionlist > options.c
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/errors.c -o errors.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/lto-wrapper.c -o lto-wrapper.o
+if [ xinfo = xinfo ]; then \
+ makeinfo --split-size=5000000 --no-split -I . -I ../../cbb-gcc-4.6.4/gcc/doc \
+ -I ../../cbb-gcc-4.6.4/gcc/doc/include -o doc/cpp.info ../../cbb-gcc-4.6.4/gcc/doc/cpp.texi; \
+fi
+if [ xinfo = xinfo ]; then \
+ makeinfo --split-size=5000000 --no-split -I . -I ../../cbb-gcc-4.6.4/gcc/doc \
+ -I ../../cbb-gcc-4.6.4/gcc/doc/include -o doc/gcc.info ../../cbb-gcc-4.6.4/gcc/doc/gcc.texi; \
+fi
+if [ xinfo = xinfo ]; then \
+ makeinfo --split-size=5000000 --no-split -I ../../cbb-gcc-4.6.4/gcc/doc \
+ -I ../../cbb-gcc-4.6.4/gcc/doc/include -o doc/gccinstall.info ../../cbb-gcc-4.6.4/gcc/doc/install.texi; \
+fi
+if [ xinfo = xinfo ]; then \
+ makeinfo --split-size=5000000 --no-split -I . -I ../../cbb-gcc-4.6.4/gcc/doc \
+ -I ../../cbb-gcc-4.6.4/gcc/doc/include -o doc/cppinternals.info ../../cbb-gcc-4.6.4/gcc/doc/cppinternals.texi; \
+fi
+echo timestamp > doc/cpp.1
+(pod2man --center="GNU" --release="gcc-4.6.4" --date=2013-04-12 --section=1 cpp.pod > doc/cpp.1.T$$ && \
+ mv -f doc/cpp.1.T$$ doc/cpp.1) || \
+ (rm -f doc/cpp.1.T$$ && exit 1)
+echo timestamp > gcc.pod
+perl ../../cbb-gcc-4.6.4/gcc/../contrib/texi2pod.pl ../../cbb-gcc-4.6.4/gcc/doc/invoke.texi > gcc.pod
+echo timestamp > doc/gpl.7
+(pod2man --center="GNU" --release="gcc-4.6.4" --date=2013-04-12 --section=7 gpl.pod > doc/gpl.7.T$$ && \
+ mv -f doc/gpl.7.T$$ doc/gpl.7) || \
+ (rm -f doc/gpl.7.T$$ && exit 1)
+echo timestamp > doc/fsf-funding.7
+(pod2man --center="GNU" --release="gcc-4.6.4" --date=2013-04-12 --section=7 fsf-funding.pod > doc/fsf-funding.7.T$$ && \
+ mv -f doc/fsf-funding.7.T$$ doc/fsf-funding.7) || \
+ (rm -f doc/fsf-funding.7.T$$ && exit 1)
+gawk -f ../../cbb-gcc-4.6.4/gcc/opt-functions.awk -f ../../cbb-gcc-4.6.4/gcc/opth-gen.awk \
+ < optionlist > tmp-options.h
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/build -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber \
+ -o build/genconstants.o ../../cbb-gcc-4.6.4/gcc/genconstants.c
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/build -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber \
+ -o build/read-md.o ../../cbb-gcc-4.6.4/gcc/read-md.c
+/bin/bash ../../cbb-gcc-4.6.4/gcc/../move-if-change tmp-options.h options.h
+echo timestamp > s-options-h
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/build -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber \
+ -o build/errors.o ../../cbb-gcc-4.6.4/gcc/errors.c
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/build -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber \
+ -o build/genmddeps.o ../../cbb-gcc-4.6.4/gcc/genmddeps.c
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/build -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber \
+ -o build/genmodes.o ../../cbb-gcc-4.6.4/gcc/genmodes.c
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/build -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber \
+ -o build/gengenrtl.o ../../cbb-gcc-4.6.4/gcc/gengenrtl.c
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/build -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber \
+ -o build/gengtype.o ../../cbb-gcc-4.6.4/gcc/gengtype.c
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -Wno-error -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/build -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber \
+ -o build/gengtype-lex.o ../../cbb-gcc-4.6.4/gcc/gengtype-lex.c
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/build -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber \
+ -o build/gengtype-parse.o ../../cbb-gcc-4.6.4/gcc/gengtype-parse.c
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/build -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber \
+ -o build/gengtype-state.o ../../cbb-gcc-4.6.4/gcc/gengtype-state.c
+gcc --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -o build/genhooks \
+ build/genhooks.o build/errors.o ../build-x86_64-unknown-linux-gnu/libiberty/libiberty.a
+gcc --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -o build/genchecksum \
+ build/genchecksum.o ../build-x86_64-unknown-linux-gnu/libiberty/libiberty.a
+gcc --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -o build/genenums \
+ build/genenums.o build/read-md.o build/errors.o ../build-x86_64-unknown-linux-gnu/libiberty/libiberty.a
+build/genhooks \
+ ../../cbb-gcc-4.6.4/gcc/doc/tm.texi.in > tmp-tm.texi
+echo timestamp > doc/gcc.1
+(pod2man --center="GNU" --release="gcc-4.6.4" --date=2013-04-12 --section=1 gcc.pod > doc/gcc.1.T$$ && \
+ mv -f doc/gcc.1.T$$ doc/gcc.1) || \
+ (rm -f doc/gcc.1.T$$ && exit 1)
+gcc --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -o build/genconstants \
+ build/genconstants.o build/read-md.o build/errors.o ../build-x86_64-unknown-linux-gnu/libiberty/libiberty.a
+case `echo X|tr X '\101'` in \
+ A) tr -d '\015' < tmp-tm.texi > tmp2-tm.texi ;; \
+ *) tr -d '\r' < tmp-tm.texi > tmp2-tm.texi ;; \
+esac
+mv tmp2-tm.texi tmp-tm.texi
+/bin/bash ../../cbb-gcc-4.6.4/gcc/../move-if-change tmp-tm.texi tm.texi
+gcc --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -o build/genmddeps \
+ build/genmddeps.o build/read-md.o build/errors.o ../build-x86_64-unknown-linux-gnu/libiberty/libiberty.a
+gcc --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -o build/genmodes \
+ build/genmodes.o build/errors.o ../build-x86_64-unknown-linux-gnu/libiberty/libiberty.a
+gcc --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -o build/gengenrtl \
+ build/gengenrtl.o build/errors.o ../build-x86_64-unknown-linux-gnu/libiberty/libiberty.a
+build/genmodes -m > tmp-min-modes.c
+/bin/bash ../../cbb-gcc-4.6.4/gcc/../move-if-change tmp-min-modes.c min-insn-modes.c
+echo timestamp > s-modes-m
+build/genhooks > tmp-target-hooks-def.h
+/bin/bash ../../cbb-gcc-4.6.4/gcc/../move-if-change tmp-target-hooks-def.h \
+ target-hooks-def.h
+echo timestamp > s-target-hooks-def-h
+build/genmodes > tmp-modes.c
+/bin/bash ../../cbb-gcc-4.6.4/gcc/../move-if-change tmp-modes.c insn-modes.c
+build/genmddeps ../../cbb-gcc-4.6.4/gcc/config/i386/i386.md > tmp-mddeps
+echo timestamp > s-modes
+build/genmodes -h > tmp-modes.h
+/bin/bash ../../cbb-gcc-4.6.4/gcc/../move-if-change tmp-modes.h insn-modes.h
+echo timestamp > s-modes-h
+build/gengenrtl > tmp-genrtl.h
+/bin/bash ../../cbb-gcc-4.6.4/gcc/../move-if-change tmp-genrtl.h genrtl.h
+echo timestamp > s-genrtl-h
+if [ xinfo = xinfo ]; then \
+ makeinfo --split-size=5000000 --no-split -I . -I ../../cbb-gcc-4.6.4/gcc/doc \
+ -I ../../cbb-gcc-4.6.4/gcc/doc/include -o doc/gccint.info ../../cbb-gcc-4.6.4/gcc/doc/gccint.texi; \
+fi
+/bin/bash ../../cbb-gcc-4.6.4/gcc/../move-if-change tmp-mddeps mddeps.mk
+echo timestamp > s-mddeps
+build/genconstants ../../cbb-gcc-4.6.4/gcc/config/i386/i386.md \
+ > tmp-constants.h
+../../cbb-gcc-4.6.4/gcc/doc/install.texi:3090: warning: @anchor should not appear in @heading
+../../cbb-gcc-4.6.4/gcc/doc/install.texi:3105: warning: @anchor should not appear in @heading
+../../cbb-gcc-4.6.4/gcc/doc/install.texi:3156: warning: @anchor should not appear in @heading
+../../cbb-gcc-4.6.4/gcc/doc/install.texi:3163: warning: @anchor should not appear in @heading
+../../cbb-gcc-4.6.4/gcc/doc/install.texi:3172: warning: @anchor should not appear in @heading
+../../cbb-gcc-4.6.4/gcc/doc/install.texi:3209: warning: @anchor should not appear in @heading
+../../cbb-gcc-4.6.4/gcc/doc/install.texi:3226: warning: @anchor should not appear in @heading
+../../cbb-gcc-4.6.4/gcc/doc/install.texi:3261: warning: @anchor should not appear in @heading
+../../cbb-gcc-4.6.4/gcc/doc/install.texi:3290: warning: @anchor should not appear in @heading
+../../cbb-gcc-4.6.4/gcc/doc/install.texi:3302: warning: @anchor should not appear in @heading
+../../cbb-gcc-4.6.4/gcc/doc/install.texi:3340: warning: @anchor should not appear in @heading
+../../cbb-gcc-4.6.4/gcc/doc/install.texi:3353: warning: @anchor should not appear in @heading
+../../cbb-gcc-4.6.4/gcc/doc/install.texi:3405: warning: @anchor should not appear in @heading
+../../cbb-gcc-4.6.4/gcc/doc/install.texi:3418: warning: @anchor should not appear in @heading
+../../cbb-gcc-4.6.4/gcc/doc/install.texi:3529: warning: @anchor should not appear in @heading
+../../cbb-gcc-4.6.4/gcc/doc/install.texi:3538: warning: @anchor should not appear in @heading
+../../cbb-gcc-4.6.4/gcc/doc/install.texi:3550: warning: @anchor should not appear in @heading
+../../cbb-gcc-4.6.4/gcc/doc/install.texi:3570: warning: @anchor should not appear in @heading
+../../cbb-gcc-4.6.4/gcc/doc/install.texi:3600: warning: @anchor should not appear in @heading
+../../cbb-gcc-4.6.4/gcc/doc/install.texi:3620: warning: @anchor should not appear in @heading
+../../cbb-gcc-4.6.4/gcc/doc/install.texi:3635: warning: @anchor should not appear in @heading
+../../cbb-gcc-4.6.4/gcc/doc/install.texi:3776: warning: @anchor should not appear in @heading
+../../cbb-gcc-4.6.4/gcc/doc/install.texi:3783: warning: @anchor should not appear in @heading
+../../cbb-gcc-4.6.4/gcc/doc/install.texi:3790: warning: @anchor should not appear in @heading
+../../cbb-gcc-4.6.4/gcc/doc/install.texi:3797: warning: @anchor should not appear in @heading
+../../cbb-gcc-4.6.4/gcc/doc/install.texi:3804: warning: @anchor should not appear in @heading
+../../cbb-gcc-4.6.4/gcc/doc/install.texi:3811: warning: @anchor should not appear in @heading
+../../cbb-gcc-4.6.4/gcc/doc/install.texi:3818: warning: @anchor should not appear in @heading
+../../cbb-gcc-4.6.4/gcc/doc/install.texi:3825: warning: @anchor should not appear in @heading
+../../cbb-gcc-4.6.4/gcc/doc/install.texi:3851: warning: @anchor should not appear in @heading
+../../cbb-gcc-4.6.4/gcc/doc/install.texi:3863: warning: @anchor should not appear in @heading
+../../cbb-gcc-4.6.4/gcc/doc/install.texi:3870: warning: @anchor should not appear in @heading
+../../cbb-gcc-4.6.4/gcc/doc/install.texi:3877: warning: @anchor should not appear in @heading
+../../cbb-gcc-4.6.4/gcc/doc/install.texi:3935: warning: @anchor should not appear in @heading
+../../cbb-gcc-4.6.4/gcc/doc/install.texi:3942: warning: @anchor should not appear in @heading
+../../cbb-gcc-4.6.4/gcc/doc/install.texi:4039: warning: @anchor should not appear in @heading
+../../cbb-gcc-4.6.4/gcc/doc/install.texi:4046: warning: @anchor should not appear in @heading
+../../cbb-gcc-4.6.4/gcc/doc/install.texi:4058: warning: @anchor should not appear in @heading
+../../cbb-gcc-4.6.4/gcc/doc/install.texi:4074: warning: @anchor should not appear in @heading
+../../cbb-gcc-4.6.4/gcc/doc/install.texi:4080: warning: @anchor should not appear in @heading
+../../cbb-gcc-4.6.4/gcc/doc/install.texi:4087: warning: @anchor should not appear in @heading
+../../cbb-gcc-4.6.4/gcc/doc/install.texi:4093: warning: @anchor should not appear in @heading
+../../cbb-gcc-4.6.4/gcc/doc/install.texi:4100: warning: @anchor should not appear in @heading
+../../cbb-gcc-4.6.4/gcc/doc/install.texi:4106: warning: @anchor should not appear in @heading
+../../cbb-gcc-4.6.4/gcc/doc/install.texi:4112: warning: @anchor should not appear in @heading
+../../cbb-gcc-4.6.4/gcc/doc/install.texi:4119: warning: @anchor should not appear in @heading
+../../cbb-gcc-4.6.4/gcc/doc/install.texi:4125: warning: @anchor should not appear in @heading
+../../cbb-gcc-4.6.4/gcc/doc/install.texi:4133: warning: @anchor should not appear in @heading
+../../cbb-gcc-4.6.4/gcc/doc/install.texi:4139: warning: @anchor should not appear in @heading
+../../cbb-gcc-4.6.4/gcc/doc/install.texi:4145: warning: @anchor should not appear in @heading
+../../cbb-gcc-4.6.4/gcc/doc/install.texi:4156: warning: @anchor should not appear in @heading
+../../cbb-gcc-4.6.4/gcc/doc/install.texi:4271: warning: @anchor should not appear in @heading
+../../cbb-gcc-4.6.4/gcc/doc/install.texi:4286: warning: @anchor should not appear in @heading
+../../cbb-gcc-4.6.4/gcc/doc/install.texi:4348: warning: @anchor should not appear in @heading
+../../cbb-gcc-4.6.4/gcc/doc/install.texi:4364: warning: @anchor should not appear in @heading
+../../cbb-gcc-4.6.4/gcc/doc/install.texi:4374: warning: @anchor should not appear in @heading
+../../cbb-gcc-4.6.4/gcc/doc/install.texi:4399: warning: @anchor should not appear in @heading
+../../cbb-gcc-4.6.4/gcc/doc/install.texi:4406: warning: @anchor should not appear in @heading
+../../cbb-gcc-4.6.4/gcc/doc/install.texi:4441: warning: @anchor should not appear in @heading
+../../cbb-gcc-4.6.4/gcc/doc/install.texi:4451: warning: @anchor should not appear in @heading
+../../cbb-gcc-4.6.4/gcc/doc/install.texi:4469: warning: @anchor should not appear in @heading
+../../cbb-gcc-4.6.4/gcc/doc/install.texi:4481: warning: @anchor should not appear in @heading
+../../cbb-gcc-4.6.4/gcc/doc/install.texi:4538: warning: @anchor should not appear in @heading
+../../cbb-gcc-4.6.4/gcc/doc/install.texi:4555: warning: @anchor should not appear in @heading
+../../cbb-gcc-4.6.4/gcc/doc/install.texi:4565: warning: @anchor should not appear in @heading
+../../cbb-gcc-4.6.4/gcc/doc/install.texi:4574: warning: @anchor should not appear in @heading
+../../cbb-gcc-4.6.4/gcc/doc/install.texi:4620: warning: @anchor should not appear in @heading
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/build -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber \
+ -o build/min-insn-modes.o min-insn-modes.c
+/bin/bash ../../cbb-gcc-4.6.4/gcc/../move-if-change tmp-constants.h insn-constants.h
+echo timestamp > s-constants
+build/genenums ../../cbb-gcc-4.6.4/gcc/config/i386/i386.md \
+ > tmp-enums.c
+gcc --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -o build/gengtype \
+ build/gengtype.o build/errors.o build/gengtype-lex.o build/gengtype-parse.o build/gengtype-state.o build/version.o ../build-x86_64-unknown-linux-gnu/libiberty/libiberty.a
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/build -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber \
+ -o build/read-rtl.o ../../cbb-gcc-4.6.4/gcc/read-rtl.c
+/bin/bash ../../cbb-gcc-4.6.4/gcc/../move-if-change tmp-enums.c insn-enums.c
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/build -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber \
+ -o build/gensupport.o ../../cbb-gcc-4.6.4/gcc/gensupport.c
+echo timestamp > s-enums
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/build -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber \
+ -o build/print-rtl.o ../../cbb-gcc-4.6.4/gcc/print-rtl.c
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/build -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber \
+ -o build/genconditions.o ../../cbb-gcc-4.6.4/gcc/genconditions.c
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/build -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber \
+ -o build/genpreds.o ../../cbb-gcc-4.6.4/gcc/genpreds.c
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/build -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber \
+ -o build/gencheck.o ../../cbb-gcc-4.6.4/gcc/gencheck.c
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/build -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber \
+ -o build/genattr.o ../../cbb-gcc-4.6.4/gcc/genattr.c
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/build -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber \
+ -o build/gencodes.o ../../cbb-gcc-4.6.4/gcc/gencodes.c
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/build -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber \
+ -o build/genconfig.o ../../cbb-gcc-4.6.4/gcc/genconfig.c
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/build -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber \
+ -o build/genautomata.o ../../cbb-gcc-4.6.4/gcc/genautomata.c
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/build -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber \
+ -o build/genemit.o ../../cbb-gcc-4.6.4/gcc/genemit.c
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/build -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber \
+ -o build/genextract.o ../../cbb-gcc-4.6.4/gcc/genextract.c
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/build -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber \
+ -o build/genopinit.o ../../cbb-gcc-4.6.4/gcc/genopinit.c
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/build -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber \
+ -o build/genoutput.o ../../cbb-gcc-4.6.4/gcc/genoutput.c
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/build -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber \
+ -o build/genpeep.o ../../cbb-gcc-4.6.4/gcc/genpeep.c
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/build -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber \
+ -o build/genrecog.o ../../cbb-gcc-4.6.4/gcc/genrecog.c
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/build -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber \
+ -o build/genflags.o ../../cbb-gcc-4.6.4/gcc/genflags.c
+build/gengtype \
+ -S ../../cbb-gcc-4.6.4/gcc -I gtyp-input.list -w gtype.state
+gcc --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -o build/gencheck \
+ build/gencheck.o ../build-x86_64-unknown-linux-gnu/libiberty/libiberty.a
+build/gencheck > tmp-check.h
+/bin/bash ../../cbb-gcc-4.6.4/gcc/../move-if-change tmp-check.h tree-check.h
+echo timestamp > s-check
+build/gengtype \
+ -r gtype.state
+echo timestamp > s-gtype
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/build -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber \
+ -o build/genattrtab.o ../../cbb-gcc-4.6.4/gcc/genattrtab.c
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/build -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber \
+ -o build/rtl.o ../../cbb-gcc-4.6.4/gcc/rtl.c
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/build -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber \
+ -o build/ggc-none.o ../../cbb-gcc-4.6.4/gcc/ggc-none.c
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/build -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber \
+ -o build/vec.o ../../cbb-gcc-4.6.4/gcc/vec.c
+cp doc/gcc.1 doc/g++.1
+gcc --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -o build/genflags \
+ build/genflags.o build/rtl.o build/read-rtl.o build/ggc-none.o build/vec.o build/min-insn-modes.o build/gensupport.o build/print-rtl.o build/read-md.o build/errors.o ../build-x86_64-unknown-linux-gnu/libiberty/libiberty.a
+gcc --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -o build/genconditions \
+ build/genconditions.o build/rtl.o build/read-rtl.o build/ggc-none.o build/vec.o build/min-insn-modes.o build/gensupport.o build/print-rtl.o build/read-md.o build/errors.o ../build-x86_64-unknown-linux-gnu/libiberty/libiberty.a
+gcc --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -o build/genpreds \
+ build/genpreds.o build/rtl.o build/read-rtl.o build/ggc-none.o build/vec.o build/min-insn-modes.o build/gensupport.o build/print-rtl.o build/read-md.o build/errors.o ../build-x86_64-unknown-linux-gnu/libiberty/libiberty.a
+gcc --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -o build/genattr \
+ build/genattr.o build/rtl.o build/read-rtl.o build/ggc-none.o build/vec.o build/min-insn-modes.o build/gensupport.o build/print-rtl.o build/read-md.o build/errors.o ../build-x86_64-unknown-linux-gnu/libiberty/libiberty.a
+gcc --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -o build/gencodes \
+ build/gencodes.o build/rtl.o build/read-rtl.o build/ggc-none.o build/vec.o build/min-insn-modes.o build/gensupport.o build/print-rtl.o build/read-md.o build/errors.o ../build-x86_64-unknown-linux-gnu/libiberty/libiberty.a
+gcc --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -o build/genconfig \
+ build/genconfig.o build/rtl.o build/read-rtl.o build/ggc-none.o build/vec.o build/min-insn-modes.o build/gensupport.o build/print-rtl.o build/read-md.o build/errors.o ../build-x86_64-unknown-linux-gnu/libiberty/libiberty.a
+gcc --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -o build/genautomata \
+ build/genautomata.o build/rtl.o build/read-rtl.o build/ggc-none.o build/vec.o build/min-insn-modes.o build/gensupport.o build/print-rtl.o build/read-md.o build/errors.o ../build-x86_64-unknown-linux-gnu/libiberty/libiberty.a -lm
+gcc --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -o build/genemit \
+ build/genemit.o build/rtl.o build/read-rtl.o build/ggc-none.o build/vec.o build/min-insn-modes.o build/gensupport.o build/print-rtl.o build/read-md.o build/errors.o ../build-x86_64-unknown-linux-gnu/libiberty/libiberty.a
+gcc --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -o build/genextract \
+ build/genextract.o build/rtl.o build/read-rtl.o build/ggc-none.o build/vec.o build/min-insn-modes.o build/gensupport.o build/print-rtl.o build/read-md.o build/errors.o ../build-x86_64-unknown-linux-gnu/libiberty/libiberty.a
+gcc --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -o build/genopinit \
+ build/genopinit.o build/rtl.o build/read-rtl.o build/ggc-none.o build/vec.o build/min-insn-modes.o build/gensupport.o build/print-rtl.o build/read-md.o build/errors.o ../build-x86_64-unknown-linux-gnu/libiberty/libiberty.a
+gcc --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -o build/genoutput \
+ build/genoutput.o build/rtl.o build/read-rtl.o build/ggc-none.o build/vec.o build/min-insn-modes.o build/gensupport.o build/print-rtl.o build/read-md.o build/errors.o ../build-x86_64-unknown-linux-gnu/libiberty/libiberty.a
+gcc --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -o build/genpeep \
+ build/genpeep.o build/rtl.o build/read-rtl.o build/ggc-none.o build/vec.o build/min-insn-modes.o build/gensupport.o build/print-rtl.o build/read-md.o build/errors.o ../build-x86_64-unknown-linux-gnu/libiberty/libiberty.a
+build/genpreds ../../cbb-gcc-4.6.4/gcc/config/i386/i386.md > tmp-preds.c
+gcc --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -o build/genrecog \
+ build/genrecog.o build/rtl.o build/read-rtl.o build/ggc-none.o build/vec.o build/min-insn-modes.o build/gensupport.o build/print-rtl.o build/read-md.o build/errors.o ../build-x86_64-unknown-linux-gnu/libiberty/libiberty.a
+build/genconditions ../../cbb-gcc-4.6.4/gcc/config/i386/i386.md > tmp-condmd.c
+build/genpreds -h ../../cbb-gcc-4.6.4/gcc/config/i386/i386.md > tmp-preds.h
+build/genpreds -c ../../cbb-gcc-4.6.4/gcc/config/i386/i386.md > tmp-constrs.h
+/bin/bash ../../cbb-gcc-4.6.4/gcc/../move-if-change tmp-preds.c insn-preds.c
+echo timestamp > s-preds
+/bin/bash ../../cbb-gcc-4.6.4/gcc/../move-if-change tmp-condmd.c build/gencondmd.c
+/bin/bash ../../cbb-gcc-4.6.4/gcc/../move-if-change tmp-preds.h tm-preds.h
+/bin/bash ../../cbb-gcc-4.6.4/gcc/../move-if-change tmp-constrs.h tm-constrs.h
+echo timestamp > s-preds-h
+echo timestamp > s-conditions
+echo timestamp > s-constrs-h
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/build -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber \
+ -o build/gencondmd.o build/gencondmd.c
+gcc --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -o build/genattrtab \
+ build/genattrtab.o build/rtl.o build/read-rtl.o build/ggc-none.o build/vec.o build/min-insn-modes.o build/gensupport.o build/print-rtl.o build/read-md.o build/errors.o ../build-x86_64-unknown-linux-gnu/libiberty/libiberty.a
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from build/gencondmd.c:25:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -o build/gencondmd \
+ build/gencondmd.o ../build-x86_64-unknown-linux-gnu/libiberty/libiberty.a
+build/gencondmd > tmp-cond.md
+/bin/bash ../../cbb-gcc-4.6.4/gcc/../move-if-change tmp-cond.md insn-conditions.md
+echo timestamp > s-condmd
+build/genflags ../../cbb-gcc-4.6.4/gcc/config/i386/i386.md \
+ insn-conditions.md > tmp-flags.h
+build/genattr ../../cbb-gcc-4.6.4/gcc/config/i386/i386.md \
+ insn-conditions.md > tmp-attr.h
+build/gencodes ../../cbb-gcc-4.6.4/gcc/config/i386/i386.md \
+ insn-conditions.md > tmp-codes.h
+build/genconfig ../../cbb-gcc-4.6.4/gcc/config/i386/i386.md \
+ insn-conditions.md > tmp-config.h
+build/genattrtab ../../cbb-gcc-4.6.4/gcc/config/i386/i386.md \
+ insn-conditions.md > tmp-attrtab.c
+build/genautomata ../../cbb-gcc-4.6.4/gcc/config/i386/i386.md \
+ insn-conditions.md > tmp-automata.c
+/bin/bash ../../cbb-gcc-4.6.4/gcc/../move-if-change tmp-config.h insn-config.h
+echo timestamp > s-config
+build/genemit ../../cbb-gcc-4.6.4/gcc/config/i386/i386.md \
+ insn-conditions.md > tmp-emit.c
+/bin/bash ../../cbb-gcc-4.6.4/gcc/../move-if-change tmp-codes.h insn-codes.h
+/bin/bash ../../cbb-gcc-4.6.4/gcc/../move-if-change tmp-flags.h insn-flags.h
+/bin/bash ../../cbb-gcc-4.6.4/gcc/../move-if-change tmp-attr.h insn-attr.h
+echo timestamp > s-codes
+build/genextract ../../cbb-gcc-4.6.4/gcc/config/i386/i386.md \
+ insn-conditions.md > tmp-extract.c
+echo timestamp > s-attr
+echo timestamp > s-flags
+build/genopinit ../../cbb-gcc-4.6.4/gcc/config/i386/i386.md \
+ insn-conditions.md > tmp-opinit.c
+build/genoutput ../../cbb-gcc-4.6.4/gcc/config/i386/i386.md \
+ insn-conditions.md > tmp-output.c
+/bin/bash ../../cbb-gcc-4.6.4/gcc/../move-if-change tmp-emit.c insn-emit.c
+/bin/bash ../../cbb-gcc-4.6.4/gcc/../move-if-change tmp-extract.c insn-extract.c
+echo timestamp > s-emit
+build/genpeep ../../cbb-gcc-4.6.4/gcc/config/i386/i386.md \
+ insn-conditions.md > tmp-peep.c
+echo timestamp > s-extract
+build/genrecog ../../cbb-gcc-4.6.4/gcc/config/i386/i386.md \
+ insn-conditions.md > tmp-recog.c
+/bin/bash ../../cbb-gcc-4.6.4/gcc/../move-if-change tmp-opinit.c insn-opinit.c
+echo timestamp > s-opinit
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/build -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber \
+ -o build/gcov-iov.o ../../cbb-gcc-4.6.4/gcc/gcov-iov.c
+/bin/bash ../../cbb-gcc-4.6.4/gcc/../move-if-change tmp-peep.c insn-peep.c
+(SHLIB_LINK='/home/lucio/midipix/tmp/cbb-gcc-4.6.4-build-x86_64-nt64-midipix/./gcc/xgcc -B/home/lucio/midipix/tmp/cbb-gcc-4.6.4-build-x86_64-nt64-midipix/./gcc/ -O2 -DIN_TARGET_LIBRARY_BUILD --sysroot=/home/lucio/midipix/x86_64-nt64-midipix -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -shared -mout-implib -nodefaultlibs -o @multilib_dir@/@shlib_base_name@.so @shlib_objs@ --sysroot=$(cbb_sysroot_for_libgcc)'; \
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber -DSTANDARD_STARTFILE_PREFIX=\"../../../\" -DSTANDARD_EXEC_PREFIX=\"/home/lucio/midipix/lib/gcc/\" -DSTANDARD_LIBEXEC_PREFIX=\"/home/lucio/midipix/libexec/gcc/\" -DDEFAULT_TARGET_VERSION=\"4.6.4\" -DDEFAULT_TARGET_MACHINE=\"x86_64-nt64-midipix\" -DSTANDARD_BINDIR_PREFIX=\"/home/lucio/midipix/bin/\" -DTOOLDIR_BASE_PREFIX=\"../../../../\" -DTARGET_SYSTEM_ROOT=\"/home/lucio/midipix/x86_64-nt64-midipix\" -DTARGET_SYSTEM_ROOT_RELOCATABLE `test "X${SHLIB_LINK}" = "X" || test "yes" != "yes" || echo "-DENABLE_SHARED_LIBGCC"` -DCONFIGURE_SPECS="\"\"" \
+ -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/cp/g++spec.c)
+echo timestamp > s-peep
+gcc --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -DGENERATOR_FILE \
+ build/gcov-iov.o -o build/gcov-iov
+build/gcov-iov '4.6.4' '' \
+ > tmp-gcov-iov.h
+/bin/bash ../../cbb-gcc-4.6.4/gcc/../move-if-change tmp-gcov-iov.h gcov-iov.h
+echo timestamp > s-iov
+gcc -c -DIN_GCC_FRONTEND --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/c-lang.c -o c-lang.o
+/bin/bash ../../cbb-gcc-4.6.4/gcc/../move-if-change tmp-recog.c insn-recog.c
+echo timestamp > s-recog
+gcc -c -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Ic-family -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/c-family -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/c-family/stub-objc.c -o c-family/stub-objc.o
+gcc -c -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/attribs.c -o attribs.o
+In file included from ../../cbb-gcc-4.6.4/gcc/c-lang.c:27:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/c-family/stub-objc.c:26:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+/bin/bash ../../cbb-gcc-4.6.4/gcc/../move-if-change tmp-output.c insn-output.c
+echo timestamp > s-output
+gcc -c -DIN_GCC_FRONTEND --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/c-errors.c -o c-errors.o
+gcc -c -DIN_GCC_FRONTEND --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/c-decl.c -o c-decl.o
+In file included from ../../cbb-gcc-4.6.4/gcc/attribs.c:26:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c -DIN_GCC_FRONTEND --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/c-typeck.c -o c-typeck.o
+gcc -c -DIN_GCC_FRONTEND --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/c-convert.c -o c-convert.o
+In file included from ../../cbb-gcc-4.6.4/gcc/c-errors.c:25:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/c-decl.c:35:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/c-typeck.c:32:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c -DIN_GCC_FRONTEND --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/c-aux-info.c -o c-aux-info.o
+In file included from ../../cbb-gcc-4.6.4/gcc/c-convert.c:31:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c -DIN_GCC_FRONTEND --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/c-objc-common.c -o c-objc-common.o
+In file included from ../../cbb-gcc-4.6.4/gcc/c-aux-info.c:29:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c -DIN_GCC_FRONTEND --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/c-parser.c -o c-parser.o
+In file included from ../../cbb-gcc-4.6.4/gcc/c-objc-common.c:24:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-mudflap.c -o tree-mudflap.o
+In file included from ../../cbb-gcc-4.6.4/gcc/c-parser.c:44:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-mudflap.c:28:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Ic-family -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/c-family -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/c-family/c-common.c -o c-family/c-common.o
+In file included from ../../cbb-gcc-4.6.4/gcc/c-family/c-common.c:27:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Ic-family -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/c-family -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber \
+ ../../cbb-gcc-4.6.4/gcc/c-family/c-cppbuiltin.c -o c-family/c-cppbuiltin.o
+gcc -c -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Ic-family -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/c-family -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/c-family/c-dump.c -o c-family/c-dump.o
+In file included from ../../cbb-gcc-4.6.4/gcc/c-family/c-cppbuiltin.c:25:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Ic-family -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/c-family -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/c-family/c-format.c -o c-family/c-format.o
+In file included from ../../cbb-gcc-4.6.4/gcc/c-family/c-dump.c:25:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/c-family/c-format.c:26:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Ic-family -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/c-family -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/c-family/c-gimplify.c -o c-family/c-gimplify.o
+gcc -c -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Ic-family -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/c-family -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/c-family/c-lex.c -o c-family/c-lex.o
+In file included from ../../cbb-gcc-4.6.4/gcc/c-family/c-gimplify.c:31:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/c-family/c-lex.c:27:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Ic-family -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/c-family -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/c-family/c-omp.c -o c-family/c-omp.o
+gcc -c -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Ic-family -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/c-family -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber \
+ ../../cbb-gcc-4.6.4/gcc/c-family/c-opts.c -o c-family/c-opts.o -DTARGET_SYSTEM_ROOT=\"/home/lucio/midipix/x86_64-nt64-midipix\" -DTARGET_SYSTEM_ROOT_RELOCATABLE
+gcc -c -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Ic-family -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/c-family -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber \
+ -DHOST_MACHINE=\"x86_64-unknown-linux-gnu\" -DTARGET_MACHINE=\"x86_64-nt64-midipix\" \
+ ../../cbb-gcc-4.6.4/gcc/c-family/c-pch.c -o c-family/c-pch.o
+In file included from ../../cbb-gcc-4.6.4/gcc/c-family/c-omp.c:27:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/c-family/c-opts.c:25:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/c-family/c-pch.c:26:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Ic-family -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/c-family -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/c-family/c-ppoutput.c -o c-family/c-ppoutput.o
+gcc -c -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Ic-family -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/c-family -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/c-family/c-pragma.c -o c-family/c-pragma.o
+gcc -c -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Ic-family -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/c-family -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/c-family/c-pretty-print.c -o c-family/c-pretty-print.o
+In file included from ../../cbb-gcc-4.6.4/gcc/c-family/c-ppoutput.c:25:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/c-family/c-pragma.c:25:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/c-family/c-pretty-print.c:26:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Ic-family -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/c-family -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/c-family/c-semantics.c -o c-family/c-semantics.o
+In file included from ../../cbb-gcc-4.6.4/gcc/c-family/c-semantics.c:26:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Ic-family -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/c-family -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/c-family/c-ada-spec.c -o c-family/c-ada-spec.o
+gcc -c -DIN_GCC_FRONTEND -DIN_GCC_FRONTEND --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber \
+ ../../cbb-gcc-4.6.4/gcc/config/i386/i386-c.c
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/main.c -o main.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber insn-emit.c -o insn-emit.o
+In file included from ../../cbb-gcc-4.6.4/gcc/c-family/c-ada-spec.c:26:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber insn-extract.c -o insn-extract.o
+In file included from ../../cbb-gcc-4.6.4/gcc/config/i386/i386-c.c:25:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from insn-emit.c:10:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber insn-modes.c -o insn-modes.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber insn-opinit.c -o insn-opinit.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber insn-peep.c -o insn-peep.o
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/expr.h:26,
+ from insn-opinit.c:13:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from insn-peep.c:15:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber insn-preds.c -o insn-preds.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber insn-enums.c -o insn-enums.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/ggc-page.c -o ggc-page.o
+In file included from insn-preds.c:9:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/alias.c -o alias.o
+In file included from ../../cbb-gcc-4.6.4/gcc/ggc-page.c:25:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/alias.c:27:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/alloc-pool.c -o alloc-pool.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/auto-inc-dec.c -o auto-inc-dec.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/bb-reorder.c -o bb-reorder.o
+In file included from ../../cbb-gcc-4.6.4/gcc/auto-inc-dec.c:25:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/basic-block.h:26,
+ from ../../cbb-gcc-4.6.4/gcc/cfglayout.h:23,
+ from ../../cbb-gcc-4.6.4/gcc/bb-reorder.c:77:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/bitmap.c -o bitmap.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/bt-load.c -o bt-load.o
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/expr.h:26,
+ from ../../cbb-gcc-4.6.4/gcc/bt-load.c:31:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/builtins.c -o builtins.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/caller-save.c -o caller-save.o
+In file included from ../../cbb-gcc-4.6.4/gcc/builtins.c:28:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/basic-block.h:26,
+ from ../../cbb-gcc-4.6.4/gcc/caller-save.c:32:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/calls.c -o calls.o
+In file included from ../../cbb-gcc-4.6.4/gcc/calls.c:27:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/cfg.c -o cfg.o
+In file included from ../../cbb-gcc-4.6.4/gcc/cfg.c:52:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+../../cbb-gcc-4.6.4/gcc/doc/gcc.texi:89: warning: @tex should only appear at a line beginning
+../../cbb-gcc-4.6.4/gcc/doc/gcc.texi:89: warning: @end should only appear at a line beginning
+../../cbb-gcc-4.6.4/gcc/doc/gcc.texi:91: warning: @tex should only appear at a line beginning
+../../cbb-gcc-4.6.4/gcc/doc/gcc.texi:91: warning: @end should only appear at a line beginning
+../../cbb-gcc-4.6.4/gcc/doc/invoke.texi:978: warning: node next `Overall Options' in menu `C Dialect Options' and in sectioning `Invoking G++' differ
+../../cbb-gcc-4.6.4/gcc/doc/invoke.texi:978: warning: node up `Overall Options' in menu `Option Summary' and in sectioning `Invoking GCC' differ
+../../cbb-gcc-4.6.4/gcc/doc/invoke.texi:1443: warning: node prev `C Dialect Options' in menu `Overall Options' and in sectioning `Invoking G++' differ
+../../cbb-gcc-4.6.4/gcc/doc/invoke.texi:1443: warning: node up `C Dialect Options' in menu `Option Summary' and in sectioning `Invoking GCC' differ
+../../cbb-gcc-4.6.4/gcc/doc/invoke.texi:1812: warning: node up `C++ Dialect Options' in menu `Option Summary' and in sectioning `Invoking GCC' differ
+../../cbb-gcc-4.6.4/gcc/doc/invoke.texi:2514: warning: node up `Objective-C and Objective-C++ Dialect Options' in menu `Option Summary' and in sectioning `Invoking GCC' differ
+../../cbb-gcc-4.6.4/gcc/doc/invoke.texi:2746: warning: node up `Language Independent Options' in menu `Option Summary' and in sectioning `Invoking GCC' differ
+../../cbb-gcc-4.6.4/gcc/doc/invoke.texi:2809: warning: node up `Warning Options' in menu `Option Summary' and in sectioning `Invoking GCC' differ
+../../cbb-gcc-4.6.4/gcc/doc/invoke.texi:4539: warning: node up `Debugging Options' in menu `Option Summary' and in sectioning `Invoking GCC' differ
+../../cbb-gcc-4.6.4/gcc/doc/invoke.texi:5865: warning: node up `Optimize Options' in menu `Option Summary' and in sectioning `Invoking GCC' differ
+../../cbb-gcc-4.6.4/gcc/doc/invoke.texi:8913: warning: node up `Preprocessor Options' in menu `Option Summary' and in sectioning `Invoking GCC' differ
+../../cbb-gcc-4.6.4/gcc/doc/invoke.texi:8951: warning: node up `Assembler Options' in menu `Option Summary' and in sectioning `Invoking GCC' differ
+../../cbb-gcc-4.6.4/gcc/doc/invoke.texi:8974: warning: node up `Link Options' in menu `Option Summary' and in sectioning `Invoking GCC' differ
+../../cbb-gcc-4.6.4/gcc/doc/invoke.texi:9226: warning: node up `Directory Options' in menu `Option Summary' and in sectioning `Invoking GCC' differ
+../../cbb-gcc-4.6.4/gcc/doc/invoke.texi:9370: warning: node up `Spec Files' in menu `Option Summary' and in sectioning `Invoking GCC' differ
+../../cbb-gcc-4.6.4/gcc/doc/invoke.texi:9932: warning: node up `Target Options' in menu `Option Summary' and in sectioning `Invoking GCC' differ
+../../cbb-gcc-4.6.4/gcc/doc/implement-c.texi:6: warning: node next `C Implementation' in menu `C Extensions' and in sectioning `C++ Implementation' differ
+../../cbb-gcc-4.6.4/gcc/doc/implement-cxx.texi:6: warning: node next `C++ Implementation' in menu `C++ Extensions' and in sectioning `C Extensions' differ
+../../cbb-gcc-4.6.4/gcc/doc/implement-cxx.texi:6: warning: node prev `C++ Implementation' in menu `C Extensions' and in sectioning `C Implementation' differ
+../../cbb-gcc-4.6.4/gcc/doc/extend.texi:8: warning: node next `C Extensions' in menu `C++ Implementation' and in sectioning `C++ Extensions' differ
+../../cbb-gcc-4.6.4/gcc/doc/extend.texi:8: warning: node prev `C Extensions' in menu `C Implementation' and in sectioning `C++ Implementation' differ
+../../cbb-gcc-4.6.4/gcc/doc/extend.texi:771: warning: node next `Conditionals' in menu `Long Long' and in sectioning `__int128' differ
+../../cbb-gcc-4.6.4/gcc/doc/extend.texi:809: warning: node next `__int128' in menu `Complex' and in sectioning `Long Long' differ
+../../cbb-gcc-4.6.4/gcc/doc/extend.texi:809: warning: node prev `__int128' in menu `Long Long' and in sectioning `Conditionals' differ
+../../cbb-gcc-4.6.4/gcc/doc/extend.texi:820: warning: node next `Long Long' in menu `__int128' and in sectioning `Complex' differ
+../../cbb-gcc-4.6.4/gcc/doc/extend.texi:820: warning: node prev `Long Long' in menu `Conditionals' and in sectioning `__int128' differ
+../../cbb-gcc-4.6.4/gcc/doc/extend.texi:852: warning: node prev `Complex' in menu `__int128' and in sectioning `Long Long' differ
+../../cbb-gcc-4.6.4/gcc/doc/extend.texi:1246: warning: node next `Zero Length' in menu `Variable Length' and in sectioning `Empty Structures' differ
+../../cbb-gcc-4.6.4/gcc/doc/extend.texi:1344: warning: node next `Empty Structures' in menu `Variadic Macros' and in sectioning `Variable Length' differ
+../../cbb-gcc-4.6.4/gcc/doc/extend.texi:1344: warning: node prev `Empty Structures' in menu `Variable Length' and in sectioning `Zero Length' differ
+../../cbb-gcc-4.6.4/gcc/doc/extend.texi:1360: warning: node next `Variable Length' in menu `Empty Structures' and in sectioning `Variadic Macros' differ
+../../cbb-gcc-4.6.4/gcc/doc/extend.texi:1360: warning: node prev `Variable Length' in menu `Zero Length' and in sectioning `Empty Structures' differ
+../../cbb-gcc-4.6.4/gcc/doc/extend.texi:1441: warning: node prev `Variadic Macros' in menu `Empty Structures' and in sectioning `Variable Length' differ
+../../cbb-gcc-4.6.4/gcc/doc/extend.texi:1659: warning: node next `Designated Inits' in menu `Cast to Union' and in sectioning `Case Ranges' differ
+../../cbb-gcc-4.6.4/gcc/doc/extend.texi:1803: warning: node next `Case Ranges' in menu `Mixed Declarations' and in sectioning `Cast to Union' differ
+../../cbb-gcc-4.6.4/gcc/doc/extend.texi:1803: warning: node prev `Case Ranges' in menu `Cast to Union' and in sectioning `Designated Inits' differ
+../../cbb-gcc-4.6.4/gcc/doc/extend.texi:1840: warning: node next `Cast to Union' in menu `Case Ranges' and in sectioning `Mixed Declarations' differ
+../../cbb-gcc-4.6.4/gcc/doc/extend.texi:1840: warning: node prev `Cast to Union' in menu `Designated Inits' and in sectioning `Case Ranges' differ
+../../cbb-gcc-4.6.4/gcc/doc/extend.texi:1881: warning: node prev `Mixed Declarations' in menu `Case Ranges' and in sectioning `Cast to Union' differ
+../../cbb-gcc-4.6.4/gcc/doc/extend.texi:10004: warning: node next `MIPS Loongson Built-in Functions' in menu `Other MIPS Built-in Functions' and in sectioning `picoChip Built-in Functions' differ
+../../cbb-gcc-4.6.4/gcc/doc/extend.texi:10407: warning: node next `picoChip Built-in Functions' in menu `PowerPC AltiVec/VSX Built-in Functions' and in sectioning `Other MIPS Built-in Functions' differ
+../../cbb-gcc-4.6.4/gcc/doc/extend.texi:10407: warning: node prev `picoChip Built-in Functions' in menu `Other MIPS Built-in Functions' and in sectioning `MIPS Loongson Built-in Functions' differ
+../../cbb-gcc-4.6.4/gcc/doc/extend.texi:10443: warning: node next `Other MIPS Built-in Functions' in menu `picoChip Built-in Functions' and in sectioning `PowerPC AltiVec/VSX Built-in Functions' differ
+../../cbb-gcc-4.6.4/gcc/doc/extend.texi:10443: warning: node prev `Other MIPS Built-in Functions' in menu `MIPS Loongson Built-in Functions' and in sectioning `picoChip Built-in Functions' differ
+../../cbb-gcc-4.6.4/gcc/doc/extend.texi:10455: warning: node prev `PowerPC AltiVec/VSX Built-in Functions' in menu `picoChip Built-in Functions' and in sectioning `Other MIPS Built-in Functions' differ
+../../cbb-gcc-4.6.4/gcc/doc/extend.texi:13701: warning: node prev `C++ Extensions' in menu `C++ Implementation' and in sectioning `C Extensions' differ
+../../cbb-gcc-4.6.4/gcc/doc/trouble.texi:7: warning: node next `Trouble' in menu `Service' and in sectioning `Bugs' differ
+../../cbb-gcc-4.6.4/gcc/doc/trouble.texi:7: warning: node prev `Trouble' in menu `Bug Reporting' and in sectioning `Gcov' differ
+../../cbb-gcc-4.6.4/gcc/doc/trouble.texi:7: warning: node up `Trouble' in menu `Bugs' and in sectioning `Top' differ
+../../cbb-gcc-4.6.4/gcc/doc/service.texi:6: warning: node prev `Service' in menu `Trouble' and in sectioning `Bugs' differ
+../../cbb-gcc-4.6.4/gcc/doc/service.texi:6: warning: node up `Service' in menu `Bugs' and in sectioning `Top' differ
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/cfganal.c -o cfganal.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/cfgbuild.c -o cfgbuild.o
+In file included from ../../cbb-gcc-4.6.4/gcc/cfgbuild.c:27:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/basic-block.h:26,
+ from ../../cbb-gcc-4.6.4/gcc/cfganal.c:30:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/cfgcleanup.c -o cfgcleanup.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/cfgexpand.c -o cfgexpand.o
+/bin/bash ../../cbb-gcc-4.6.4/gcc/../move-if-change tmp-attrtab.c insn-attrtab.c
+echo timestamp > s-attrtab
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/cfghooks.c -o cfghooks.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/cfglayout.c -o cfglayout.o
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/basic-block.h:26,
+ from ../../cbb-gcc-4.6.4/gcc/cfglayout.h:23,
+ from ../../cbb-gcc-4.6.4/gcc/cfgcleanup.c:51:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/cfgexpand.c:25:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/cfglayout.c:25:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/cfghooks.c:26:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/cfgloop.c -o cfgloop.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/cfgloopanal.c -o cfgloopanal.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/cfgloopmanip.c -o cfgloopmanip.o
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/cfgloop.c:28:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/basic-block.h:26,
+ from ../../cbb-gcc-4.6.4/gcc/cfgloopanal.c:28:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/basic-block.h:26,
+ from ../../cbb-gcc-4.6.4/gcc/cfgloopmanip.c:28:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/cfgrtl.c -o cfgrtl.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/combine.c -o combine.o
+In file included from ../../cbb-gcc-4.6.4/gcc/cfgrtl.c:44:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/combine-stack-adj.c -o combine-stack-adj.o
+In file included from ../../cbb-gcc-4.6.4/gcc/combine.c:83:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/compare-elim.c -o compare-elim.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/convert.c -o convert.o
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/combine-stack-adj.c:55:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/coverage.c -o coverage.o
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/basic-block.h:26,
+ from ../../cbb-gcc-4.6.4/gcc/compare-elim.c:67:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/cse.c -o cse.o
+In file included from ../../cbb-gcc-4.6.4/gcc/convert.c:30:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/cselib.c -o cselib.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/dbxout.c -o dbxout.o
+In file included from ../../cbb-gcc-4.6.4/gcc/coverage.c:34:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/basic-block.h:26,
+ from ../../cbb-gcc-4.6.4/gcc/cse.c:30:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/dbxout.c:76:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/cselib.c:34:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/dbgcnt.c -o dbgcnt.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/dce.c -o dce.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/ddg.c -o ddg.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/debug.c -o debug.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/df-core.c -o df-core.o
+In file included from ../../cbb-gcc-4.6.4/gcc/dce.c:27:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/df-problems.c -o df-problems.o
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/ddg.c:32:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/debug.c:23:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/df-scan.c -o df-scan.o
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/df-core.c:386:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/dfp.c -o dfp.o
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/df-problems.c:33:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/diagnostic.c -o diagnostic.o
+In file included from ../../cbb-gcc-4.6.4/gcc/dfp.c:25:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/dojump.c -o dojump.o
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/df-scan.c:33:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/dominance.c -o dominance.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/domwalk.c -o domwalk.o
+In file included from ../../cbb-gcc-4.6.4/gcc/dojump.c:27:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/double-int.c -o double-int.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/dse.c -o dse.o
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/basic-block.h:26,
+ from ../../cbb-gcc-4.6.4/gcc/domwalk.c:26:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/basic-block.h:26,
+ from ../../cbb-gcc-4.6.4/gcc/dominance.c:43:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/dwarf2asm.c -o dwarf2asm.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/dwarf2out.c -o dwarf2out.o
+In file included from ../../cbb-gcc-4.6.4/gcc/double-int.c:24:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/dse.c:32:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/dwarf2asm.c:27:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/dwarf2out.c:64:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/ebitmap.c -o ebitmap.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/emit-rtl.c -o emit-rtl.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/et-forest.c -o et-forest.o
+In file included from ../../cbb-gcc-4.6.4/gcc/emit-rtl.c:43:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/except.c -o except.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/explow.c -o explow.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -Wno-error -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/expmed.c -o expmed.o
+In file included from ../../cbb-gcc-4.6.4/gcc/except.c:119:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+../../cbb-gcc-4.6.4/gcc/doc/sourcebuild.texi:679: warning: @itemx should not begin @table
+./tm.texi:11301: warning: @end should only appear at a line beginning
+../../cbb-gcc-4.6.4/gcc/doc/passes.texi:9: warning: node next `Passes' in menu `GENERIC' and in sectioning `RTL' differ
+../../cbb-gcc-4.6.4/gcc/doc/rtl.texi:7: warning: node next `RTL' in menu `Control Flow' and in sectioning `GENERIC' differ
+../../cbb-gcc-4.6.4/gcc/doc/rtl.texi:7: warning: node prev `RTL' in menu `Tree SSA' and in sectioning `Passes' differ
+../../cbb-gcc-4.6.4/gcc/doc/generic.texi:10: warning: node prev `GENERIC' in menu `Passes' and in sectioning `RTL' differ
+../../cbb-gcc-4.6.4/gcc/doc/tree-ssa.texi:10: warning: node next `Tree SSA' in menu `RTL' and in sectioning `Loop Analysis and Representation' differ
+../../cbb-gcc-4.6.4/gcc/doc/loop.texi:10: warning: node next `Loop Analysis and Representation' in menu `Machine Desc' and in sectioning `Control Flow' differ
+../../cbb-gcc-4.6.4/gcc/doc/loop.texi:10: warning: node prev `Loop Analysis and Representation' in menu `Control Flow' and in sectioning `Tree SSA' differ
+../../cbb-gcc-4.6.4/gcc/doc/cfg.texi:11: warning: node next `Control Flow' in menu `Loop Analysis and Representation' and in sectioning `Machine Desc' differ
+../../cbb-gcc-4.6.4/gcc/doc/cfg.texi:11: warning: node prev `Control Flow' in menu `RTL' and in sectioning `Loop Analysis and Representation' differ
+../../cbb-gcc-4.6.4/gcc/doc/md.texi:8: warning: node prev `Machine Desc' in menu `Loop Analysis and Representation' and in sectioning `Control Flow' differ
+../../cbb-gcc-4.6.4/gcc/doc/md.texi:1522: warning: node next `Modifiers' in menu `Disable Insn Alternatives' and in sectioning `Machine Constraints' differ
+../../cbb-gcc-4.6.4/gcc/doc/md.texi:1631: warning: node next `Machine Constraints' in menu `Define Constraints' and in sectioning `Disable Insn Alternatives' differ
+../../cbb-gcc-4.6.4/gcc/doc/md.texi:1631: warning: node prev `Machine Constraints' in menu `Disable Insn Alternatives' and in sectioning `Modifiers' differ
+../../cbb-gcc-4.6.4/gcc/doc/md.texi:3421: warning: node next `Disable Insn Alternatives' in menu `Machine Constraints' and in sectioning `Define Constraints' differ
+../../cbb-gcc-4.6.4/gcc/doc/md.texi:3421: warning: node prev `Disable Insn Alternatives' in menu `Modifiers' and in sectioning `Machine Constraints' differ
+../../cbb-gcc-4.6.4/gcc/doc/md.texi:3514: warning: node prev `Define Constraints' in menu `Machine Constraints' and in sectioning `Disable Insn Alternatives' differ
+In file included from ../../cbb-gcc-4.6.4/gcc/explow.c:29:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/expmed.c:31:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/expr.c -o expr.o
+In file included from ../../cbb-gcc-4.6.4/gcc/expr.c:28:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/final.c -o final.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/fixed-value.c -o fixed-value.o
+In file included from ../../cbb-gcc-4.6.4/gcc/final.c:52:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/fixed-value.c:24:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/fold-const.c -o fold-const.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/function.c -o function.o
+In file included from ../../cbb-gcc-4.6.4/gcc/fold-const.c:50:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/function.c:41:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/fwprop.c -o fwprop.o
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/basic-block.h:26,
+ from ../../cbb-gcc-4.6.4/gcc/fwprop.c:36:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/gcse.c -o gcse.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/ggc-common.c -o ggc-common.o
+In file included from ../../cbb-gcc-4.6.4/gcc/gcse.c:150:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/gimple.c -o gimple.o
+In file included from ../../cbb-gcc-4.6.4/gcc/gimple.c:27:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+/bin/bash ../../cbb-gcc-4.6.4/gcc/../move-if-change tmp-automata.c insn-automata.c
+echo timestamp > s-automata
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/gimple-iterator.c -o gimple-iterator.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/gimple-fold.c -o gimple-fold.o
+In file included from ../../cbb-gcc-4.6.4/gcc/gimple-fold.c:25:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/gimple-iterator.c:25:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/gimple-low.c -o gimple-low.o
+In file included from ../../cbb-gcc-4.6.4/gcc/gimple-low.c:26:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/gimple-pretty-print.c -o gimple-pretty-print.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/gimplify.c -o gimplify.o
+In file included from ../../cbb-gcc-4.6.4/gcc/gimple-pretty-print.c:27:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/gimplify.c:28:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/godump.c -o godump.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/graph.c -o graph.o
+In file included from ../../cbb-gcc-4.6.4/gcc/godump.c:34:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/graph.c:29:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/graphds.c -o graphds.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/graphite.c -o graphite.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/graphite-blocking.c -o graphite-blocking.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/graphite-clast-to-gimple.c -o graphite-clast-to-gimple.o
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/basic-block.h:26,
+ from ../../cbb-gcc-4.6.4/gcc/tree-flow.h:27,
+ from ../../cbb-gcc-4.6.4/gcc/graphite-blocking.c:26:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/basic-block.h:26,
+ from ../../cbb-gcc-4.6.4/gcc/tree-flow.h:27,
+ from ../../cbb-gcc-4.6.4/gcc/graphite.c:39:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/graphite-cloog-util.c -o graphite-cloog-util.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/graphite-dependences.c -o graphite-dependences.o
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/basic-block.h:26,
+ from ../../cbb-gcc-4.6.4/gcc/tree-flow.h:27,
+ from ../../cbb-gcc-4.6.4/gcc/graphite-clast-to-gimple.c:25:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/basic-block.h:26,
+ from ../../cbb-gcc-4.6.4/gcc/tree-flow.h:27,
+ from ../../cbb-gcc-4.6.4/gcc/graphite-dependences.c:25:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/graphite-flattening.c -o graphite-flattening.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/graphite-interchange.c -o graphite-interchange.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/graphite-poly.c -o graphite-poly.o
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/basic-block.h:26,
+ from ../../cbb-gcc-4.6.4/gcc/tree-flow.h:27,
+ from ../../cbb-gcc-4.6.4/gcc/graphite-flattening.c:24:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/basic-block.h:26,
+ from ../../cbb-gcc-4.6.4/gcc/tree-flow.h:27,
+ from ../../cbb-gcc-4.6.4/gcc/graphite-interchange.c:26:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/graphite-ppl.c -o graphite-ppl.o
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/basic-block.h:26,
+ from ../../cbb-gcc-4.6.4/gcc/tree-flow.h:27,
+ from ../../cbb-gcc-4.6.4/gcc/graphite-poly.c:25:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/graphite-scop-detection.c -o graphite-scop-detection.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/graphite-sese-to-poly.c -o graphite-sese-to-poly.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber gtype-desc.c -o gtype-desc.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/haifa-sched.c -o haifa-sched.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/hooks.c -o hooks.o
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/basic-block.h:26,
+ from ../../cbb-gcc-4.6.4/gcc/tree-flow.h:27,
+ from ../../cbb-gcc-4.6.4/gcc/graphite-scop-detection.c:25:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/basic-block.h:26,
+ from ../../cbb-gcc-4.6.4/gcc/tree-flow.h:27,
+ from ../../cbb-gcc-4.6.4/gcc/graphite-sese-to-poly.c:24:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/hwint.c -o hwint.o
+In file included from gtype-desc.c:30:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/ifcvt.c -o ifcvt.o
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/haifa-sched.c:136:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/implicit-zee.c -o implicit-zee.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/init-regs.c -o init-regs.o
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/ifcvt.c:28:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/input.c -o input.o
+In file included from ../../cbb-gcc-4.6.4/gcc/implicit-zee.c:182:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/integrate.c -o integrate.o
+In file included from ../../cbb-gcc-4.6.4/gcc/init-regs.c:24:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber \
+ -DLOCALEDIR=\"/home/lucio/midipix/share/locale\" \
+ -c ../../cbb-gcc-4.6.4/gcc/intl.c -o intl.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/ira.c -o ira.o
+In file included from ../../cbb-gcc-4.6.4/gcc/integrate.c:29:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/ira-build.c -o ira-build.o
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/basic-block.h:26,
+ from ../../cbb-gcc-4.6.4/gcc/ira.c:310:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/ira-costs.c -o ira-costs.o
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/basic-block.h:26,
+ from ../../cbb-gcc-4.6.4/gcc/ira-build.c:32:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/ira-conflicts.c -o ira-conflicts.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/ira-color.c -o ira-color.o
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/expr.h:26,
+ from ../../cbb-gcc-4.6.4/gcc/ira-costs.c:28:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/basic-block.h:26,
+ from ../../cbb-gcc-4.6.4/gcc/ira-conflicts.c:32:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/basic-block.h:26,
+ from ../../cbb-gcc-4.6.4/gcc/ira-color.c:34:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/ira-emit.c -o ira-emit.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/ira-lives.c -o ira-lives.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/jump.c -o jump.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/langhooks.c -o langhooks.o
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/basic-block.h:26,
+ from ../../cbb-gcc-4.6.4/gcc/ira-emit.c:35:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/basic-block.h:26,
+ from ../../cbb-gcc-4.6.4/gcc/ira-lives.c:33:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/langhooks.c:28:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/jump.c:49:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/lcm.c -o lcm.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/lists.c -o lists.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/loop-doloop.c -o loop-doloop.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/loop-init.c -o loop-init.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/loop-invariant.c -o loop-invariant.o
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/basic-block.h:26,
+ from ../../cbb-gcc-4.6.4/gcc/lcm.c:62:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/loop-iv.c -o loop-iv.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/loop-unroll.c -o loop-unroll.o
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/expr.h:26,
+ from ../../cbb-gcc-4.6.4/gcc/loop-doloop.c:28:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/basic-block.h:26,
+ from ../../cbb-gcc-4.6.4/gcc/loop-init.c:28:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/basic-block.h:26,
+ from ../../cbb-gcc-4.6.4/gcc/loop-invariant.c:46:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/loop-unswitch.c -o loop-unswitch.o
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/basic-block.h:26,
+ from ../../cbb-gcc-4.6.4/gcc/loop-iv.c:58:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/lower-subreg.c -o lower-subreg.o
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/basic-block.h:26,
+ from ../../cbb-gcc-4.6.4/gcc/loop-unroll.c:28:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/lto-cgraph.c -o lto-cgraph.o
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/basic-block.h:26,
+ from ../../cbb-gcc-4.6.4/gcc/loop-unswitch.c:28:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/basic-block.h:26,
+ from ../../cbb-gcc-4.6.4/gcc/lower-subreg.c:33:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/lto-cgraph.c:27:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/lto-streamer-in.c -o lto-streamer-in.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/lto-streamer-out.c -o lto-streamer-out.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/lto-section-in.c -o lto-section-in.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/lto-section-out.c -o lto-section-out.o
+In file included from ../../cbb-gcc-4.6.4/gcc/lto-streamer-in.c:28:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/lto-symtab.c -o lto-symtab.o
+In file included from ../../cbb-gcc-4.6.4/gcc/lto-streamer-out.c:27:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/lto-section-in.c:26:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/lto-section-out.c:26:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/lto-symtab.c:25:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/lto-opts.c -o lto-opts.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/lto-streamer.c -o lto-streamer.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../zlib ../../cbb-gcc-4.6.4/gcc/lto-compress.c -o lto-compress.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/mcf.c -o mcf.o
+In file included from ../../cbb-gcc-4.6.4/gcc/lto-opts.c:25:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/lto-streamer.c:29:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/lto-compress.c:30:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/basic-block.h:26,
+ from ../../cbb-gcc-4.6.4/gcc/mcf.c:50:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/mode-switching.c -o mode-switching.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/modulo-sched.c -o modulo-sched.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/omega.c -o omega.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/omp-low.c -o omp-low.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/optabs.c -o optabs.o
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/basic-block.h:26,
+ from ../../cbb-gcc-4.6.4/gcc/mode-switching.c:32:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/modulo-sched.c:32:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber options.c -o options.o
+In file included from ../../cbb-gcc-4.6.4/gcc/omega.c:37:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/omp-low.c:29:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/opts-common.c -o opts-common.o
+In file included from ../../cbb-gcc-4.6.4/gcc/optabs.c:33:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/opts-global.c -o opts-global.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/opts.c -o opts.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/params.c -o params.o
+In file included from ../../cbb-gcc-4.6.4/gcc/opts-global.c:29:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/passes.c -o passes.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/plugin.c -o plugin.o
+In file included from ../../cbb-gcc-4.6.4/gcc/passes.c:33:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/pointer-set.c -o pointer-set.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/postreload-gcse.c -o postreload-gcse.o
+In file included from ../../cbb-gcc-4.6.4/gcc/plugin.c:27:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/postreload.c -o postreload.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/predict.c -o predict.o
+In file included from ../../cbb-gcc-4.6.4/gcc/postreload-gcse.c:28:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/postreload.c:34:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/pretty-print.c -o pretty-print.o
+In file included from ../../cbb-gcc-4.6.4/gcc/predict.c:35:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/print-rtl.c -o print-rtl.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/print-tree.c -o print-tree.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/profile.c -o profile.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/real.c -o real.o
+In file included from ../../cbb-gcc-4.6.4/gcc/print-tree.c:27:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/print-rtl.c:38:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/realmpfr.c -o realmpfr.o
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/expr.h:26,
+ from ../../cbb-gcc-4.6.4/gcc/profile.c:60:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/real.c:28:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/realmpfr.c:24:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/recog.c -o recog.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/reg-stack.c -o reg-stack.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/regcprop.c -o regcprop.o
+In file included from ../../cbb-gcc-4.6.4/gcc/reg-stack.c:158:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/reginfo.c -o reginfo.o
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/expr.h:26,
+ from ../../cbb-gcc-4.6.4/gcc/recog.c:35:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/regmove.c -o regmove.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/regrename.c -o regrename.o
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/basic-block.h:26,
+ from ../../cbb-gcc-4.6.4/gcc/regcprop.c:31:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/expr.h:26,
+ from ../../cbb-gcc-4.6.4/gcc/reginfo.c:36:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/regmove.c:39:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/basic-block.h:26,
+ from ../../cbb-gcc-4.6.4/gcc/regrename.c:31:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/regstat.c -o regstat.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/reload.c -o reload.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/reload1.c -o reload1.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/reorg.c -o reorg.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/resource.c -o resource.o
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/basic-block.h:26,
+ from ../../cbb-gcc-4.6.4/gcc/regstat.c:34:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/rtl-error.c -o rtl-error.o
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/expr.h:26,
+ from ../../cbb-gcc-4.6.4/gcc/reload.c:100:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/reload1.c:34:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/expr.h:26,
+ from ../../cbb-gcc-4.6.4/gcc/reorg.c:121:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/resource.c:29:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/rtl.c -o rtl.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/rtlanal.c -o rtlanal.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/rtlhooks.c -o rtlhooks.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/sbitmap.c -o sbitmap.o
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/expr.h:26,
+ from ../../cbb-gcc-4.6.4/gcc/rtlhooks.c:26:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/rtlanal.c:37:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/sched-deps.c -o sched-deps.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/sched-ebb.c -o sched-ebb.o
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/basic-block.h:26,
+ from ../../cbb-gcc-4.6.4/gcc/sbitmap.c:32:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/sched-deps.c:34:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/sched-ebb.c:33:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/sched-rgn.c -o sched-rgn.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/sched-vis.c -o sched-vis.o
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/sched-rgn.c:57:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/sdbout.c -o sdbout.o
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/basic-block.h:26,
+ from ../../cbb-gcc-4.6.4/gcc/sched-vis.c:31:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/sel-sched-ir.c -o sel-sched-ir.o
+In file included from ../../cbb-gcc-4.6.4/gcc/sdbout.c:49:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/sel-sched-dump.c -o sel-sched-dump.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/sel-sched.c -o sel-sched.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/sese.c -o sese.o
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/sel-sched-ir.c:29:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/basic-block.h:26,
+ from ../../cbb-gcc-4.6.4/gcc/tree-flow.h:27,
+ from ../../cbb-gcc-4.6.4/gcc/sese.c:27:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/sel-sched-dump.c:29:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/sel-sched.c:29:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/simplify-rtx.c -o simplify-rtx.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/sparseset.c -o sparseset.o
+In file included from ../../cbb-gcc-4.6.4/gcc/simplify-rtx.c:28:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/sreal.c -o sreal.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/stack-ptr-mod.c -o stack-ptr-mod.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/statistics.c -o statistics.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/stmt.c -o stmt.o
+In file included from ../../cbb-gcc-4.6.4/gcc/stack-ptr-mod.c:25:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/statistics.c:29:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/stor-layout.c -o stor-layout.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/store-motion.c -o store-motion.o
+In file included from ../../cbb-gcc-4.6.4/gcc/stmt.c:34:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/stor-layout.c:27:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/store-motion.c:29:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/stringpool.c -o stringpool.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/target-globals.c -o target-globals.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/targhooks.c -o targhooks.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/timevar.c -o timevar.o
+In file included from ../../cbb-gcc-4.6.4/gcc/stringpool.c:34:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber \
+ -DTARGET_NAME=\"x86_64-nt64-midipix\" \
+ -c ../../cbb-gcc-4.6.4/gcc/toplev.c -o toplev.o
+In file included from ../../cbb-gcc-4.6.4/gcc/targhooks.c:56:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tracer.c -o tracer.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-affine.c -o tree-affine.o
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/expr.h:26,
+ from ../../cbb-gcc-4.6.4/gcc/target-globals.c:35:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-call-cdce.c -o tree-call-cdce.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-cfg.c -o tree-cfg.o
+In file included from ../../cbb-gcc-4.6.4/gcc/toplev.c:33:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-affine.c:23:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/tracer.c:41:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/basic-block.h:26,
+ from ../../cbb-gcc-4.6.4/gcc/tree-call-cdce.c:26:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-cfg.c:26:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-cfgcleanup.c -o tree-cfgcleanup.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-chrec.c -o tree-chrec.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-complex.c -o tree-complex.o
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-cfgcleanup.c:25:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-data-ref.c -o tree-data-ref.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-dfa.c -o tree-dfa.o
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/basic-block.h:26,
+ from ../../cbb-gcc-4.6.4/gcc/cfgloop.h:24,
+ from ../../cbb-gcc-4.6.4/gcc/tree-chrec.c:31:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-complex.c:25:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/basic-block.h:26,
+ from ../../cbb-gcc-4.6.4/gcc/tree-flow.h:27,
+ from ../../cbb-gcc-4.6.4/gcc/tree-data-ref.c:81:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-dfa.c:28:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-diagnostic.c -o tree-diagnostic.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-dump.c -o tree-dump.o
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-diagnostic.c:26:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-eh.c -o tree-eh.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-emutls.c -o tree-emutls.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-if-conv.c -o tree-if-conv.o
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-dump.c:26:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-into-ssa.c -o tree-into-ssa.o
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-emutls.c:24:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-eh.c:25:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-if-conv.c:88:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-iterator.c -o tree-iterator.o
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-into-ssa.c:26:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-iterator.c:25:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-loop-distribution.c -o tree-loop-distribution.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-nested.c -o tree-nested.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-nrv.c -o tree-nrv.o
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/basic-block.h:26,
+ from ../../cbb-gcc-4.6.4/gcc/tree-flow.h:27,
+ from ../../cbb-gcc-4.6.4/gcc/tree-loop-distribution.c:48:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-nested.c:25:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-object-size.c -o tree-object-size.o
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-nrv.c:25:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-optimize.c -o tree-optimize.o
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-optimize.c:26:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-object-size.c:26:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-outof-ssa.c -o tree-outof-ssa.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-parloops.c -o tree-parloops.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-phinodes.c -o tree-phinodes.o
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-outof-ssa.c:26:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/basic-block.h:26,
+ from ../../cbb-gcc-4.6.4/gcc/tree-flow.h:27,
+ from ../../cbb-gcc-4.6.4/gcc/tree-parloops.c:26:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-phinodes.c:25:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-predcom.c -o tree-predcom.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-pretty-print.c -o tree-pretty-print.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-profile.c -o tree-profile.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-scalar-evolution.c -o tree-scalar-evolution.o
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-predcom.c:192:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-pretty-print.c:26:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/tree-profile.c:35:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-sra.c -o tree-sra.o
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/basic-block.h:26,
+ from ../../cbb-gcc-4.6.4/gcc/tree-flow.h:27,
+ from ../../cbb-gcc-4.6.4/gcc/tree-scalar-evolution.c:261:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-switch-conversion.c -o tree-switch-conversion.o
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-sra.c:79:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-ssa-address.c -o tree-ssa-address.o
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-switch-conversion.c:86:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-ssa-alias.c -o tree-ssa-alias.o
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-ssa-address.c:28:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-ssa-ccp.c -o tree-ssa-ccp.o
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-ssa-alias.c:26:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-ssa-coalesce.c -o tree-ssa-coalesce.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-ssa-copy.c -o tree-ssa-copy.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-ssa-copyrename.c -o tree-ssa-copyrename.o
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-ssa-ccp.c:117:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-ssa-dce.c -o tree-ssa-dce.o
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-ssa-coalesce.c:26:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-ssa-copy.c:25:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-ssa-copyrename.c:26:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-ssa-dce.c:51:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-ssa-dom.c -o tree-ssa-dom.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-ssa-dse.c -o tree-ssa-dse.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-ssa-forwprop.c -o tree-ssa-forwprop.o
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-ssa-dom.c:26:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-ssa-ifcombine.c -o tree-ssa-ifcombine.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-ssa-live.c -o tree-ssa-live.o
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-ssa-forwprop.c:25:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-ssa-dse.c:26:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-ssa-ifcombine.c:25:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-ssa-loop-ch.c -o tree-ssa-loop-ch.o
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-ssa-live.c:26:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-ssa-loop-im.c -o tree-ssa-loop-im.o
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-ssa-loop-ch.c:25:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-ssa-loop-ivcanon.c -o tree-ssa-loop-ivcanon.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-ssa-loop-ivopts.c -o tree-ssa-loop-ivopts.o
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-ssa-loop-im.c:25:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-ssa-loop-ivcanon.c:40:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-ssa-loop-manip.c -o tree-ssa-loop-manip.o
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-ssa-loop-ivopts.c:69:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-ssa-loop-niter.c -o tree-ssa-loop-niter.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-ssa-loop-prefetch.c -o tree-ssa-loop-prefetch.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-ssa-loop-unswitch.c -o tree-ssa-loop-unswitch.o
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-ssa-loop-manip.c:25:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-ssa-loop-niter.c:25:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-ssa-loop-prefetch.c:24:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-ssa-loop-unswitch.c:24:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-ssa-loop.c -o tree-ssa-loop.o
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-ssa-loop.c:25:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-ssa-math-opts.c -o tree-ssa-math-opts.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-ssa-operands.c -o tree-ssa-operands.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-ssa-phiopt.c -o tree-ssa-phiopt.o
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-ssa-operands.c:25:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-ssa-math-opts.c:93:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-ssa-phiprop.c -o tree-ssa-phiprop.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-ssa-pre.c -o tree-ssa-pre.o
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-ssa-phiopt.c:26:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-ssa-propagate.c -o tree-ssa-propagate.o
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-ssa-phiprop.c:25:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-ssa-pre.c:27:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-ssa-propagate.c:26:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-ssa-reassoc.c -o tree-ssa-reassoc.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-ssa-sccvn.c -o tree-ssa-sccvn.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-ssa-sink.c -o tree-ssa-sink.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-ssa-structalias.c -o tree-ssa-structalias.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-ssa-ter.c -o tree-ssa-ter.o
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-ssa-reassoc.c:26:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-ssa-sccvn.c:26:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-ssa-sink.c:26:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/basic-block.h:26,
+ from ../../cbb-gcc-4.6.4/gcc/tree-ssa-structalias.c:30:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-ssa-ter.c:27:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-ssa-threadedge.c -o tree-ssa-threadedge.o
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-ssa-threadedge.c:26:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-ssa-threadupdate.c -o tree-ssa-threadupdate.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-ssa-uncprop.c -o tree-ssa-uncprop.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-ssa-uninit.c -o tree-ssa-uninit.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-ssa.c -o tree-ssa.o
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-ssa-threadupdate.c:25:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-ssa-uncprop.c:25:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-ssa-uninit.c:26:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-ssa.c:25:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-ssanames.c -o tree-ssanames.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-stdarg.c -o tree-stdarg.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-tailcall.c -o tree-tailcall.o
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-ssanames.c:25:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-vect-generic.c -o tree-vect-generic.o
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-stdarg.c:26:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-tailcall.c:25:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-vect-generic.c:24:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-vect-patterns.c -o tree-vect-patterns.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-vect-data-refs.c -o tree-vect-data-refs.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-vect-stmts.c -o tree-vect-stmts.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-vect-loop.c -o tree-vect-loop.o
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-vect-patterns.c:26:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-vect-stmts.c:28:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-vect-data-refs.c:28:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-vect-loop-manip.c -o tree-vect-loop-manip.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-vect-slp.c -o tree-vect-slp.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-vectorizer.c -o tree-vectorizer.o
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-vect-loop.c:28:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-vect-loop-manip.c:28:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-vectorizer.c:63:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-vect-slp.c:28:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-vrp.c -o tree-vrp.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree.c -o tree.o
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-vrp.c:28:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/tree.c:37:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/value-prof.c -o value-prof.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/var-tracking.c -o var-tracking.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/varasm.c -o varasm.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/vec.c -o vec.o
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/expr.h:26,
+ from ../../cbb-gcc-4.6.4/gcc/value-prof.c:26:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/var-tracking.c:94:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/varasm.c:36:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber \
+-DBASEVER="\"4.6.4\"" -DDATESTAMP="\"\"" \
+-DREVISION="\"\"" \
+-DDEVPHASE="\"\"" -DPKGVERSION="\"(GCC) \"" \
+-DBUGURL="\"<http://gcc.gnu.org/bugs.html>\"" -c ../../cbb-gcc-4.6.4/gcc/version.c -o version.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/vmsdbgout.c -o vmsdbgout.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/web.c -o web.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/xcoffout.c -o xcoffout.o
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/basic-block.h:26,
+ from ../../cbb-gcc-4.6.4/gcc/web.c:47:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/xcoffout.c:30:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber \
+ ../../cbb-gcc-4.6.4/gcc/config/i386/i386.c -o i386.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber \
+--include=../../cbb-gcc-4.6.4/gcc/config/i386/midipix_winnt_common.h \
+../../cbb-gcc-4.6.4/gcc/config/i386/winnt.c -o midipix_winnt_common.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber \
+../../cbb-gcc-4.6.4/gcc/config/i386/winnt-stubs.c -o midipix_winnt_stubs.o
+In file included from ../../cbb-gcc-4.6.4/gcc/config/i386/i386.c:27:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/config/i386/winnt.c:30:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/config/i386/winnt-stubs.c:30:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber \
+../../cbb-gcc-4.6.4/gcc/config/i386/midipix.c -o midipix.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber \
+ ../../cbb-gcc-4.6.4/gcc/config/host-linux.c
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/cgraph.c -o cgraph.o
+In file included from ../../cbb-gcc-4.6.4/gcc/config/i386/midipix.c:29:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/cgraphbuild.c -o cgraphbuild.o
+In file included from ../../cbb-gcc-4.6.4/gcc/cgraph.c:79:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/cgraphunit.c -o cgraphunit.o
+gcc --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber \
+ -DGCC_INCLUDE_DIR=\"/home/lucio/midipix/lib/gcc/x86_64-nt64-midipix/4.6.4/include\" -DFIXED_INCLUDE_DIR=\"/home/lucio/midipix/lib/gcc/x86_64-nt64-midipix/4.6.4/include-fixed\" -DGPLUSPLUS_INCLUDE_DIR=\"/home/lucio/midipix/lib/gcc/x86_64-nt64-midipix/4.6.4/../../../../x86_64-nt64-midipix/include/c++/4.6.4\" -DGPLUSPLUS_TOOL_INCLUDE_DIR=\"/home/lucio/midipix/lib/gcc/x86_64-nt64-midipix/4.6.4/../../../../x86_64-nt64-midipix/include/c++/4.6.4/x86_64-nt64-midipix\" -DGPLUSPLUS_BACKWARD_INCLUDE_DIR=\"/home/lucio/midipix/lib/gcc/x86_64-nt64-midipix/4.6.4/../../../../x86_64-nt64-midipix/include/c++/4.6.4/backward\" -DLOCAL_INCLUDE_DIR=\"/usr/local/include\" -DCROSS_INCLUDE_DIR=\"/home/lucio/midipix/x86_64-nt64-midipix${sysroot_headers_suffix}/usr/include\" -DTOOL_INCLUDE_DIR=\"/home/lucio/midipix/lib/gcc/x86_64-nt64-midipix/4.6.4/../../../../x86_64-nt64-midipix/include\" -DPREFIX=\"/home/lucio/midipix/\" -DSTANDARD_EXEC_PREFIX=\"/home/lucio/midipix/lib/gcc/\" -DTARGET_SYSTEM_ROOT=\"/home/lucio/midipix/x86_64-nt64-midipix\" -DTARGET_SYSTEM_ROOT_RELOCATABLE -DBASEVER="\"4.6.4\"" \
+ -c ../../cbb-gcc-4.6.4/gcc/cppbuiltin.c -o cppbuiltin.o
+In file included from ../../cbb-gcc-4.6.4/gcc/cgraphbuild.c:26:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/cgraphunit.c:113:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/cppbuiltin.c:25:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber \
+ -DGCC_INCLUDE_DIR=\"/home/lucio/midipix/lib/gcc/x86_64-nt64-midipix/4.6.4/include\" -DFIXED_INCLUDE_DIR=\"/home/lucio/midipix/lib/gcc/x86_64-nt64-midipix/4.6.4/include-fixed\" -DGPLUSPLUS_INCLUDE_DIR=\"/home/lucio/midipix/lib/gcc/x86_64-nt64-midipix/4.6.4/../../../../x86_64-nt64-midipix/include/c++/4.6.4\" -DGPLUSPLUS_TOOL_INCLUDE_DIR=\"/home/lucio/midipix/lib/gcc/x86_64-nt64-midipix/4.6.4/../../../../x86_64-nt64-midipix/include/c++/4.6.4/x86_64-nt64-midipix\" -DGPLUSPLUS_BACKWARD_INCLUDE_DIR=\"/home/lucio/midipix/lib/gcc/x86_64-nt64-midipix/4.6.4/../../../../x86_64-nt64-midipix/include/c++/4.6.4/backward\" -DLOCAL_INCLUDE_DIR=\"/usr/local/include\" -DCROSS_INCLUDE_DIR=\"/home/lucio/midipix/x86_64-nt64-midipix${sysroot_headers_suffix}/usr/include\" -DTOOL_INCLUDE_DIR=\"/home/lucio/midipix/lib/gcc/x86_64-nt64-midipix/4.6.4/../../../../x86_64-nt64-midipix/include\" -DPREFIX=\"/home/lucio/midipix/\" -DSTANDARD_EXEC_PREFIX=\"/home/lucio/midipix/lib/gcc/\" -DTARGET_SYSTEM_ROOT=\"/home/lucio/midipix/x86_64-nt64-midipix\" -DTARGET_SYSTEM_ROOT_RELOCATABLE \
+ -c ../../cbb-gcc-4.6.4/gcc/cppdefault.c -o cppdefault.o
+gcc -c -DIN_GCC_FRONTEND --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/incpath.c -o incpath.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/ipa-cp.c -o ipa-cp.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/ipa-split.c -o ipa-split.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/ipa-inline.c -o ipa-inline.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/ipa-prop.c -o ipa-prop.o
+In file included from ../../cbb-gcc-4.6.4/gcc/ipa-cp.c:136:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/ipa-split.c:81:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/ipa-pure-const.c -o ipa-pure-const.o
+In file included from ../../cbb-gcc-4.6.4/gcc/ipa-prop.c:24:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/ipa-inline.c:107:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/ipa-reference.c -o ipa-reference.o
+In file included from ../../cbb-gcc-4.6.4/gcc/ipa-pure-const.c:39:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/ipa-reference.c:44:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/ipa-ref.c -o ipa-ref.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/ipa-struct-reorg.c -o ipa-struct-reorg.o
+In file included from ../../cbb-gcc-4.6.4/gcc/ipa-ref.c:25:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/ipa-type-escape.c -o ipa-type-escape.o
+In file included from ../../cbb-gcc-4.6.4/gcc/ipa-struct-reorg.c:28:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/ipa-type-escape.c:40:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/ipa-utils.c -o ipa-utils.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/ipa.c -o ipa.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/matrix-reorg.c -o matrix-reorg.o
+gcc -DIN_GCC_FRONTEND --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber \
+-DPREFIX=\"/home/lucio/midipix\" -DBASEVER="\"4.6.4\"" \
+ -c ../../cbb-gcc-4.6.4/gcc/prefix.c -o prefix.o
+In file included from ../../cbb-gcc-4.6.4/gcc/ipa-utils.c:25:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-inline.c -o tree-inline.o
+In file included from ../../cbb-gcc-4.6.4/gcc/cgraph.h:27:0,
+ from ../../cbb-gcc-4.6.4/gcc/ipa.c:25:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/matrix-reorg.c:116:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-inline.c:27:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tree-nomudflap.c -o tree-nomudflap.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/varpool.c -o varpool.o
+In file included from ../../cbb-gcc-4.6.4/gcc/tree-nomudflap.c:27:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/varpool.c:26:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/gcov.c -o gcov.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/gcov-dump.c -o gcov-dump.o
+gcc -c -DIN_GCC_FRONTEND --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Icp -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/cp -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/cp/cp-lang.c -o cp/cp-lang.o
+gcc -c -DIN_GCC_FRONTEND --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Icp -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/cp -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/cp/call.c -o cp/call.o
+gcc -c -DIN_GCC_FRONTEND --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Icp -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/cp -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/cp/decl.c -o cp/decl.o
+gcc -c -DIN_GCC_FRONTEND --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Icp -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/cp -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/cp/expr.c -o cp/expr.o
+gcc -c -DIN_GCC_FRONTEND --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Icp -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/cp -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/cp/pt.c -o cp/pt.o
+In file included from ../../cbb-gcc-4.6.4/gcc/cp/cp-lang.c:26:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/cp/call.c:31:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/cp/decl.c:35:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/cp/expr.c:27:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/cp/pt.c:33:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c -DIN_GCC_FRONTEND --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Icp -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/cp -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/cp/typeck2.c -o cp/typeck2.o
+gcc -c -DIN_GCC_FRONTEND --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Icp -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/cp -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/cp/class.c -o cp/class.o
+In file included from ../../cbb-gcc-4.6.4/gcc/cp/typeck2.c:34:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/cp/class.c:30:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c -DIN_GCC_FRONTEND --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Icp -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/cp -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/cp/decl2.c -o cp/decl2.o
+In file included from ../../cbb-gcc-4.6.4/gcc/cp/decl2.c:35:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c -DIN_GCC_FRONTEND --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Icp -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/cp -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/cp/error.c -o cp/error.o
+In file included from ../../cbb-gcc-4.6.4/gcc/cp/error.c:25:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c -DIN_GCC_FRONTEND --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Icp -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/cp -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/cp/lex.c -o cp/lex.o
+gcc -c -DIN_GCC_FRONTEND --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Icp -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/cp -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/cp/parser.c -o cp/parser.o
+gcc -c -DIN_GCC_FRONTEND --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Icp -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/cp -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/cp/ptree.c -o cp/ptree.o
+In file included from ../../cbb-gcc-4.6.4/gcc/cp/lex.c:31:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/cp/parser.c:27:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c -DIN_GCC_FRONTEND --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Icp -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/cp -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/cp/rtti.c -o cp/rtti.o
+In file included from ../../cbb-gcc-4.6.4/gcc/cp/ptree.c:28:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c -DIN_GCC_FRONTEND --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Icp -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/cp -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/cp/typeck.c -o cp/typeck.o
+In file included from ../../cbb-gcc-4.6.4/gcc/cp/rtti.c:28:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c -DIN_GCC_FRONTEND --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Icp -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/cp -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/cp/cvt.c -o cp/cvt.o
+gcc -c -DIN_GCC_FRONTEND --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Icp -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/cp -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/cp/except.c -o cp/except.o
+In file included from ../../cbb-gcc-4.6.4/gcc/cp/typeck.c:33:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/cp/cvt.c:33:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c -DIN_GCC_FRONTEND --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Icp -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/cp -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/cp/friend.c -o cp/friend.o
+In file included from ../../cbb-gcc-4.6.4/gcc/cp/except.c:30:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/cp/friend.c:25:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c -DIN_GCC_FRONTEND --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Icp -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/cp -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/cp/init.c -o cp/init.o
+gcc -c -DIN_GCC_FRONTEND --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Icp -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/cp -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/cp/method.c -o cp/method.o
+gcc -c -DIN_GCC_FRONTEND --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Icp -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/cp -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/cp/search.c -o cp/search.o
+gcc -c -DIN_GCC_FRONTEND --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Icp -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/cp -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/cp/semantics.c -o cp/semantics.o
+In file included from ../../cbb-gcc-4.6.4/gcc/cp/init.c:29:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/cp/method.c:30:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/cp/search.c:30:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/cp/semantics.c:31:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c -DIN_GCC_FRONTEND --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Icp -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/cp -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/cp/tree.c -o cp/tree.o
+In file included from ../../cbb-gcc-4.6.4/gcc/cp/tree.c:27:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+../../cbb-gcc-4.6.4/gcc/cp/semantics.c: In function ‘cxx_eval_indirect_ref’:
+../../cbb-gcc-4.6.4/gcc/cp/semantics.c:6752:19: warning: variable ‘subtype’ set but not used [-Wunused-but-set-variable]
+ tree type, sub, subtype, r;
+ ^
+gcc -c -DIN_GCC_FRONTEND --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Icp -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/cp -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/cp/repo.c -o cp/repo.o
+gcc -c -DIN_GCC_FRONTEND --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Icp -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/cp -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/cp/dump.c -o cp/dump.o
+gcc -c -DIN_GCC_FRONTEND --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Icp -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/cp -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/cp/optimize.c -o cp/optimize.o
+gcc -c -DIN_GCC_FRONTEND --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Icp -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/cp -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/cp/mangle.c -o cp/mangle.o
+In file included from ../../cbb-gcc-4.6.4/gcc/cp/repo.c:32:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/cp/dump.c:26:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/cp/mangle.c:52:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/cp/optimize.c:26:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c -DIN_GCC_FRONTEND --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Icp -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/cp -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/cp/cp-objcp-common.c -o cp/cp-objcp-common.o
+gcc -c -DIN_GCC_FRONTEND --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Icp -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/cp -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/cp/name-lookup.c -o cp/name-lookup.o
+gcc -c -DIN_GCC_FRONTEND --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Icp -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/cp -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/cp/cxx-pretty-print.c -o cp/cxx-pretty-print.o
+In file included from ../../cbb-gcc-4.6.4/gcc/cp/cp-objcp-common.c:25:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/cp/name-lookup.c:27:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c -DIN_GCC_FRONTEND --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Icp -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/cp -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/cp/cp-gimplify.c -o cp/cp-gimplify.o
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/cp/cp-tree.h:27,
+ from ../../cbb-gcc-4.6.4/gcc/cp/cxx-pretty-print.c:27:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c -DIN_GCC_FRONTEND --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber \
+--include=../../cbb-gcc-4.6.4/gcc/config/i386/midipix_winnt_common.h \
+../../cbb-gcc-4.6.4/gcc/config/i386/winnt-cxx.c -o midipix_winnt_cxx.o
+In file included from ../../cbb-gcc-4.6.4/gcc/cp/cp-gimplify.c:27:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c -DIN_GCC_FRONTEND --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Iobjc -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/objc -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/objc/objc-lang.c -o objc/objc-lang.o
+In file included from ../../cbb-gcc-4.6.4/gcc/config/i386/winnt-cxx.c:25:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c -DIN_GCC_FRONTEND --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Iobjc -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/objc -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/objc/objc-act.c -o objc/objc-act.o
+gcc -c -DIN_GCC_FRONTEND --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Iobjc -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/objc -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/objc/objc-runtime-shared-support.c -o objc/objc-runtime-shared-support.o
+gcc -c -DIN_GCC_FRONTEND --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Iobjc -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/objc -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/objc/objc-gnu-runtime-abi-01.c -o objc/objc-gnu-runtime-abi-01.o
+gcc -c -DIN_GCC_FRONTEND --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Iobjc -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/objc -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/objc/objc-next-runtime-abi-01.c -o objc/objc-next-runtime-abi-01.o
+In file included from ../../cbb-gcc-4.6.4/gcc/objc/objc-lang.c:27:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/objc/objc-act.c:27:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/objc/objc-runtime-shared-support.c:25:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c -DIN_GCC_FRONTEND --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Iobjc -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/objc -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/objc/objc-next-runtime-abi-02.c -o objc/objc-next-runtime-abi-02.o
+In file included from ../../cbb-gcc-4.6.4/gcc/objc/objc-gnu-runtime-abi-01.c:24:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber \
+-DTARGET_MACHINE=\"x86_64-nt64-midipix\" \
+-c ../../cbb-gcc-4.6.4/gcc/collect2.c -o collect2.o -DTARGET_SYSTEM_ROOT=\"/home/lucio/midipix/x86_64-nt64-midipix\" -DTARGET_SYSTEM_ROOT_RELOCATABLE
+In file included from ../../cbb-gcc-4.6.4/gcc/objc/objc-next-runtime-abi-01.c:30:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/collect2-aix.c -o collect2-aix.o
+In file included from ../../cbb-gcc-4.6.4/gcc/objc/objc-next-runtime-abi-02.c:32:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/tlink.c -o tlink.o
+gcc --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -o Tlto-wrapper lto-wrapper.o intl.o ../libcpp/libcpp.a ../libiberty/libiberty.a ../libdecnumber/libdecnumber.a
+(SHLIB_LINK='/home/lucio/midipix/tmp/cbb-gcc-4.6.4-build-x86_64-nt64-midipix/./gcc/xgcc -B/home/lucio/midipix/tmp/cbb-gcc-4.6.4-build-x86_64-nt64-midipix/./gcc/ -O2 -DIN_TARGET_LIBRARY_BUILD --sysroot=/home/lucio/midipix/x86_64-nt64-midipix -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -shared -mout-implib -nodefaultlibs -o @multilib_dir@/@shlib_base_name@.so @shlib_objs@ --sysroot=$(cbb_sysroot_for_libgcc)'; \
+gcc --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber \
+ -DSTANDARD_STARTFILE_PREFIX=\"../../../\" -DSTANDARD_EXEC_PREFIX=\"/home/lucio/midipix/lib/gcc/\" -DSTANDARD_LIBEXEC_PREFIX=\"/home/lucio/midipix/libexec/gcc/\" -DDEFAULT_TARGET_VERSION=\"4.6.4\" -DDEFAULT_TARGET_MACHINE=\"x86_64-nt64-midipix\" -DSTANDARD_BINDIR_PREFIX=\"/home/lucio/midipix/bin/\" -DTOOLDIR_BASE_PREFIX=\"../../../../\" -DTARGET_SYSTEM_ROOT=\"/home/lucio/midipix/x86_64-nt64-midipix\" -DTARGET_SYSTEM_ROOT_RELOCATABLE `test "X${SHLIB_LINK}" = "X" || test "yes" != "yes" || echo "-DENABLE_SHARED_LIBGCC"` -DCONFIGURE_SPECS="\"\"" \
+ -c ../../cbb-gcc-4.6.4/gcc/gcc.c -o gcc.o)
+mv -f Tlto-wrapper lto-wrapper
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber -o gcc-options.o \
+ -DGCC_DRIVER options.c
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/ggc-none.c -o ggc-none.o
+(SHLIB_LINK='/home/lucio/midipix/tmp/cbb-gcc-4.6.4-build-x86_64-nt64-midipix/./gcc/xgcc -B/home/lucio/midipix/tmp/cbb-gcc-4.6.4-build-x86_64-nt64-midipix/./gcc/ -O2 -DIN_TARGET_LIBRARY_BUILD --sysroot=/home/lucio/midipix/x86_64-nt64-midipix -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -shared -mout-implib -nodefaultlibs -o @multilib_dir@/@shlib_base_name@.so @shlib_objs@ --sysroot=$(cbb_sysroot_for_libgcc)'; \
+gcc --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber \
+ -DSTANDARD_STARTFILE_PREFIX=\"../../../\" -DSTANDARD_EXEC_PREFIX=\"/home/lucio/midipix/lib/gcc/\" -DSTANDARD_LIBEXEC_PREFIX=\"/home/lucio/midipix/libexec/gcc/\" -DDEFAULT_TARGET_VERSION=\"4.6.4\" -DDEFAULT_TARGET_MACHINE=\"x86_64-nt64-midipix\" -DSTANDARD_BINDIR_PREFIX=\"/home/lucio/midipix/bin/\" -DTOOLDIR_BASE_PREFIX=\"../../../../\" -DTARGET_SYSTEM_ROOT=\"/home/lucio/midipix/x86_64-nt64-midipix\" -DTARGET_SYSTEM_ROOT_RELOCATABLE `test "X${SHLIB_LINK}" = "X" || test "yes" != "yes" || echo "-DENABLE_SHARED_LIBGCC"` -DCONFIGURE_SPECS="\"\"" \
+ -c ../../cbb-gcc-4.6.4/gcc/gccspec.c -o gccspec.o)
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/config/i386/driver-i386.c
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/cppspec.c -o cppspec.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Ilto -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/lto -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/lto/lto-lang.c -o lto/lto-lang.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Ilto -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/lto -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/lto/lto.c -o lto/lto.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -Ilto -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/lto -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber ../../cbb-gcc-4.6.4/gcc/lto/lto-object.c -o lto/lto-object.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber insn-output.c -o insn-output.o
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber insn-recog.c -o insn-recog.o
+In file included from ../../cbb-gcc-4.6.4/gcc/lto/lto-lang.c:26:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/lto/lto.c:26:0:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/lto-streamer.h:27:0,
+ from ../../cbb-gcc-4.6.4/gcc/lto/lto-object.c:27:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from ../../cbb-gcc-4.6.4/gcc/expr.h:26,
+ from insn-output.c:11:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from insn-recog.c:10:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+gcc --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H gcov.o intl.o version.o errors.o ../libcpp/libcpp.a ../libiberty/libiberty.a ../libdecnumber/libdecnumber.a -o gcov
+gcc --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H gcov-dump.o version.o errors.o \
+ ../libcpp/libcpp.a ../libiberty/libiberty.a ../libdecnumber/libdecnumber.a -o gcov-dump
+gcc --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -o Tcollect2 \
+ collect2.o collect2-aix.o tlink.o intl.o version.o ../libcpp/libcpp.a ../libiberty/libiberty.a ../libdecnumber/libdecnumber.a
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber insn-attrtab.c -o insn-attrtab.o
+mv -f Tcollect2 collect2
+gcc -c --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber insn-automata.c -o insn-automata.o
+gcc --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -o xgcc gcc.o opts-common.o gcc-options.o diagnostic.o pretty-print.o input.o vec.o ggc-none.o \
+ gccspec.o intl.o prefix.o version.o driver-i386.o ../libcpp/libcpp.a ../libiberty/libiberty.a ../libdecnumber/libdecnumber.a
+gcc --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -o cpp gcc.o opts-common.o gcc-options.o diagnostic.o pretty-print.o input.o vec.o ggc-none.o \
+ cppspec.o intl.o prefix.o version.o driver-i386.o ../libcpp/libcpp.a ../libiberty/libiberty.a ../libdecnumber/libdecnumber.a
+/home/lucio/midipix/tmp/cbb-gcc-4.6.4-build-x86_64-nt64-midipix/gcc/xgcc -dumpspecs > tmp-specs
+mv tmp-specs specs
+gcc --include /home/lucio/midipix/tmp/cbb-gcc-4.6.4/libc/cbb-musl-pe.h -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -o g++ \
+ gcc.o opts-common.o gcc-options.o diagnostic.o pretty-print.o input.o vec.o ggc-none.o g++spec.o intl.o prefix.o version.o driver-i386.o ../libcpp/libcpp.a ../libiberty/libiberty.a ../libdecnumber/libdecnumber.a
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from insn-attrtab.c:17:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+In file included from ../../cbb-gcc-4.6.4/gcc/function.h:25:0,
+ from insn-automata.c:17:
+../../cbb-gcc-4.6.4/gcc/tree.h:3130:11: warning: identifier ‘thread_local’ conflicts with C++ keyword [-Wc++-compat]
+ unsigned thread_local : 1;
+ ^
+cp xgcc gcc-cross
+: > tmp-libgcc.mvars
+echo LIB1ASMFUNCS = '' >> tmp-libgcc.mvars
+echo LIB1ASMSRC = '' >> tmp-libgcc.mvars
+echo LIB2FUNCS_ST = '_eprintf __gcc_bcmp' >> tmp-libgcc.mvars
+echo LIB2FUNCS_EXCLUDE = ' _fixtfsi _fixunstfsi _floatsitf _floatunsitf _fixtfdi _fixunstfdi _floatditf _floatunditf' >> tmp-libgcc.mvars
+echo LIBGCOV = '_gcov _gcov_merge_add _gcov_merge_single _gcov_merge_delta _gcov_fork _gcov_execl _gcov_execlp _gcov_execle _gcov_execv _gcov_execvp _gcov_execve _gcov_interval_profiler _gcov_pow2_profiler _gcov_one_value_profiler _gcov_indirect_call_profiler _gcov_average_profiler _gcov_ior_profiler _gcov_merge_ior' >> tmp-libgcc.mvars
+echo LIB2ADD = '$(gcc_srcdir)/config/soft-fp/addtf3.c $(gcc_srcdir)/config/soft-fp/divtf3.c $(gcc_srcdir)/config/soft-fp/eqtf2.c $(gcc_srcdir)/config/soft-fp/getf2.c $(gcc_srcdir)/config/soft-fp/letf2.c $(gcc_srcdir)/config/soft-fp/multf3.c $(gcc_srcdir)/config/soft-fp/negtf2.c $(gcc_srcdir)/config/soft-fp/subtf3.c $(gcc_srcdir)/config/soft-fp/unordtf2.c $(gcc_srcdir)/config/soft-fp/fixtfsi.c $(gcc_srcdir)/config/soft-fp/fixunstfsi.c $(gcc_srcdir)/config/soft-fp/floatsitf.c $(gcc_srcdir)/config/soft-fp/floatunsitf.c $(gcc_srcdir)/config/soft-fp/fixtfdi.c $(gcc_srcdir)/config/soft-fp/fixunstfdi.c $(gcc_srcdir)/config/soft-fp/floatditf.c $(gcc_srcdir)/config/soft-fp/floatunditf.c $(gcc_srcdir)/config/soft-fp/fixtfti.c $(gcc_srcdir)/config/soft-fp/fixunstfti.c $(gcc_srcdir)/config/soft-fp/floattitf.c $(gcc_srcdir)/config/soft-fp/floatuntitf.c $(gcc_srcdir)/config/soft-fp/extendsftf2.c $(gcc_srcdir)/config/soft-fp/extenddftf2.c $(gcc_srcdir)/config/soft-fp/extendxftf2.c $(gcc_srcdir)/config/soft-fp/trunctfsf2.c $(gcc_srcdir)/config/soft-fp/trunctfdf2.c $(gcc_srcdir)/config/soft-fp/trunctfxf2.c ' >> tmp-libgcc.mvars
+echo LIB2ADD_ST = ' ' >> tmp-libgcc.mvars
+echo LIB2ADDEH = '$(gcc_srcdir)/unwind-dw2.c $(gcc_srcdir)/unwind-dw2-fde.c $(gcc_srcdir)/unwind-sjlj.c $(gcc_srcdir)/gthr-gnat.c $(gcc_srcdir)/unwind-c.c $(gcc_srcdir)/emutls.c ' >> tmp-libgcc.mvars
+echo LIB2ADDEHSTATIC = '$(gcc_srcdir)/unwind-dw2.c $(gcc_srcdir)/unwind-dw2-fde.c $(gcc_srcdir)/unwind-sjlj.c $(gcc_srcdir)/gthr-gnat.c $(gcc_srcdir)/unwind-c.c $(gcc_srcdir)/emutls.c ' >> tmp-libgcc.mvars
+echo LIB2ADDEHSHARED = '$(gcc_srcdir)/unwind-dw2.c $(gcc_srcdir)/unwind-dw2-fde.c $(gcc_srcdir)/unwind-sjlj.c $(gcc_srcdir)/gthr-gnat.c $(gcc_srcdir)/unwind-c.c $(gcc_srcdir)/emutls.c ' >> tmp-libgcc.mvars
+echo LIB2_SIDITI_CONV_FUNCS = '' >> tmp-libgcc.mvars
+rm -f g++-cross
+cp g++ g++-cross
+echo LIBUNWIND = ' ' >> tmp-libgcc.mvars
+echo SHLIBUNWIND_LINK = '' >> tmp-libgcc.mvars
+echo SHLIBUNWIND_INSTALL = '' >> tmp-libgcc.mvars
+echo FPBIT = '' >> tmp-libgcc.mvars
+echo FPBIT_FUNCS = '_pack_sf _unpack_sf _addsub_sf _mul_sf _div_sf _fpcmp_parts_sf _compare_sf _eq_sf _ne_sf _gt_sf _ge_sf _lt_sf _le_sf _unord_sf _si_to_sf _sf_to_si _negate_sf _make_sf _sf_to_df _sf_to_tf _thenan_sf _sf_to_usi _usi_to_sf' >> tmp-libgcc.mvars
+echo LIB2_DIVMOD_FUNCS = '_divdi3 _moddi3 _udivdi3 _umoddi3 _udiv_w_sdiv _udivmoddi4' >> tmp-libgcc.mvars
+echo DPBIT = '' >> tmp-libgcc.mvars
+echo DPBIT_FUNCS = '_pack_df _unpack_df _addsub_df _mul_df _div_df _fpcmp_parts_df _compare_df _eq_df _ne_df _gt_df _ge_df _lt_df _le_df _unord_df _si_to_df _df_to_si _negate_df _make_df _df_to_sf _df_to_tf _thenan_df _df_to_usi _usi_to_df' >> tmp-libgcc.mvars
+echo TPBIT = '' >> tmp-libgcc.mvars
+echo TPBIT_FUNCS = '_pack_tf _unpack_tf _addsub_tf _mul_tf _div_tf _fpcmp_parts_tf _compare_tf _eq_tf _ne_tf _gt_tf _ge_tf _lt_tf _le_tf _unord_tf _si_to_tf _tf_to_si _negate_tf _make_tf _tf_to_df _tf_to_sf _thenan_tf _tf_to_usi _usi_to_tf' >> tmp-libgcc.mvars
+echo DFP_ENABLE = '' >> tmp-libgcc.mvars
+echo DFP_CFLAGS='' >> tmp-libgcc.mvars
+echo D32PBIT='' >> tmp-libgcc.mvars
+echo D32PBIT_FUNCS='_addsub_sd _div_sd _mul_sd _plus_sd _minus_sd _eq_sd _ne_sd _lt_sd _gt_sd _le_sd _ge_sd _sd_to_si _sd_to_di _sd_to_usi _sd_to_udi _si_to_sd _di_to_sd _usi_to_sd _udi_to_sd _sd_to_sf _sd_to_df _sd_to_xf _sd_to_tf _sf_to_sd _df_to_sd _xf_to_sd _tf_to_sd _sd_to_dd _sd_to_td _unord_sd _conv_sd' >> tmp-libgcc.mvars
+echo D64PBIT='' >> tmp-libgcc.mvars
+echo D64PBIT_FUNCS='_addsub_dd _div_dd _mul_dd _plus_dd _minus_dd _eq_dd _ne_dd _lt_dd _gt_dd _le_dd _ge_dd _dd_to_si _dd_to_di _dd_to_usi _dd_to_udi _si_to_dd _di_to_dd _usi_to_dd _udi_to_dd _dd_to_sf _dd_to_df _dd_to_xf _dd_to_tf _sf_to_dd _df_to_dd _xf_to_dd _tf_to_dd _dd_to_sd _dd_to_td _unord_dd _conv_dd' >> tmp-libgcc.mvars
+echo D128PBIT='' >> tmp-libgcc.mvars
+echo D128PBIT_FUNCS='_addsub_td _div_td _mul_td _plus_td _minus_td _eq_td _ne_td _lt_td _gt_td _le_td _ge_td _td_to_si _td_to_di _td_to_usi _td_to_udi _si_to_td _di_to_td _usi_to_td _udi_to_td _td_to_sf _td_to_df _td_to_xf _td_to_tf _sf_to_td _df_to_td _xf_to_td _tf_to_td _td_to_sd _td_to_dd _unord_td _conv_td' >> tmp-libgcc.mvars
+echo GCC_EXTRA_PARTS = '' >> tmp-libgcc.mvars
+echo SHLIB_LINK = '$(GCC_FOR_TARGET) -O2 -DIN_TARGET_LIBRARY_BUILD --sysroot=/home/lucio/midipix/x86_64-nt64-midipix -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector -shared -mout-implib -nodefaultlibs -o @multilib_dir@/@shlib_base_name@.so @shlib_objs@ --sysroot=$(cbb_sysroot_for_libgcc)' >> tmp-libgcc.mvars
+echo SHLIB_INSTALL = '$(mkinstalldirs) $(DESTDIR)$(SHLIB_DLLDIR) $(DESTDIR)$(slibdir)@shlib_slibdir_qual@; /usr/bin/install -c @multilib_dir@/@shlib_base_name@.so $(DESTDIR)$(slibdir)@shlib_slibdir_qual@/@shlib_base_name@.so; /usr/bin/install -c -m 644 @multilib_dir@/@shlib_base_name@.lib.a $(DESTDIR)$(slibdir)@shlib_slibdir_qual@/@shlib_base_name@.lib.a; /usr/bin/install -c -m 644 @multilib_dir@/crtbegin.o $(DESTDIR)$(slibdir)@shlib_slibdir_qual@/crtbegin.o; /usr/bin/install -c -m 644 @multilib_dir@/crtbeginS.o $(DESTDIR)$(slibdir)@shlib_slibdir_qual@/crtbeginS.o; /usr/bin/install -c -m 644 @multilib_dir@/crtbeginT.o $(DESTDIR)$(slibdir)@shlib_slibdir_qual@/crtbeginT.o; /usr/bin/install -c -m 644 @multilib_dir@/crtend.o $(DESTDIR)$(slibdir)@shlib_slibdir_qual@/crtend.o; /usr/bin/install -c -m 644 @multilib_dir@/crtendS.o $(DESTDIR)$(slibdir)@shlib_slibdir_qual@/crtendS.o;' >> tmp-libgcc.mvars
+echo SHLIB_DLLDIR = '' >> tmp-libgcc.mvars
+echo SHLIB_EXT = '.so' >> tmp-libgcc.mvars
+echo SHLIB_MKMAP = '$(gcc_srcdir)/mkmap-flat.awk ' >> tmp-libgcc.mvars
+echo SHLIB_MKMAP_OPTS = '-v pe_dll=libgcc_s.so' >> tmp-libgcc.mvars
+echo SHLIB_MAPFILES = '$(gcc_srcdir)/libgcc-std.ver ' >> tmp-libgcc.mvars
+echo SHLIB_NM_FLAGS = '-pg' >> tmp-libgcc.mvars
+echo LIBGCC2_CFLAGS = '-O2 -DIN_TARGET_LIBRARY_BUILD --sysroot=/home/lucio/midipix/x86_64-nt64-midipix -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fno-stack-protector ' >> tmp-libgcc.mvars
+echo TARGET_LIBGCC2_CFLAGS = '' >> tmp-libgcc.mvars
+echo LIBGCC_SYNC = '' >> tmp-libgcc.mvars
+echo LIBGCC_SYNC_CFLAGS = '' >> tmp-libgcc.mvars
+echo CRTSTUFF_CFLAGS = '-O2 -DIN_TARGET_LIBRARY_BUILD --sysroot=/home/lucio/midipix/x86_64-nt64-midipix -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -I. -I. -I../../cbb-gcc-4.6.4/gcc -I../../cbb-gcc-4.6.4/gcc/. -I../../cbb-gcc-4.6.4/gcc/../include -I../../cbb-gcc-4.6.4/gcc/../libcpp/include -I../../cbb-gcc-4.6.4/gcc/../libdecnumber -I../../cbb-gcc-4.6.4/gcc/../libdecnumber/bid -I../libdecnumber -g0 -finhibit-size-directive -fno-inline -fno-exceptions -fno-zero-initialized-in-bss -fno-toplevel-reorder -fno-tree-vectorize -fno-stack-protector ' >> tmp-libgcc.mvars
+echo CRTSTUFF_T_CFLAGS = '' >> tmp-libgcc.mvars
+echo CRTSTUFF_T_CFLAGS_S = '' >> tmp-libgcc.mvars
+echo TARGET_SYSTEM_ROOT = '/home/lucio/midipix/x86_64-nt64-midipix' >> tmp-libgcc.mvars
+mv tmp-libgcc.mvars libgcc.mvars
diff --git a/build.sh b/build.sh
new file mode 100755
index 00000000..e4931044
--- /dev/null
+++ b/build.sh
@@ -0,0 +1,43 @@
+#!/bin/sh
+
+{
+unset AR ARFLAGS CC CFLAGS CXX CXXFLAGS LD LDFLAGS;
+. ./build.vars; . ./build.subr;
+check_prereqs git make sed tar wget;
+log_msg info "Build started by ${USER}@$(hostname).";
+#trap
+(set -o errexit; mkdir -p "${PREFIX}" "${WORKDIR}");
+BUILD_NFINI=${BUILD_NSKIP:=${BUILD_NFAIL:=${_nbuild:=0}}};
+for BUILD_LVL in 0 1 2; do
+ for BUILD_SCRIPT_FNAME in ${BUILD_LVL}[0-9][0-9].*.build; do
+ if [ -n "${DEBUG_SCRIPT}" ]\
+ && [ "x${DEBUG_SCRIPT}" != "x${BUILD_SCRIPT_FNAME}" ]; then
+ continue;
+ elif [ ! -f "${BUILD_SCRIPT_FNAME}" ]; then
+ continue;
+ else
+ unset BUILD_SCRIPT_RC; : $((_nbuild+=1));
+ log_msg info "Invoking build script \`${BUILD_SCRIPT_FNAME}'";
+ (set -o errexit -- $(split "." "${BUILD_SCRIPT_FNAME%.build}"); \
+ SCRIPT_FNAME="${BUILD_SCRIPT_FNAME}"; _pwd="$(pwd)"; \
+ cd "${WORKDIR}"; . "${_pwd}/build.subr"; \
+ . "${_pwd}/${BUILD_SCRIPT_FNAME}");
+ case ${BUILD_SCRIPT_RC:=${?}} in
+ 0) log_msg succ "Finished build script \`${BUILD_SCRIPT_FNAME}'.";
+ : $((BUILD_NFINI+=1)); continue; ;;
+ 212) log_msg info "Skipped build script \`${BUILD_SCRIPT_FNAME}' (already built.)";
+ : $((BUILD_NSKIP+=1)); BUILD_SCRIPT_RC=0; continue; ;;
+ *) log_msg fail "Build failed in build script \`${BUILD_SCRIPT_FNAME}' (last return code ${BUILD_SCRIPT_RC}.).";
+ : $((BUILD_NFAIL+=1)); break; ;;
+ esac;
+ fi;
+ done;
+ if [ ${BUILD_SCRIPT_RC:-0} != 0 ]; then
+ break;
+ fi;
+done;
+log_msg info "${BUILD_NFINI} finished, ${BUILD_NSKIP} skipped, and ${BUILD_NFAIL} failed builds in ${_nbuild} build script(s).";
+exit ${BUILD_SCRIPT_RC};
+} 2>&1 | tee build.log;
+
+# vim:filetype=sh
diff --git a/build.subr b/build.subr
new file mode 100644
index 00000000..e8a9fca1
--- /dev/null
+++ b/build.subr
@@ -0,0 +1,101 @@
+TIMESTAMP_FMT="${TIMESTAMP_FMT:-"%Y/%m/%d %H:%M:%S"}";
+
+date() {
+ command date +"${TIMESTAMP_FMT}";
+};
+
+fetch() {
+ wget --no-check-certificate -N "${@}";
+};
+
+fetch_git() {
+ local _subdir="${1}" _repo="${2}";
+ if [ -d "${_subdir}" ]; then
+ (cd "${_subdir}" && git pull origin main);
+ else
+ git clone "${_repo}" "${_subdir}";
+ fi;
+};
+
+is_build_script_done() {
+ local _op="${1}" _script_fname="${SCRIPT_FNAME##*/}";
+ [ -f "${WORKDIR}/.${_script_fname%.build}.${_op}" ];
+};
+set_build_script_done() {
+ local _script_fname="${SCRIPT_FNAME##*/}" _done_fname;
+ _done_fname="${WORKDIR}/.${_script_fname%.build}";
+ while [ $# -ge 1 ]; do
+ if [ "x${1#-}" != "x${1}" ]; then
+ rm -f "${_done_fname}.${1#-}";
+ else
+ printf "" >| "${_done_fname}.${1}";
+ log_msg info "Finished build step ${1} of build script \`${_script_fname}'.";
+ fi; shift;
+ done;
+};
+
+log_msg() {
+ local _lvl="${1}"; shift;
+ case "${_lvl}" in
+ fail) printf "\033[91m"; ;;
+ info) printf "\033[97m"; ;;
+ succ) printf "\033[92m"; ;;
+ esac;
+ if [ $# -gt 1 ]; then
+ printf "==> %s %s %s\033[0m\n" "$(date +"${TIMESTAMP_FMT}")" "${1}" "$*";
+ else
+ printf "==> %s %s\033[0m\n" "$(date +"${TIMESTAMP_FMT}")" "${1}";
+ fi;
+};
+
+parse_with_pkg_name() {
+ _pkg_name="${1}"; local _envvs _envv; shift;
+ while [ $# -ge 0 ]; do
+ _pkg_url="${1}"; _envvs="${2}"; _pkg_fname="${_pkg_url##*/}";
+ if [ "x${_pkg_fname%%-*}" = "x${_pkg_name}" ]; then
+ IFS=:; for _envv in ${_envvs}; do
+ export ${_envv};
+ done;
+ _pkg_subdir="${_pkg_fname%%.tar*}";
+ return;
+ fi; shift 2;
+ done; exit 1;
+};
+
+rm_if_exists() {
+ while [ $# -gt 1 ]; do [ "x${1%[a-z]}" = "x-" ] &&\
+ eval local _${1#-}flag=1; shift; done;
+ local _dir="${1}";
+ if [ -d "${_dir}" ]; then
+ rm -rf "${_dir}" || return 1;
+ fi;
+ if [ ${_mflag:-0} -eq 1 ]; then
+ mkdir "${_dir}" || return 2;
+ fi;
+ if [ ${_cflag:-0} -eq 1 ]; then
+ cd "${_dir}" || return 3;
+ fi;
+};
+
+run_configure_with_extra_args() {
+ local IFS="," _script="${1}" _extra_args="${2}";
+ shift 2; "${_script}" "${@}" ${_extra_args};
+};
+
+set_build_dir() {
+ export _build_dir="${1}-build-${2}";
+};
+
+set_env_vars() {
+ local _val="${1}"; shift;
+ while [ $# -ge 1 ]; do
+ export "${1}=${_val}"; shift;
+ done;
+};
+
+split() {
+ local _IFS="${IFS}" IFS="${1}" _txt="${2}";
+ set -- ${_txt}; IFS="${_IFS}"; echo "${*}";
+};
+
+# vim:filetype=sh
diff --git a/build.vars b/build.vars
new file mode 100644
index 00000000..a96e70e5
--- /dev/null
+++ b/build.vars
@@ -0,0 +1,36 @@
+: ${ARCH:=nt64};
+: ${CFLAGS_PACKAGES:=-g3 -O0};
+: ${GITROOT:=git://midipix.org};
+: ${HOST_NATIVE:=x86_64-nt64-midipix};
+: ${TARGET:=x86_64-nt64-midipix};
+
+: ${BASH_VERSION:=4.3};
+: ${BINUTILS_VERSION:=2.24.51};
+: ${CBB_VERSION:=cbb-gcc-4.6.4};
+: ${COREUTILS_VERSION:=8.23};
+: ${DIFFUTILS_VERSION:=3.3};
+: ${FINDUTILS_VERSION:=4.5.14};
+: ${GAWK_VERSION:=4.1.3};
+: ${GCC_VERSION:=4.6.4};
+: ${GMP_VERSION:=5.1.3};
+: ${GREP_VERSION:=2.22};
+: ${GZIP_VERSION:=1.2.4};
+: ${LIBELF_VERSION:=0.8.13};
+: ${LIBZ_VERSION:=1.2.8.2015.05.20};
+: ${MAKE_VERSION:=3.81};
+: ${MPC_VERSION:=1.0.1};
+: ${MPFR_VERSION:=3.1.2};
+: ${MUSL_VERSION:=1.1.12};
+: ${PATCH_VERSION:=2.7};
+: ${SED_VERSION:=4.2.2};
+
+: ${PREFIX:=${HOME}/midipix};
+: ${PREFIX_NATIVE:=${PREFIX}/native};
+: ${PREFIX_TARGET:=${PREFIX}/${TARGET}};
+: ${WORKDIR:=${PREFIX}/tmp};
+
+MAKEFLAGS="-j8${MAKEFLAGS:+ ${MAKEFLAGS}}";
+export PATH="${PREFIX}/bin${PATH:+:${PATH}}";
+TIMESTAMP_FMT="%Y/%m/%d %H:%M:%S";
+
+# vim:filetype=sh