Hello. I just starting their adventure with the GNU GCC. Successfully compiled binutils and gcc 6.2.0 for FR30-elf target. In an environment Msys2 under Windows 10. Configuration binutils:
../../src/binutils-2.27/configure --target=FR30-elf prefix=/c/mingw/FR30-elf --disable-nls Configuring gcc 6.2.0: ../../src/gcc-6.2.0/configure --target=FR30-elf prefix=/c/mingw/FR30-elf --enable-languages​=c,c++ --disable-nls -disable-shared --with-newlib --with-headers=../../src/newlib-2.4.0.20160923/newlib/libc/include I have a problem with installing gcc. Make install or make install-gcc returns an error: ... /d/Devel/Fujitsu_FR30.80/gcc_6.2/src/gcc-6.2.0/install-sh: line 437: exec: cp: can not execute: Is a directory make [2]: *** [Makefile: 3617: install-mkheaders] Error 1 make [2]: Leaving directory '/d/Devel/Fujitsu_FR30.80/gcc_6.2/build/gcc-6.2.0/gcc' make [1]: *** [Makefile: 4206: gcc-install] Error 2 make [1]: Leaving directory '/d/Devel/Fujitsu_FR30.80/gcc_6.2/build/gcc-6.2.0' make: *** [Makefile: 2294: install] Error 2 What am I doing wrong? Can anyone help? In Annex I posted the files config.log, make_install-gcc.log.txt, install-sh. Regards, Marcin.
#!/bin/sh # install - install a program, script, or datafile scriptversion=2013-12-25.23; # UTC # This originates from X11R5 (mit/util/scripts/install.sh), which was # later released in X11R6 (xc/config/util/install.sh) with the # following copyright and license. # # Copyright (C) 1994 X Consortium # # 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 # X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN # AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC- # TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. # # Except as contained in this notice, the name of the X Consortium shall not # be used in advertising or otherwise to promote the sale, use or other deal- # ings in this Software without prior written authorization from the X Consor- # tium. # # # FSF changes to this file are in the public domain. # # Calling this script install-sh is preferred over install.sh, to prevent # 'make' implicit rules from creating a file called install from it # when there is no Makefile. # # This script is compatible with the BSD install script, but was written # from scratch. tab=' ' nl=' ' IFS=" $tab$nl" # Set DOITPROG to "echo" to test this script. doit=${DOITPROG-} doit_exec=${doit:-exec} # Put in absolute file names if you don't have them in your path; # or use environment vars. chgrpprog=${CHGRPPROG-chgrp} chmodprog=${CHMODPROG-chmod} chownprog=${CHOWNPROG-chown} cmpprog=${CMPPROG-cmp} cpprog=${CPPROG-cp} mkdirprog=${MKDIRPROG-mkdir} mvprog=${MVPROG-mv} rmprog=${RMPROG-rm} stripprog=${STRIPPROG-strip} posix_mkdir= # Desired mode of installed file. mode=0755 chgrpcmd= chmodcmd=$chmodprog chowncmd= mvcmd=$mvprog rmcmd="$rmprog -f" stripcmd= src= dst= dir_arg= dst_arg= copy_on_change=false is_target_a_directory=possibly usage="\ Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE or: $0 [OPTION]... SRCFILES... DIRECTORY or: $0 [OPTION]... -t DIRECTORY SRCFILES... or: $0 [OPTION]... -d DIRECTORIES... In the 1st form, copy SRCFILE to DSTFILE. In the 2nd and 3rd, copy all SRCFILES to DIRECTORY. In the 4th, create DIRECTORIES. Options: --help display this help and exit. --version display version info and exit. -c (ignored) -C install only if different (preserve the last data modification time) -d create directories instead of installing files. -g GROUP $chgrpprog installed files to GROUP. -m MODE $chmodprog installed files to MODE. -o USER $chownprog installed files to USER. -s $stripprog installed files. -t DIRECTORY install into DIRECTORY. -T report an error if DSTFILE is a directory. Environment variables override the default commands: CHGRPPROG CHMODPROG CHOWNPROG CMPPROG CPPROG MKDIRPROG MVPROG RMPROG STRIPPROG " while test $# -ne 0; do case $1 in -c) ;; -C) copy_on_change=true;; -d) dir_arg=true;; -g) chgrpcmd="$chgrpprog $2" shift;; --help) echo "$usage"; exit $?;; -m) mode=$2 case $mode in *' '* | *"$tab"* | *"$nl"* | *'*'* | *'?'* | *'['*) echo "$0: invalid mode: $mode" >&2 exit 1;; esac shift;; -o) chowncmd="$chownprog $2" shift;; -s) stripcmd=$stripprog;; -t) is_target_a_directory=always dst_arg=$2 # Protect names problematic for 'test' and other utilities. case $dst_arg in -* | [=\(\)!]) dst_arg=./$dst_arg;; esac shift;; -T) is_target_a_directory=never;; --version) echo "$0 $scriptversion"; exit $?;; --) shift break;; -*) echo "$0: invalid option: $1" >&2 exit 1;; *) break;; esac shift done # We allow the use of options -d and -T together, by making -d # take the precedence; this is for compatibility with GNU install. if test -n "$dir_arg"; then if test -n "$dst_arg"; then echo "$0: target directory not allowed when installing a directory." >&2 exit 1 fi fi if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then # When -d is used, all remaining arguments are directories to create. # When -t is used, the destination is already specified. # Otherwise, the last argument is the destination. Remove it from $@. for arg do if test -n "$dst_arg"; then # $@ is not empty: it contains at least $arg. set fnord "$@" "$dst_arg" shift # fnord fi shift # arg dst_arg=$arg # Protect names problematic for 'test' and other utilities. case $dst_arg in -* | [=\(\)!]) dst_arg=./$dst_arg;; esac done fi if test $# -eq 0; then if test -z "$dir_arg"; then echo "$0: no input file specified." >&2 exit 1 fi # It's OK to call 'install-sh -d' without argument. # This can happen when creating conditional directories. exit 0 fi if test -z "$dir_arg"; then if test $# -gt 1 || test "$is_target_a_directory" = always; then if test ! -d "$dst_arg"; then echo "$0: $dst_arg: Is not a directory." >&2 exit 1 fi fi fi if test -z "$dir_arg"; then do_exit='(exit $ret); exit $ret' trap "ret=129; $do_exit" 1 trap "ret=130; $do_exit" 2 trap "ret=141; $do_exit" 13 trap "ret=143; $do_exit" 15 # Set umask so as not to create temps with too-generous modes. # However, 'strip' requires both read and write access to temps. case $mode in # Optimize common cases. *644) cp_umask=133;; *755) cp_umask=22;; *[0-7]) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw='% 200' fi cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;; *) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw=,u+rw fi cp_umask=$mode$u_plus_rw;; esac fi for src do # Protect names problematic for 'test' and other utilities. case $src in -* | [=\(\)!]) src=./$src;; esac if test -n "$dir_arg"; then dst=$src dstdir=$dst test -d "$dstdir" dstdir_status=$? else # Waiting for this to be detected by the "$cpprog $src $dsttmp" command # might cause directories to be created, which would be especially bad # if $src (and thus $dsttmp) contains '*'. if test ! -f "$src" && test ! -d "$src"; then echo "$0: $src does not exist." >&2 exit 1 fi if test -z "$dst_arg"; then echo "$0: no destination specified." >&2 exit 1 fi dst=$dst_arg # If destination is a directory, append the input filename; won't work # if double slashes aren't ignored. if test -d "$dst"; then if test "$is_target_a_directory" = never; then echo "$0: $dst_arg: Is a directory" >&2 exit 1 fi dstdir=$dst dst=$dstdir/`basename "$src"` dstdir_status=0 else dstdir=`dirname "$dst"` test -d "$dstdir" dstdir_status=$? fi fi obsolete_mkdir_used=false if test $dstdir_status != 0; then case $posix_mkdir in '') # Create intermediate dirs using mode 755 as modified by the umask. # This is like FreeBSD 'install' as of 1997-10-28. umask=`umask` case $stripcmd.$umask in # Optimize common cases. *[2367][2367]) mkdir_umask=$umask;; .*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;; *[0-7]) mkdir_umask=`expr $umask + 22 \ - $umask % 100 % 40 + $umask % 20 \ - $umask % 10 % 4 + $umask % 2 `;; *) mkdir_umask=$umask,go-w;; esac # With -d, create the new directory with the user-specified mode. # Otherwise, rely on $mkdir_umask. if test -n "$dir_arg"; then mkdir_mode=-m$mode else mkdir_mode= fi posix_mkdir=false case $umask in *[123567][0-7][0-7]) # POSIX mkdir -p sets u+wx bits regardless of umask, which # is incompatible with FreeBSD 'install' when (umask & 300) != 0. ;; *) tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$ trap 'ret=$?; rmdir "$tmpdir/d" "$tmpdir" 2>/dev/null; exit $ret' 0 if (umask $mkdir_umask && exec $mkdirprog $mkdir_mode -p -- "$tmpdir/d") >/dev/null 2>&1 then if test -z "$dir_arg" || { # Check for POSIX incompatibilities with -m. # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or # other-writable bit of parent directory when it shouldn't. # FreeBSD 6.1 mkdir -m -p sets mode of existing directory. ls_ld_tmpdir=`ls -ld "$tmpdir"` case $ls_ld_tmpdir in d????-?r-*) different_mode=700;; d????-?--*) different_mode=755;; *) false;; esac && $mkdirprog -m$different_mode -p -- "$tmpdir" && { ls_ld_tmpdir_1=`ls -ld "$tmpdir"` test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1" } } then posix_mkdir=: fi rmdir "$tmpdir/d" "$tmpdir" else # Remove any dirs left behind by ancient mkdir implementations. rmdir ./$mkdir_mode ./-p ./-- 2>/dev/null fi trap '' 0;; esac;; esac if $posix_mkdir && ( umask $mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir" ) then : else # The umask is ridiculous, or mkdir does not conform to POSIX, # or it failed possibly due to a race condition. Create the # directory the slow way, step by step, checking for races as we go. case $dstdir in /*) prefix='/';; [-=\(\)!]*) prefix='./';; *) prefix='';; esac oIFS=$IFS IFS=/ set -f set fnord $dstdir shift set +f IFS=$oIFS prefixes= for d do test X"$d" = X && continue prefix=$prefix$d if test -d "$prefix"; then prefixes= else if $posix_mkdir; then (umask=$mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break # Don't fail if two instances are running concurrently. test -d "$prefix" || exit 1 else case $prefix in *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;; *) qprefix=$prefix;; esac prefixes="$prefixes '$qprefix'" fi fi prefix=$prefix/ done if test -n "$prefixes"; then # Don't fail if two instances are running concurrently. (umask $mkdir_umask && eval "\$doit_exec \$mkdirprog $prefixes") || test -d "$dstdir" || exit 1 obsolete_mkdir_used=true fi fi fi if test -n "$dir_arg"; then { test -z "$chowncmd" || $doit $chowncmd "$dst"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } && { test "$obsolete_mkdir_used$chowncmd$chgrpcmd" = false || test -z "$chmodcmd" || $doit $chmodcmd $mode "$dst"; } || exit 1 else # Make a couple of temp file names in the proper directory. dsttmp=$dstdir/_inst.$$_ rmtmp=$dstdir/_rm.$$_ # Trap to clean up those temp files at exit. trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0 # Copy the file name to the temp name. (umask $cp_umask && $doit_exec $cpprog "$src" "$dsttmp") && # and set any options; do chmod last to preserve setuid bits. # # If any of these fail, we abort the whole thing. If we want to # ignore errors from any of these, just make sure not to ignore # errors from the above "$doit $cpprog $src $dsttmp" command. # { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } && { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } && { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } && # If -C, don't bother to copy if it wouldn't change the file. if $copy_on_change && old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` && new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` && set -f && set X $old && old=:$2:$4:$5:$6 && set X $new && new=:$2:$4:$5:$6 && set +f && test "$old" = "$new" && $cmpprog "$dst" "$dsttmp" >/dev/null 2>&1 then rm -f "$dsttmp" else # Rename the file to the real destination. $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null || # The rename failed, perhaps because mv can't rename something else # to itself, or perhaps because mv is so ancient that it does not # support -f. { # Now remove or move aside any old file at destination location. # We try this two ways since rm can't unlink itself on some # systems and the destination file might be busy for other # reasons. In this case, the final cleanup might fail but the new # file should still install successfully. { test ! -f "$dst" || $doit $rmcmd -f "$dst" 2>/dev/null || { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null && { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; } } || { echo "$0: cannot unlink or rename $dst" >&2 (exit 1); exit 1 } } && # Now rename the file to the real destination. $doit $mvcmd "$dsttmp" "$dst" } fi || exit 1 trap '' 0 fi done # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End:
This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by configure, which was generated by GNU Autoconf 2.64. Invocation command line was $ ../../src/gcc-6.2.0/configure --target=fr30-elf --prefix=/c/mingw/fr30-elf --enable-languages=c,c++ --disable-nls --disable-shared --with-newlib --with-headers=../../src/newlib-2.4.0.20160923/newlib/libc/include ## --------- ## ## Platform. ## ## --------- ## hostname = M4A77T-MN uname -m = x86_64 uname -r = 2.6.0(0.304/5/3) uname -s = MSYS_NT-10.0 uname -v = 2016-09-07 20:45 /usr/bin/uname -p = unknown /bin/uname -X = unknown /bin/arch = x86_64 /usr/bin/arch -k = unknown /usr/convex/getsysinfo = unknown /usr/bin/hostinfo = unknown /bin/machine = unknown /usr/bin/oslevel = unknown /bin/universe = unknown PATH: . PATH: /usr/local/bin PATH: /c/msys64/usr/bin PATH: /c/msys64/mingw32/bin PATH: /c/msys64/mingw64/bin PATH: /c/MinGW/fr30-elf/bin ## ----------- ## ## Core tests. ## ## ----------- ## configure:2142: loading site script /etc/config.site | # This file is in public domain. | # Original author: Karlson2k (Evgeny Grin) | # Written for MSys2 to help running 'configure' scripts | | # Use correct config.site even if CONFIG_SITE is not set | if test "x$MSYSTEM" = "xMINGW64"; then | if test -r "${MINGW_PREFIX-/mingw64}/etc/config.site"; then | . "${MINGW_PREFIX-/mingw64}/etc/config.site" | fi | elif test "x$MSYSTEM" = "xMINGW32"; then | if test -r "${MINGW_PREFIX-/mingw32}/etc/config.site"; then | . "${MINGW_PREFIX-/mingw32}/etc/config.site" | fi | else | # Defaults for MSys2-targeted programs | | # Set proper selfname on bash and fallback to default name on other shells | test -n "${BASH_SOURCE}" 2>/dev/null && config_site_me="${BASH_SOURCE[0]##*/}" || config_site_me=config.site | | # Set default 'host' to speedup configure | if test -z "$build_alias"; then | build_alias="${MSYSTEM_CARCH-x86_64}-pc-msys" && \ | $as_echo "$config_site_me:${as_lineno-$LINENO}: default build_alias set to $build_alias" >&5 | fi | | # Set default 'prefix' to "/usr" | if ( test -z "$prefix" || test "x$prefix" = "xNONE" ) && \ | ( test -z "$exec_prefix" || test "x$exec_prefix" = "xNONE" ); then | prefix="${MSYSTEM_PREFIX-/usr}" && \ | $as_echo "$config_site_me:${as_lineno-$LINENO}: default prefix set to $prefix" >&5 | fi | | fi config.site:23: default build_alias set to x86_64-pc-msys configure:2297: checking build system type configure:2311: result: x86_64-pc-msys configure:2358: checking host system type configure:2371: result: x86_64-pc-msys configure:2391: checking target system type configure:2404: result: fr30-unknown-elf configure:2458: checking for a BSD-compatible install configure:2526: result: ../../src/gcc-6.2.0/install-sh -c configure:2537: checking whether ln works configure:2559: result: yes configure:2563: checking whether ln -s works configure:2570: result: no, using cp -p configure:2574: checking for a sed that does not truncate output configure:2638: result: /c/msys64/usr/bin/sed configure:2647: checking for gawk configure:2663: found /c/msys64/usr/bin/gawk configure:2674: result: gawk configure:3210: checking for libatomic support configure:3216: result: no configure:3229: checking for libcilkrts support configure:3235: result: no configure:3267: checking for libitm support configure:3273: result: no configure:3286: checking for libsanitizer support configure:3292: result: no configure:3305: checking for libvtv support configure:3311: result: no configure:3325: checking for libmpx support configure:3331: result: no configure:4118: checking for gcc configure:4134: found /c/msys64/usr/bin/gcc configure:4145: result: gcc configure:4374: checking for C compiler version configure:4383: gcc --version >&5 gcc (GCC) 5.3.0 Copyright (C) 2015 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. configure:4394: $? = 0 configure:4383: gcc -v >&5 Using built-in specs. COLLECT_GCC=gcc COLLECT_LTO_WRAPPER=/c/msys64/usr/bin/../lib/gcc/x86_64-pc-msys/5.3.0/lto-wrapper.exe Target: x86_64-pc-msys Configured with: /msys_scripts/gcc/src/gcc-5.3.0/configure --build=x86_64-pc-msys --prefix=/usr --libexecdir=/usr/lib --enable-bootstrap --enable-shared --enable-shared-libgcc --enable-static --enable-version-specific-runtime-libs --with-arch=x86-64 --with-tune=generic --disable-multilib --enable-__cxa_atexit --with-dwarf2 --enable-languages=c,c++,fortran,lto --enable-graphite --enable-threads=posix --enable-libatomic --enable-libcilkrts --enable-libgomp --enable-libitm --enable-libquadmath --enable-libquadmath-support --enable-libssp --disable-win32-registry --disable-symvers --with-gnu-ld --with-gnu-as --disable-isl-version-check --enable-checking=release --without-libiconv-prefix --without-libintl-prefix --with-system-zlib --enable-linker-build-id --with-default-libstdcxx-abi=gcc4-compatible Thread model: posix gcc version 5.3.0 (GCC) configure:4394: $? = 0 configure:4383: gcc -V >&5 gcc: error: unrecognized command line option '-V' gcc: fatal error: no input files compilation terminated. configure:4394: $? = 1 configure:4383: gcc -qversion >&5 gcc: error: unrecognized command line option '-qversion' gcc: fatal error: no input files compilation terminated. configure:4394: $? = 1 configure:4414: checking for C compiler default output file name configure:4436: gcc conftest.c >&5 configure:4440: $? = 0 configure:4477: result: a.exe configure:4493: checking whether the C compiler works configure:4502: ./a.exe configure:4506: $? = 0 configure:4521: result: yes configure:4528: checking whether we are cross compiling configure:4530: result: no configure:4533: checking for suffix of executables configure:4540: gcc -o conftest.exe conftest.c >&5 configure:4544: $? = 0 configure:4566: result: .exe configure:4572: checking for suffix of object files configure:4594: gcc -c conftest.c >&5 configure:4598: $? = 0 configure:4619: result: o configure:4623: checking whether we are using the GNU C compiler configure:4642: gcc -c conftest.c >&5 configure:4642: $? = 0 configure:4651: result: yes configure:4660: checking whether gcc accepts -g configure:4680: gcc -c -g conftest.c >&5 configure:4680: $? = 0 configure:4721: result: yes configure:4738: checking for gcc option to accept ISO C89 configure:4802: gcc -c -g -O2 conftest.c >&5 configure:4802: $? = 0 configure:4815: result: none needed configure:4893: checking for g++ configure:4909: found /c/msys64/usr/bin/g++ configure:4920: result: g++ configure:4947: checking for C++ compiler version configure:4956: g++ --version >&5 g++ (GCC) 5.3.0 Copyright (C) 2015 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. configure:4967: $? = 0 configure:4956: g++ -v >&5 Using built-in specs. COLLECT_GCC=g++ COLLECT_LTO_WRAPPER=/c/msys64/usr/bin/../lib/gcc/x86_64-pc-msys/5.3.0/lto-wrapper.exe Target: x86_64-pc-msys Configured with: /msys_scripts/gcc/src/gcc-5.3.0/configure --build=x86_64-pc-msys --prefix=/usr --libexecdir=/usr/lib --enable-bootstrap --enable-shared --enable-shared-libgcc --enable-static --enable-version-specific-runtime-libs --with-arch=x86-64 --with-tune=generic --disable-multilib --enable-__cxa_atexit --with-dwarf2 --enable-languages=c,c++,fortran,lto --enable-graphite --enable-threads=posix --enable-libatomic --enable-libcilkrts --enable-libgomp --enable-libitm --enable-libquadmath --enable-libquadmath-support --enable-libssp --disable-win32-registry --disable-symvers --with-gnu-ld --with-gnu-as --disable-isl-version-check --enable-checking=release --without-libiconv-prefix --without-libintl-prefix --with-system-zlib --enable-linker-build-id --with-default-libstdcxx-abi=gcc4-compatible Thread model: posix gcc version 5.3.0 (GCC) configure:4967: $? = 0 configure:4956: g++ -V >&5 g++: error: unrecognized command line option '-V' g++: fatal error: no input files compilation terminated. configure:4967: $? = 1 configure:4956: g++ -qversion >&5 g++: error: unrecognized command line option '-qversion' g++: fatal error: no input files compilation terminated. configure:4967: $? = 1 configure:4971: checking whether we are using the GNU C++ compiler configure:4990: g++ -c conftest.cpp >&5 configure:4990: $? = 0 configure:4999: result: yes configure:5008: checking whether g++ accepts -g configure:5028: g++ -c -g conftest.cpp >&5 configure:5028: $? = 0 configure:5069: result: yes configure:5118: checking whether g++ accepts -static-libstdc++ -static-libgcc configure:5135: g++ -o conftest.exe -g -O2 -static-libstdc++ -static-libgcc conftest.cpp >&5 configure:5135: $? = 0 configure:5136: result: yes configure:5200: checking for gnatbind configure:5216: found /c/msys64/mingw64/bin/gnatbind configure:5227: result: gnatbind configure:5292: checking for gnatmake configure:5308: found /c/msys64/mingw64/bin/gnatmake configure:5319: result: gnatmake configure:5341: checking whether compiler driver understands Ada configure:5364: result: no configure:5373: checking how to compare bootstrapped objects configure:5398: result: cmp --ignore-initial=16 $$f1 $$f2 configure:5458: checking for objdir configure:5473: result: .libs configure:6024: checking for isl 0.16, 0.15, or deprecated 0.14 configure:6037: gcc -o conftest.exe -g -O2 -I$$r/$(HOST_SUBDIR)/gmp -I$$s/gmp -I$$r/$(HOST_SUBDIR)/mpfr/src -I$$s/mpfr/src -I$$s/mpc/src -lisl -L$$r/$(HOST_SUBDIR)/gmp/.libs -L$$r/$(HOST_SUBDIR)/mpfr/src/.libs -L$$r/$(HOST_SUBDIR)/mpc/src/.libs -lmpc -lmpfr -lgmp conftest.c -lisl -lgmp >&5 conftest.c:10:21: fatal error: isl/ctx.h: No such file or directory compilation terminated. configure:6037: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define LT_OBJDIR ".libs/" | /* end confdefs.h. */ | #include <isl/ctx.h> | int | main () | { | isl_ctx_get_max_operations (isl_ctx_alloc ()); | ; | return 0; | } configure:6044: result: no configure:6048: result: recommended isl version is 0.16 or 0.15, the minimum required isl version 0.14 is deprecated configure:6052: checking for isl 0.16 or 0.15 configure:6065: gcc -o conftest.exe -g -O2 -I$$r/$(HOST_SUBDIR)/gmp -I$$s/gmp -I$$r/$(HOST_SUBDIR)/mpfr/src -I$$s/mpfr/src -I$$s/mpc/src -lisl -L$$r/$(HOST_SUBDIR)/gmp/.libs -L$$r/$(HOST_SUBDIR)/mpfr/src/.libs -L$$r/$(HOST_SUBDIR)/mpc/src/.libs -lmpc -lmpfr -lgmp conftest.c -lisl -lgmp >&5 conftest.c:10:26: fatal error: isl/schedule.h: No such file or directory compilation terminated. configure:6065: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define LT_OBJDIR ".libs/" | /* end confdefs.h. */ | #include <isl/schedule.h> | int | main () | { | isl_options_set_schedule_serialize_sccs (NULL, 0); | ; | return 0; | } configure:6072: result: no configure:7076: checking for default BUILD_CONFIG configure:7108: result: configure:7113: checking for --enable-vtable-verify configure:7126: result: no configure:7722: checking for bison configure:7738: found /c/msys64/usr/bin/bison configure:7749: result: bison -y configure:7769: checking for bison configure:7785: found /c/msys64/usr/bin/bison configure:7796: result: bison configure:7816: checking for gm4 configure:7846: result: no configure:7816: checking for gnum4 configure:7846: result: no configure:7816: checking for m4 configure:7832: found /c/msys64/usr/bin/m4 configure:7843: result: m4 configure:7863: checking for flex configure:7879: found /c/msys64/usr/bin/flex configure:7890: result: flex configure:7911: checking for flex configure:7927: found /c/msys64/usr/bin/flex configure:7938: result: flex configure:7958: checking for makeinfo configure:7974: found /c/msys64/usr/bin/makeinfo configure:7985: result: makeinfo configure:8019: checking for expect configure:8035: found /c/msys64/usr/bin/expect configure:8046: result: expect configure:8068: checking for runtest configure:8084: found /c/msys64/usr/bin/runtest configure:8095: result: runtest configure:8213: checking for ar configure:8229: found /c/msys64/usr/bin/ar configure:8240: result: ar configure:8354: checking for as configure:8370: found /c/msys64/usr/bin/as configure:8381: result: as configure:8495: checking for dlltool configure:8511: found /c/msys64/usr/bin/dlltool configure:8522: result: dlltool configure:8555: checking for ld configure:8582: result: /c/msys64/usr/bin/../lib/gcc/x86_64-pc-msys/5.3.0/../../../../x86_64-pc-msys/bin/ld.exe configure:8777: checking for lipo configure:8807: result: no configure:8918: checking for nm configure:8934: found /c/msys64/usr/bin/nm configure:8945: result: nm configure:9059: checking for ranlib configure:9075: found /c/msys64/usr/bin/ranlib configure:9086: result: ranlib configure:9195: checking for strip configure:9211: found /c/msys64/usr/bin/strip configure:9222: result: strip configure:9331: checking for windres configure:9347: found /c/msys64/usr/bin/windres configure:9358: result: windres configure:9472: checking for windmc configure:9488: found /c/msys64/usr/bin/windmc configure:9499: result: windmc configure:9613: checking for objcopy configure:9629: found /c/msys64/usr/bin/objcopy configure:9640: result: objcopy configure:9754: checking for objdump configure:9770: found /c/msys64/usr/bin/objdump configure:9781: result: objdump configure:9895: checking for readelf configure:9911: found /c/msys64/usr/bin/readelf configure:9922: result: readelf configure:10036: checking for fr30-elf-cc configure:10066: result: no configure:10036: checking for fr30-elf-gcc configure:10066: result: no configure:10197: checking for fr30-elf-c++ configure:10227: result: no configure:10197: checking for fr30-elf-g++ configure:10227: result: no configure:10197: checking for fr30-elf-cxx configure:10227: result: no configure:10197: checking for fr30-elf-gxx configure:10227: result: no configure:10358: checking for fr30-elf-gcc configure:10388: result: no configure:10514: checking for fr30-elf-gcj configure:10544: result: no configure:10675: checking for fr30-elf-gfortran configure:10705: result: no configure:10836: checking for fr30-elf-gccgo configure:10866: result: no configure:10966: checking for ar configure:10984: found /c/mingw/fr30-elf/fr30-elf/bin/ar configure:10996: result: /c/mingw/fr30-elf/fr30-elf/bin/ar configure:11196: checking for as configure:11214: found /c/mingw/fr30-elf/fr30-elf/bin/as configure:11226: result: /c/mingw/fr30-elf/fr30-elf/bin/as configure:11426: checking for dlltool configure:11459: result: no configure:11537: checking for fr30-elf-dlltool configure:11567: result: no configure:11656: checking for ld configure:11674: found /c/mingw/fr30-elf/fr30-elf/bin/ld configure:11686: result: /c/mingw/fr30-elf/fr30-elf/bin/ld configure:11886: checking for lipo configure:11919: result: no configure:11997: checking for fr30-elf-lipo configure:12027: result: no configure:12116: checking for nm configure:12134: found /c/mingw/fr30-elf/fr30-elf/bin/nm configure:12146: result: /c/mingw/fr30-elf/fr30-elf/bin/nm configure:12346: checking for objcopy configure:12364: found /c/mingw/fr30-elf/fr30-elf/bin/objcopy configure:12376: result: /c/mingw/fr30-elf/fr30-elf/bin/objcopy configure:12576: checking for objdump configure:12594: found /c/mingw/fr30-elf/fr30-elf/bin/objdump configure:12606: result: /c/mingw/fr30-elf/fr30-elf/bin/objdump configure:12806: checking for ranlib configure:12824: found /c/mingw/fr30-elf/fr30-elf/bin/ranlib configure:12836: result: /c/mingw/fr30-elf/fr30-elf/bin/ranlib configure:13036: checking for readelf configure:13054: found /c/mingw/fr30-elf/fr30-elf/bin/readelf configure:13066: result: /c/mingw/fr30-elf/fr30-elf/bin/readelf configure:13266: checking for strip configure:13284: found /c/mingw/fr30-elf/fr30-elf/bin/strip configure:13296: result: /c/mingw/fr30-elf/fr30-elf/bin/strip configure:13496: checking for windres configure:13529: result: no configure:13607: checking for fr30-elf-windres configure:13637: result: no configure:13726: checking for windmc configure:13759: result: no configure:13837: checking for fr30-elf-windmc configure:13867: result: no configure:13934: checking where to find the target ar configure:13962: result: pre-installed in /c/mingw/fr30-elf/fr30-elf/bin configure:13976: checking where to find the target as configure:14004: result: pre-installed in /c/mingw/fr30-elf/fr30-elf/bin configure:14018: checking where to find the target cc configure:14041: result: just compiled configure:14060: checking where to find the target c++ configure:14086: result: just compiled configure:14105: checking where to find the target c++ for libstdc++ configure:14131: result: just compiled configure:14150: checking where to find the target dlltool configure:14187: result: pre-installed configure:14192: checking where to find the target gcc configure:14215: result: just compiled configure:14234: checking where to find the target gcj configure:14274: result: pre-installed configure:14279: checking where to find the target gfortran configure:14319: result: pre-installed configure:14324: checking where to find the target gccgo configure:14364: result: pre-installed configure:14369: checking where to find the target ld configure:14397: result: pre-installed in /c/mingw/fr30-elf/fr30-elf/bin configure:14411: checking where to find the target lipo configure:14437: result: pre-installed configure:14442: checking where to find the target nm configure:14470: result: pre-installed in /c/mingw/fr30-elf/fr30-elf/bin configure:14484: checking where to find the target objcopy configure:14512: result: pre-installed in /c/mingw/fr30-elf/fr30-elf/bin configure:14526: checking where to find the target objdump configure:14554: result: pre-installed in /c/mingw/fr30-elf/fr30-elf/bin configure:14568: checking where to find the target ranlib configure:14596: result: pre-installed in /c/mingw/fr30-elf/fr30-elf/bin configure:14610: checking where to find the target readelf configure:14638: result: pre-installed in /c/mingw/fr30-elf/fr30-elf/bin configure:14652: checking where to find the target strip configure:14680: result: pre-installed in /c/mingw/fr30-elf/fr30-elf/bin configure:14694: checking where to find the target windres configure:14731: result: pre-installed configure:14736: checking where to find the target windmc configure:14773: result: pre-installed configure:14806: checking whether to enable maintainer-specific portions of Makefiles configure:14815: result: no configure:15072: creating ./config.status ## ---------------------- ## ## Running config.status. ## ## ---------------------- ## This file was extended by config.status, which was generated by GNU Autoconf 2.64. Invocation command line was CONFIG_FILES = CONFIG_HEADERS = CONFIG_LINKS = CONFIG_COMMANDS = $ ./config.status on M4A77T-MN config.status:987: creating Makefile ## ---------------- ## ## Cache variables. ## ## ---------------- ## ac_cv_build=x86_64-pc-msys ac_cv_c_compiler_gnu=yes ac_cv_cxx_compiler_gnu=yes ac_cv_env_AR_FOR_TARGET_set= ac_cv_env_AR_FOR_TARGET_value= ac_cv_env_AR_set= ac_cv_env_AR_value= ac_cv_env_AS_FOR_TARGET_set= ac_cv_env_AS_FOR_TARGET_value= ac_cv_env_AS_set= ac_cv_env_AS_value= ac_cv_env_CCC_set= ac_cv_env_CCC_value= ac_cv_env_CC_FOR_TARGET_set= ac_cv_env_CC_FOR_TARGET_value= ac_cv_env_CC_set= ac_cv_env_CC_value= ac_cv_env_CFLAGS_set= ac_cv_env_CFLAGS_value= ac_cv_env_CPPFLAGS_set= ac_cv_env_CPPFLAGS_value= ac_cv_env_CXXFLAGS_set= ac_cv_env_CXXFLAGS_value= ac_cv_env_CXX_FOR_TARGET_set= ac_cv_env_CXX_FOR_TARGET_value= ac_cv_env_CXX_set= ac_cv_env_CXX_value= ac_cv_env_DLLTOOL_FOR_TARGET_set= ac_cv_env_DLLTOOL_FOR_TARGET_value= ac_cv_env_DLLTOOL_set= ac_cv_env_DLLTOOL_value= ac_cv_env_GCC_FOR_TARGET_set= ac_cv_env_GCC_FOR_TARGET_value= ac_cv_env_GCJ_FOR_TARGET_set= ac_cv_env_GCJ_FOR_TARGET_value= ac_cv_env_GFORTRAN_FOR_TARGET_set= ac_cv_env_GFORTRAN_FOR_TARGET_value= ac_cv_env_GOC_FOR_TARGET_set= ac_cv_env_GOC_FOR_TARGET_value= ac_cv_env_LDFLAGS_set= ac_cv_env_LDFLAGS_value= ac_cv_env_LD_FOR_TARGET_set= ac_cv_env_LD_FOR_TARGET_value= ac_cv_env_LD_set= ac_cv_env_LD_value= ac_cv_env_LIBS_set= ac_cv_env_LIBS_value= ac_cv_env_LIPO_FOR_TARGET_set= ac_cv_env_LIPO_FOR_TARGET_value= ac_cv_env_LIPO_set= ac_cv_env_LIPO_value= ac_cv_env_NM_FOR_TARGET_set= ac_cv_env_NM_FOR_TARGET_value= ac_cv_env_NM_set= ac_cv_env_NM_value= ac_cv_env_OBJCOPY_FOR_TARGET_set= ac_cv_env_OBJCOPY_FOR_TARGET_value= ac_cv_env_OBJCOPY_set= ac_cv_env_OBJCOPY_value= ac_cv_env_OBJDUMP_FOR_TARGET_set= ac_cv_env_OBJDUMP_FOR_TARGET_value= ac_cv_env_OBJDUMP_set= ac_cv_env_OBJDUMP_value= ac_cv_env_RANLIB_FOR_TARGET_set= ac_cv_env_RANLIB_FOR_TARGET_value= ac_cv_env_RANLIB_set= ac_cv_env_RANLIB_value= ac_cv_env_READELF_FOR_TARGET_set= ac_cv_env_READELF_FOR_TARGET_value= ac_cv_env_READELF_set= ac_cv_env_READELF_value= ac_cv_env_STRIP_FOR_TARGET_set= ac_cv_env_STRIP_FOR_TARGET_value= ac_cv_env_STRIP_set= ac_cv_env_STRIP_value= ac_cv_env_WINDMC_FOR_TARGET_set= ac_cv_env_WINDMC_FOR_TARGET_value= ac_cv_env_WINDMC_set= ac_cv_env_WINDMC_value= ac_cv_env_WINDRES_FOR_TARGET_set= ac_cv_env_WINDRES_FOR_TARGET_value= ac_cv_env_WINDRES_set= ac_cv_env_WINDRES_value= ac_cv_env_build_alias_set= ac_cv_env_build_alias_value= ac_cv_env_build_configargs_set= ac_cv_env_build_configargs_value= ac_cv_env_host_alias_set= ac_cv_env_host_alias_value= ac_cv_env_host_configargs_set= ac_cv_env_host_configargs_value= ac_cv_env_target_alias_set=set ac_cv_env_target_alias_value=fr30-elf ac_cv_env_target_configargs_set= ac_cv_env_target_configargs_value= ac_cv_exeext=.exe ac_cv_host=x86_64-pc-msys ac_cv_objext=o ac_cv_path_AR_FOR_TARGET=/c/mingw/fr30-elf/fr30-elf/bin/ar ac_cv_path_AS_FOR_TARGET=/c/mingw/fr30-elf/fr30-elf/bin/as ac_cv_path_LD_FOR_TARGET=/c/mingw/fr30-elf/fr30-elf/bin/ld ac_cv_path_NM_FOR_TARGET=/c/mingw/fr30-elf/fr30-elf/bin/nm ac_cv_path_OBJCOPY_FOR_TARGET=/c/mingw/fr30-elf/fr30-elf/bin/objcopy ac_cv_path_OBJDUMP_FOR_TARGET=/c/mingw/fr30-elf/fr30-elf/bin/objdump ac_cv_path_RANLIB_FOR_TARGET=/c/mingw/fr30-elf/fr30-elf/bin/ranlib ac_cv_path_READELF_FOR_TARGET=/c/mingw/fr30-elf/fr30-elf/bin/readelf ac_cv_path_SED=/c/msys64/usr/bin/sed ac_cv_path_STRIP_FOR_TARGET=/c/mingw/fr30-elf/fr30-elf/bin/strip ac_cv_prog_AR=ar ac_cv_prog_AS=as ac_cv_prog_AWK=gawk ac_cv_prog_BISON=bison ac_cv_prog_DLLTOOL=dlltool ac_cv_prog_EXPECT=expect ac_cv_prog_FLEX=flex ac_cv_prog_LD=/c/msys64/usr/bin/../lib/gcc/x86_64-pc-msys/5.3.0/../../../../x86_64-pc-msys/bin/ld.exe ac_cv_prog_LEX=flex ac_cv_prog_M4=m4 ac_cv_prog_MAKEINFO=makeinfo ac_cv_prog_NM=nm ac_cv_prog_OBJCOPY=objcopy ac_cv_prog_OBJDUMP=objdump ac_cv_prog_RANLIB=ranlib ac_cv_prog_READELF=readelf ac_cv_prog_RUNTEST=runtest ac_cv_prog_STRIP=strip ac_cv_prog_WINDMC=windmc ac_cv_prog_WINDRES=windres ac_cv_prog_YACC='bison -y' ac_cv_prog_ac_ct_CC=gcc ac_cv_prog_ac_ct_CXX=g++ ac_cv_prog_ac_ct_GNATBIND=gnatbind ac_cv_prog_ac_ct_GNATMAKE=gnatmake ac_cv_prog_cc_c89= ac_cv_prog_cc_g=yes ac_cv_prog_cxx_g=yes ac_cv_target=fr30-unknown-elf acx_cv_cc_gcc_supports_ada=no acx_cv_prog_LN=ln gcc_cv_isl=no gcc_cv_prog_cmp_skip='cmp --ignore-initial=16 $$f1 $$f2' gcc_cv_tool_dirs=/c/mingw/fr30-elf/libexec/gcc/fr30-elf/6.2.0:/c/mingw/fr30-elf/libexec/gcc/fr30-elf:/usr/lib/gcc/fr30-elf/6.2.0:/usr/lib/gcc/fr30-elf:/c/mingw/fr30-elf/fr30-elf/bin/fr30-elf/6.2.0:/c/mingw/fr30-elf/fr30-elf/bin: gcc_cv_tool_prefix=/c/mingw/fr30-elf lt_cv_objdir=.libs ## ----------------- ## ## Output variables. ## ## ----------------- ## AR='ar' AR_FOR_BUILD='$(AR)' AR_FOR_TARGET='/c/mingw/fr30-elf/fr30-elf/bin/ar' AS='as' AS_FOR_BUILD='$(AS)' AS_FOR_TARGET='/c/mingw/fr30-elf/fr30-elf/bin/as' AWK='gawk' BISON='bison' BUILD_CONFIG='' CC='gcc' CC_FOR_BUILD='$(CC)' CC_FOR_TARGET='$$r/$(HOST_SUBDIR)/gcc/xgcc -B$$r/$(HOST_SUBDIR)/gcc/' CFLAGS='-g -O2' CFLAGS_FOR_BUILD='-g -O2' CFLAGS_FOR_TARGET='-g -O2' COMPILER_AS_FOR_TARGET='$$r/$(HOST_SUBDIR)/gcc/as' COMPILER_LD_FOR_TARGET='$$r/$(HOST_SUBDIR)/gcc/collect-ld' COMPILER_NM_FOR_TARGET='$$r/$(HOST_SUBDIR)/gcc/nm' CONFIGURE_GDB_TK='' CPPFLAGS='' CXX='g++' CXXFLAGS='-g -O2' CXXFLAGS_FOR_BUILD='-g -O2' CXXFLAGS_FOR_TARGET='-g -O2' CXX_FOR_BUILD='$(CXX)' CXX_FOR_TARGET='$$r/$(HOST_SUBDIR)/gcc/xg++ -B$$r/$(HOST_SUBDIR)/gcc/ -nostdinc++ `if test -f $$r/$(TARGET_SUBDIR)/libstdc++-v3/scripts/testsuite_flags; then $(SHELL) $$r/$(TARGET_SUBDIR)/libstdc++-v3/scripts/testsuite_flags --build-includes; else echo -funconfigured-libstdc++-v3 ; fi` -L$$r/$(TARGET_SUBDIR)/libstdc++-v3/src -L$$r/$(TARGET_SUBDIR)/libstdc++-v3/src/.libs -L$$r/$(TARGET_SUBDIR)/libstdc++-v3/libsupc++/.libs' DEBUG_PREFIX_CFLAGS_FOR_TARGET='' DEFS='-DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DLT_OBJDIR=\".libs/\"' DLLTOOL='dlltool' DLLTOOL_FOR_BUILD='$(DLLTOOL)' DLLTOOL_FOR_TARGET='fr30-elf-dlltool' ECHO_C='' ECHO_N='-n' ECHO_T='' EXEEXT='.exe' EXPECT='expect' EXTRA_CONFIGARGS_LIBJAVA='--disable-static' FLAGS_FOR_TARGET=' -B$(build_tooldir)/bin/ -B$(build_tooldir)/lib/ -isystem $(build_tooldir)/include -isystem $(build_tooldir)/sys-include' FLEX='flex' GCC_FOR_TARGET='$$r/$(HOST_SUBDIR)/gcc/xgcc -B$$r/$(HOST_SUBDIR)/gcc/' GCC_SHLIB_SUBDIR='' GCJ_FOR_BUILD='$(GCJ)' GCJ_FOR_TARGET='fr30-elf-gcj' GDB_TK='' GFORTRAN_FOR_BUILD='$(GFORTRAN)' GFORTRAN_FOR_TARGET='fr30-elf-gfortran' GNATBIND='gnatbind' GNATMAKE='gnatmake' GOC_FOR_BUILD='$(GOC)' GOC_FOR_TARGET='fr30-elf-gccgo' INSTALL_DATA='${INSTALL} -m 644' INSTALL_GDB_TK='' INSTALL_PROGRAM='${INSTALL}' INSTALL_SCRIPT='${INSTALL}' LD='/c/msys64/usr/bin/../lib/gcc/x86_64-pc-msys/5.3.0/../../../../x86_64-pc-msys/bin/ld.exe' LDFLAGS='' LDFLAGS_FOR_BUILD='' LDFLAGS_FOR_TARGET='' LD_FOR_BUILD='$(LD)' LD_FOR_TARGET='/c/mingw/fr30-elf/fr30-elf/bin/ld' LEX='flex' LIBOBJS='' LIBS='' LIPO='lipo' LIPO_FOR_TARGET='fr30-elf-lipo' LN='ln' LN_S='cp -p' LTLIBOBJS='' M4='m4' MAINT='#' MAINTAINER_MODE_FALSE='' MAINTAINER_MODE_TRUE='#' MAKEINFO='makeinfo' NM='nm' NM_FOR_BUILD='$(NM)' NM_FOR_TARGET='/c/mingw/fr30-elf/fr30-elf/bin/nm' OBJCOPY='objcopy' OBJCOPY_FOR_TARGET='/c/mingw/fr30-elf/fr30-elf/bin/objcopy' OBJDUMP='objdump' OBJDUMP_FOR_TARGET='/c/mingw/fr30-elf/fr30-elf/bin/objdump' OBJEXT='o' PACKAGE_BUGREPORT='' PACKAGE_NAME='' PACKAGE_STRING='' PACKAGE_TARNAME='' PACKAGE_URL='' PACKAGE_VERSION='' PATH_SEPARATOR=':' RANLIB='ranlib' RANLIB_FOR_BUILD='$(RANLIB)' RANLIB_FOR_TARGET='/c/mingw/fr30-elf/fr30-elf/bin/ranlib' RAW_CXX_FOR_TARGET='$$r/$(HOST_SUBDIR)/gcc/xgcc -shared-libgcc -B$$r/$(HOST_SUBDIR)/gcc -nostdinc++ -L$$r/$(TARGET_SUBDIR)/libstdc++-v3/src -L$$r/$(TARGET_SUBDIR)/libstdc++-v3/src/.libs -L$$r/$(TARGET_SUBDIR)/libstdc++-v3/libsupc++/.libs' READELF='readelf' READELF_FOR_TARGET='/c/mingw/fr30-elf/fr30-elf/bin/readelf' RPATH_ENVVAR='LD_LIBRARY_PATH' RUNTEST='runtest' SED='/c/msys64/usr/bin/sed' SHELL='/bin/sh' STRIP='strip' STRIP_FOR_TARGET='/c/mingw/fr30-elf/fr30-elf/bin/strip' SYSROOT_CFLAGS_FOR_TARGET='' TOPLEVEL_CONFIGURE_ARGUMENTS='../../src/gcc-6.2.0/configure --target=fr30-elf --prefix=/c/mingw/fr30-elf --enable-languages=c,c++ --disable-nls --disable-shared --with-newlib --with-headers=../../src/newlib-2.4.0.20160923/newlib/libc/include' WINDMC='windmc' WINDMC_FOR_BUILD='$(WINDMC)' WINDMC_FOR_TARGET='fr30-elf-windmc' WINDRES='windres' WINDRES_FOR_BUILD='$(WINDRES)' WINDRES_FOR_TARGET='fr30-elf-windres' YACC='bison -y' ac_ct_CC='gcc' ac_ct_CXX='g++' bindir='${exec_prefix}/bin' build='x86_64-pc-msys' build_alias='x86_64-pc-msys' build_configargs=' --cache-file=./config.cache '\''--prefix=/c/mingw/fr30-elf'\'' '\''--disable-nls'\'' '\''--disable-shared'\'' '\''--with-newlib'\'' '\''--with-headers=../../src/newlib-2.4.0.20160923/newlib/libc/include'\'' '\''--enable-languages=c,c++,lto'\'' --program-transform-name='\''s&^&fr30-elf-&'\'' --disable-option-checking' build_configdirs=' libiberty libcpp fixincludes' build_cpu='x86_64' build_libsubdir='build-x86_64-pc-msys' build_noncanonical='x86_64-pc-msys' build_os='msys' build_subdir='build-x86_64-pc-msys' build_tooldir='${exec_prefix}/fr30-elf' build_vendor='pc' compare_exclusions='gcc/cc*-checksum$(objext) | gcc/ada/*tools/*' configdirs=' intl libiberty zlib libbacktrace libcpp libdecnumber gmp mpfr mpc fixincludes gcc libcc1 lto-plugin' datadir='${datarootdir}' datarootdir='${prefix}/share' do_compare='cmp --ignore-initial=16 $$f1 $$f2' docdir='${datarootdir}/doc/${PACKAGE}' dvidir='${docdir}' exec_prefix='${prefix}' extra_host_libiberty_configure_flags='--enable-shared' extra_host_zlib_configure_flags='' extra_isl_gmp_configure_flags='--with-gmp-builddir=$$r/$(HOST_SUBDIR)/gmp' extra_liboffloadmic_configure_flags='' extra_linker_plugin_configure_flags='' extra_linker_plugin_flags='' extra_mpc_gmp_configure_flags='--with-gmp-include=$$r/$(HOST_SUBDIR)/gmp --with-gmp-lib=$$r/$(HOST_SUBDIR)/gmp/.libs' extra_mpc_mpfr_configure_flags='--with-mpfr-include=$$s/mpfr/src --with-mpfr-lib=$$r/$(HOST_SUBDIR)/mpfr/src/.libs' extra_mpfr_configure_flags='--with-gmp-include=$$r/$(HOST_SUBDIR)/gmp --with-gmp-lib=$$r/$(HOST_SUBDIR)/gmp/.libs' gmpinc='-I$$r/$(HOST_SUBDIR)/gmp -I$$s/gmp -I$$r/$(HOST_SUBDIR)/mpfr/src -I$$s/mpfr/src -I$$s/mpc/src ' gmplibs='-L$$r/$(HOST_SUBDIR)/gmp/.libs -L$$r/$(HOST_SUBDIR)/mpfr/src/.libs -L$$r/$(HOST_SUBDIR)/mpc/src/.libs -lmpc -lmpfr -lgmp' host='x86_64-pc-msys' host_alias='' host_configargs=' --cache-file=./config.cache '\''--prefix=/c/mingw/fr30-elf'\'' '\''--disable-nls'\'' '\''--disable-shared'\'' '\''--with-newlib'\'' '\''--with-headers=../../src/newlib-2.4.0.20160923/newlib/libc/include'\'' '\''--enable-languages=c,c++,lto'\'' --program-transform-name='\''s&^&fr30-elf-&'\'' --disable-option-checking' host_cpu='x86_64' host_noncanonical='x86_64-pc-msys' host_os='msys' host_shared='no' host_subdir='.' host_vendor='pc' htmldir='${docdir}' includedir='${prefix}/include' infodir='${datarootdir}/info' islinc='' isllibs='' islver='' libdir='${exec_prefix}/lib' libexecdir='${exec_prefix}/libexec' localedir='${datarootdir}/locale' localstatedir='${prefix}/var' mandir='${datarootdir}/man' oldincludedir='/usr/include' pdfdir='${docdir}' poststage1_ldflags='-static-libstdc++ -static-libgcc' poststage1_libs='' prefix='/c/mingw/fr30-elf' program_transform_name='s&^&fr30-elf-&' psdir='${docdir}' sbindir='${exec_prefix}/sbin' sharedstatedir='${prefix}/com' stage1_cflags='-g' stage1_checking='--enable-checking=yes,types' stage1_languages='c,c++,lto' stage1_ldflags='-static-libstdc++ -static-libgcc' stage1_libs='' stage2_werror_flag='' sysconfdir='${prefix}/etc' target='fr30-unknown-elf' target_alias='fr30-elf' target_configargs='--cache-file=./config.cache --enable-multilib --with-cross-host=x86_64-pc-msys '\''--prefix=/c/mingw/fr30-elf'\'' '\''--disable-nls'\'' '\''--disable-shared'\'' '\''--with-newlib'\'' '\''--with-headers=../../src/newlib-2.4.0.20160923/newlib/libc/include'\'' '\''--enable-languages=c,c++,lto'\'' --program-transform-name='\''s&^&fr30-elf-&'\'' --disable-option-checking' target_configdirs='libgcc libstdc++-v3 libssp libquadmath' target_cpu='fr30' target_noncanonical='fr30-elf' target_os='elf' target_subdir='fr30-elf' target_vendor='unknown' tooldir='${exec_prefix}/fr30-elf' ## ------------------- ## ## File substitutions. ## ## ------------------- ## alphaieee_frag='/dev/null' host_makefile_frag='/dev/null' ospace_frag='../../src/gcc-6.2.0/config/mt-ospace' serialization_dependencies='serdep.tmp' target_makefile_frag='/dev/null' ## ----------- ## ## confdefs.h. ## ## ----------- ## /* confdefs.h */ #define PACKAGE_NAME "" #define PACKAGE_TARNAME "" #define PACKAGE_VERSION "" #define PACKAGE_STRING "" #define PACKAGE_BUGREPORT "" #define PACKAGE_URL "" #define LT_OBJDIR ".libs/" configure: exit 0
/bin/sh ../../src/gcc-6.2.0/mkinstalldirs /c/mingw/fr30-elf /c/mingw/fr30-elf make[1]: Entering directory '/d/Devel/Fujitsu_FR30.80/gcc_6.2/build/gcc-6.2.0/fixincludes' rm -rf /c/mingw/fr30-elf/libexec/gcc/fr30-elf/6.2.0/install-tools /bin/sh ../../../src/gcc-6.2.0/fixincludes/../mkinstalldirs /c/mingw/fr30-elf/libexec/gcc/fr30-elf/6.2.0/install-tools mkdir -p -- /c/mingw/fr30-elf/libexec/gcc/fr30-elf/6.2.0/install-tools /bin/sh ../../../src/gcc-6.2.0/fixincludes/../mkinstalldirs /c/mingw/fr30-elf/lib/gcc/fr30-elf/6.2.0/install-tools/include /d/devel/Fujitsu_FR30.80/gcc_6.2/src/gcc-6.2.0/install-sh -c -m 644 ../../../src/gcc-6.2.0/fixincludes/README-fixinc \ /c/mingw/fr30-elf/lib/gcc/fr30-elf/6.2.0/install-tools/include/README /d/devel/Fujitsu_FR30.80/gcc_6.2/src/gcc-6.2.0/install-sh -c fixinc.sh /c/mingw/fr30-elf/libexec/gcc/fr30-elf/6.2.0/install-tools/fixinc.sh /d/devel/Fujitsu_FR30.80/gcc_6.2/src/gcc-6.2.0/install-sh -c fixincl.exe /c/mingw/fr30-elf/libexec/gcc/fr30-elf/6.2.0/install-tools/fixincl.exe /d/devel/Fujitsu_FR30.80/gcc_6.2/src/gcc-6.2.0/install-sh -c mkheaders /c/mingw/fr30-elf/libexec/gcc/fr30-elf/6.2.0/install-tools/mkheaders make[1]: Leaving directory '/d/Devel/Fujitsu_FR30.80/gcc_6.2/build/gcc-6.2.0/fixincludes' make[1]: Entering directory '/d/Devel/Fujitsu_FR30.80/gcc_6.2/build/gcc-6.2.0/lto-plugin' WARNING: liblto_plugin.la is static, not copying to ../gcc/liblto_plugin.la make[2]: Entering directory '/d/Devel/Fujitsu_FR30.80/gcc_6.2/build/gcc-6.2.0/lto-plugin' /c/msys64/usr/bin/mkdir -p '/c/mingw/fr30-elf/libexec/gcc/fr30-elf/6.2.0' /bin/sh ./libtool --tag=disable-static --mode=install /d/devel/Fujitsu_FR30.80/gcc_6.2/src/gcc-6.2.0/install-sh -c liblto_plugin.la '/c/mingw/fr30-elf/libexec/gcc/fr30-elf/6.2.0' libtool: install: /d/devel/Fujitsu_FR30.80/gcc_6.2/src/gcc-6.2.0/install-sh -c .libs/liblto_plugin.lai /c/mingw/fr30-elf/libexec/gcc/fr30-elf/6.2.0/liblto_plugin.la libtool: install: /d/devel/Fujitsu_FR30.80/gcc_6.2/src/gcc-6.2.0/install-sh -c .libs/liblto_plugin.a /c/mingw/fr30-elf/libexec/gcc/fr30-elf/6.2.0/liblto_plugin.a libtool: install: chmod 644 /c/mingw/fr30-elf/libexec/gcc/fr30-elf/6.2.0/liblto_plugin.a libtool: install: ranlib /c/mingw/fr30-elf/libexec/gcc/fr30-elf/6.2.0/liblto_plugin.a ---------------------------------------------------------------------- Libraries have been installed in: /c/mingw/fr30-elf/libexec/gcc/fr30-elf/6.2.0 If you ever happen to want to link against installed libraries in a given directory, LIBDIR, you must either use libtool, and specify the full pathname of the library, or use the `-LLIBDIR' flag during linking and do at least one of the following: - add LIBDIR to the `LD_RUN_PATH' environment variable during linking - use the `-Wl,-rpath -Wl,LIBDIR' linker flag See any operating system documentation about shared libraries for more information, such as the ld(1) and ld.so(8) manual pages. ---------------------------------------------------------------------- make[2]: Nothing to be done for 'install-data-am'. make[2]: Leaving directory '/d/Devel/Fujitsu_FR30.80/gcc_6.2/build/gcc-6.2.0/lto-plugin' make[1]: Leaving directory '/d/Devel/Fujitsu_FR30.80/gcc_6.2/build/gcc-6.2.0/lto-plugin' make[1]: Entering directory '/d/Devel/Fujitsu_FR30.80/gcc_6.2/build/gcc-6.2.0/gcc' /bin/sh ../../../src/gcc-6.2.0/gcc/../mkinstalldirs /c/mingw/fr30-elf/lib/gcc/fr30-elf/6.2.0 /bin/sh ../../../src/gcc-6.2.0/gcc/../mkinstalldirs /c/mingw/fr30-elf/libexec/gcc/fr30-elf/6.2.0 /bin/sh ../../../src/gcc-6.2.0/gcc/../mkinstalldirs /c/mingw/fr30-elf/bin /bin/sh ../../../src/gcc-6.2.0/gcc/../mkinstalldirs /c/mingw/fr30-elf/include /bin/sh ../../../src/gcc-6.2.0/gcc/../mkinstalldirs /c/mingw/fr30-elf/share/info /bin/sh ../../../src/gcc-6.2.0/gcc/../mkinstalldirs /c/mingw/fr30-elf/share/man/man1 /bin/sh ../../../src/gcc-6.2.0/gcc/../mkinstalldirs /c/mingw/fr30-elf/share/man/man7 if test "" != "yes" ; then \ rm -f /c/mingw/fr30-elf/bin/fr30-elf-g++; \ /d/devel/Fujitsu_FR30.80/gcc_6.2/src/gcc-6.2.0/install-sh -c xg++ /c/mingw/fr30-elf/bin/fr30-elf-g++; \ chmod a+x /c/mingw/fr30-elf/bin/fr30-elf-g++; \ rm -f /c/mingw/fr30-elf/bin/fr30-elf-c++; \ ( cd /c/mingw/fr30-elf/bin && \ ln fr30-elf-g++ fr30-elf-c++ ); \ if [ -f cc1plus ] ; then \ if [ ! -f g++-cross ] ; then \ rm -f /c/mingw/fr30-elf/bin/fr30-elf-fr30-elf-g++; \ ( cd /c/mingw/fr30-elf/bin && \ ln fr30-elf-g++ fr30-elf-fr30-elf-g++ ); \ rm -f /c/mingw/fr30-elf/bin/fr30-elf-fr30-elf-c++; \ ( cd /c/mingw/fr30-elf/bin && \ ln fr30-elf-c++ fr30-elf-fr30-elf-c++ ); \ fi ; \ fi; \ fi for file in gnat1 cc1 cc1plus f951 go1 jc1 jvgenmain lto1 cc1obj cc1objplus; do \ if [ -f $file ] ; then \ rm -f /c/mingw/fr30-elf/libexec/gcc/fr30-elf/6.2.0/$file; \ /d/devel/Fujitsu_FR30.80/gcc_6.2/src/gcc-6.2.0/install-sh -c $file /c/mingw/fr30-elf/libexec/gcc/fr30-elf/6.2.0/$file; \ else true; \ fi; \ done for file in collect2 ..; do \ if [ x"$file" != x.. ]; then \ rm -f /c/mingw/fr30-elf/libexec/gcc/fr30-elf/6.2.0/$file; \ /d/devel/Fujitsu_FR30.80/gcc_6.2/src/gcc-6.2.0/install-sh -c $file /c/mingw/fr30-elf/libexec/gcc/fr30-elf/6.2.0/$file; \ else true; fi; \ done rm -f /c/mingw/fr30-elf/lib/gcc/fr30-elf/6.2.0/specs if test "" != "yes" ; then \ if [ -f gcov ]; \ then \ rm -f /c/mingw/fr30-elf/bin/fr30-elf-gcov; \ /d/devel/Fujitsu_FR30.80/gcc_6.2/src/gcc-6.2.0/install-sh -c gcov /c/mingw/fr30-elf/bin/fr30-elf-gcov; \ fi; \ fi if test "" != "yes" ; then \ if [ -f gcov-tool ]; \ then \ rm -f /c/mingw/fr30-elf/bin/fr30-elf-gcov-tool; \ /d/devel/Fujitsu_FR30.80/gcc_6.2/src/gcc-6.2.0/install-sh -c \ gcov-tool /c/mingw/fr30-elf/bin/fr30-elf-gcov-tool; \ fi; \ fi /bin/sh ../../../src/gcc-6.2.0/gcc/../mkinstalldirs /c/mingw/fr30-elf/lib/gcc/fr30-elf/6.2.0/include rm -rf /c/mingw/fr30-elf/lib/gcc/fr30-elf/6.2.0/include-fixed mkdir /c/mingw/fr30-elf/lib/gcc/fr30-elf/6.2.0/include-fixed chmod a+rx /c/mingw/fr30-elf/lib/gcc/fr30-elf/6.2.0/include-fixed (cd `${PWDCMD-pwd}`/include ; \ tar -cf - .; exit 0) | (cd /c/mingw/fr30-elf/lib/gcc/fr30-elf/6.2.0/include; tar xpf - ) (cd `${PWDCMD-pwd}`/include-fixed ; \ tar -cf - .; exit 0) | (cd /c/mingw/fr30-elf/lib/gcc/fr30-elf/6.2.0/include-fixed; tar xpf - ) files=`cd /c/mingw/fr30-elf/lib/gcc/fr30-elf/6.2.0/include-fixed; find . -type l -print 2>/dev/null`; \ if [ $? -eq 0 ]; then \ dir=`cd include-fixed; ${PWDCMD-pwd}`; \ for i in $files; do \ dest=`ls -ld /c/mingw/fr30-elf/lib/gcc/fr30-elf/6.2.0/include-fixed/$i | sed -n 's/.*-> //p'`; \ if expr "$dest" : "$dir.*" > /dev/null; then \ rm -f /c/mingw/fr30-elf/lib/gcc/fr30-elf/6.2.0/include-fixed/$i; \ ln -s `echo $i | sed "s|/[^/]*|/..|g" | sed 's|/..$||'``echo "$dest" | sed "s|$dir||"` /c/mingw/fr30-elf/lib/gcc/fr30-elf/6.2.0/include-fixed/$i; \ fi; \ done; \ fi /bin/sh ../../../src/gcc-6.2.0/gcc/../mkinstalldirs /c/mingw/fr30-elf/lib/gcc/fr30-elf/6.2.0/install-tools/include /bin/sh ../../../src/gcc-6.2.0/gcc/../mkinstalldirs /c/mingw/fr30-elf/libexec/gcc/fr30-elf/6.2.0/install-tools /d/devel/Fujitsu_FR30.80/gcc_6.2/src/gcc-6.2.0/install-sh -c -m 644 ../../../src/gcc-6.2.0/gcc/gsyslimits.h \ /c/mingw/fr30-elf/lib/gcc/fr30-elf/6.2.0/install-tools/gsyslimits.h /d/devel/Fujitsu_FR30.80/gcc_6.2/src/gcc-6.2.0/install-sh: line 437: exec: cp: cannot execute: Is a directory make[1]: *** [Makefile:3617: install-mkheaders] Error 1 make[1]: Leaving directory '/d/Devel/Fujitsu_FR30.80/gcc_6.2/build/gcc-6.2.0/gcc' make: *** [Makefile:4206: install-gcc] Error 2