Last active
May 8, 2022 19:53
-
-
Save RLovelett/f73fb5f701035b33417c to your computer and use it in GitHub Desktop.
A Git bisect run script to find the binutils commit that introduced the move bug
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# Good: 2bd25930 | |
# Bad: 71090e7a | |
set -ex | |
BINUTILS_DIR=$HOME/packages/trunk | |
SWIFT_DIR=$HOME/swift | |
# Get back to a regular binutils | |
sudo pacman -S binutils --noconfirm | |
# Get rid of any compilation cruft | |
cd $BINUTILS_DIR/src | |
rm -rf binutils-build | |
# Build binutils and install; or `git bisect skip` | |
cd $BINUTILS_DIR | |
makepkg --syncdeps --rmdeps --noextract --force || exit 125 | |
sudo pacman -U binutils-2.25.1-3-x86_64.pkg.tar.xz --noconfirm | |
# Reset the git tree | |
cd $BINUTILS_DIR/src/binutils-gdb | |
git checkout . | |
# Build Swift if anything goes wrong this is a bad commit | |
cd $SWIFT_DIR/../build/Ninja-ReleaseAssert | |
rm -rf swift-linux-x86_64 | |
cd $SWIFT_DIR | |
utils/build-script --release || exit 1 | |
# If the script got here then the build was good | |
exit 0 |
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
running /home/ryan/binutils-bisect.sh | |
+ BINUTILS_DIR=/home/ryan/packages/trunk | |
+ SWIFT_DIR=/home/ryan/swift | |
+ sudo pacman -S binutils --noconfirm | |
warning: binutils-2.25.1-3 is up to date -- reinstalling | |
resolving dependencies... | |
looking for conflicting packages... | |
Packages (1) binutils-2.25.1-3 | |
Total Installed Size: 26.76 MiB | |
Net Upgrade Size: 0.00 MiB | |
:: Proceed with installation? [Y/n] | |
checking keyring... | |
checking package integrity... | |
loading package files... | |
checking for file conflicts... | |
checking available disk space... | |
:: Processing package changes... | |
reinstalling binutils... | |
+ cd /home/ryan/packages/trunk/src | |
+ rm -rf binutils-build | |
+ cd /home/ryan/packages/trunk | |
+ makepkg --syncdeps --rmdeps --noextract --force | |
==> Making package: binutils 2.25.1-3 (Tue Mar 22 01:50:32 EDT 2016) | |
==> Checking runtime dependencies... | |
==> Checking buildtime dependencies... | |
==> WARNING: Using existing $srcdir/ tree | |
==> Starting prepare()... | |
==> Removing existing $pkgdir/ directory... | |
==> Starting 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-unknown-linux-gnu | |
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... /usr/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 whether g++ accepts -static-libstdc++ -static-libgcc... 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 version 0.10 of ISL... no | |
checking for version 0.11 of ISL... no | |
checking for version 0.12 of ISL... no | |
*** This configuration is not supported in the following subdirectories: | |
gdb | |
(Any other directories should still work fine.) | |
checking for default BUILD_CONFIG... | |
checking for --enable-vtable-verify... no | |
checking for bison... bison -y | |
checking for bison... bison | |
checking for gm4... no | |
checking for gnum4... no | |
checking for m4... m4 | |
checking for flex... flex | |
checking for flex... flex | |
checking for makeinfo... makeinfo | |
checking for expect... expect | |
checking for runtest... runtest | |
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 readelf... readelf | |
checking for cc... cc | |
checking for c++... c++ | |
checking for gcc... gcc | |
checking for gcj... no | |
checking for gfortran... no | |
checking for gccgo... 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 objdump... objdump | |
checking for ranlib... ranlib | |
checking for readelf... readelf | |
checking for strip... strip | |
checking for windres... no | |
checking for windmc... no | |
checking where to find the target ar... just compiled | |
checking where to find the target as... just compiled | |
checking where to find the target cc... host tool | |
checking where to find the target c++... host tool | |
checking where to find the target c++ for libstdc++... host tool | |
checking where to find the target dlltool... just compiled | |
checking where to find the target gcc... host tool | |
checking where to find the target gcj... host tool | |
checking where to find the target gfortran... host tool | |
checking where to find the target gccgo... host tool | |
checking where to find the target ld... just compiled | |
checking where to find the target lipo... host tool | |
checking where to find the target nm... just compiled | |
checking where to find the target objdump... just compiled | |
checking where to find the target ranlib... just compiled | |
checking where to find the target readelf... just compiled | |
checking where to find the target strip... just compiled | |
checking where to find the target windres... just compiled | |
checking where to find the target windmc... just compiled | |
checking whether to enable maintainer-specific portions of Makefiles... no | |
configure: creating ./config.status | |
config.status: creating Makefile | |
mkdir -p -- ./libiberty | |
Configuring in ./libiberty | |
configure: creating cache ./config.cache | |
checking whether to enable maintainer-specific portions of Makefiles... no | |
checking for makeinfo... makeinfo | |
checking for perl... perl | |
checking build 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 whether to install libiberty headers and static library... no | |
configure: target_header_dir = | |
checking for x86_64-unknown-linux-gnu-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 special C compiler options needed for large files... no | |
checking for _FILE_OFFSET_BITS value needed for large files... no | |
checking how to run the C preprocessor... gcc -E | |
checking whether gcc supports -W... yes | |
checking whether gcc supports -Wall... yes | |
checking whether gcc supports -Wwrite-strings... yes | |
checking whether gcc supports -Wc++-compat... yes | |
checking whether gcc supports -Wstrict-prototypes... yes | |
checking whether gcc supports -pedantic ... yes | |
checking whether gcc and cc understand -c and -o together... yes | |
checking for an ANSI C-conforming const... yes | |
checking for inline... inline | |
checking for grep that handles long lines and -e... /usr/bin/grep | |
checking for egrep... /usr/bin/grep -E | |
checking for ANSI C header files... yes | |
checking for sys/types.h... yes | |
checking for sys/stat.h... yes | |
checking for stdlib.h... yes | |
checking for string.h... yes | |
checking for memory.h... yes | |
checking for strings.h... yes | |
checking for inttypes.h... yes | |
checking for stdint.h... yes | |
checking for unistd.h... yes | |
checking whether byte ordering is bigendian... no | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking for sys/file.h... yes | |
checking for sys/param.h... yes | |
checking for limits.h... yes | |
checking for stdlib.h... (cached) yes | |
checking for malloc.h... yes | |
checking for string.h... (cached) yes | |
checking for unistd.h... (cached) yes | |
checking for strings.h... (cached) yes | |
checking for sys/time.h... yes | |
checking for time.h... yes | |
checking for sys/resource.h... yes | |
checking for sys/stat.h... (cached) yes | |
checking for sys/mman.h... yes | |
checking for fcntl.h... yes | |
checking for alloca.h... yes | |
checking for sys/pstat.h... no | |
checking for sys/sysmp.h... no | |
checking for sys/sysinfo.h... yes | |
checking for machine/hal_sysinfo.h... no | |
checking for sys/table.h... no | |
checking for sys/sysctl.h... yes | |
checking for sys/systemcfg.h... no | |
checking for stdint.h... (cached) yes | |
checking for stdio_ext.h... yes | |
checking for process.h... no | |
checking for sys/prctl.h... yes | |
checking for sys/wait.h that is POSIX.1 compatible... yes | |
checking whether time.h and sys/time.h may both be included... yes | |
checking whether errno must be declared... no | |
checking size of int... 4 | |
checking for a 64-bit type... uint64_t | |
checking for intptr_t... yes | |
checking for uintptr_t... yes | |
checking for ssize_t... yes | |
checking for pid_t... yes | |
checking for library containing strerror... none required | |
checking for asprintf... yes | |
checking for atexit... yes | |
checking for basename... yes | |
checking for bcmp... yes | |
checking for bcopy... yes | |
checking for bsearch... yes | |
checking for bzero... yes | |
checking for calloc... yes | |
checking for clock... yes | |
checking for ffs... yes | |
checking for getcwd... yes | |
checking for getpagesize... yes | |
checking for gettimeofday... yes | |
checking for index... yes | |
checking for insque... yes | |
checking for memchr... yes | |
checking for memcmp... yes | |
checking for memcpy... yes | |
checking for memmem... yes | |
checking for memmove... yes | |
checking for mempcpy... yes | |
checking for memset... yes | |
checking for mkstemps... yes | |
checking for putenv... yes | |
checking for random... yes | |
checking for rename... yes | |
checking for rindex... yes | |
checking for setenv... yes | |
checking for snprintf... yes | |
checking for sigsetmask... yes | |
checking for stpcpy... yes | |
checking for stpncpy... yes | |
checking for strcasecmp... yes | |
checking for strchr... yes | |
checking for strdup... yes | |
checking for strncasecmp... yes | |
checking for strndup... yes | |
checking for strnlen... yes | |
checking for strrchr... yes | |
checking for strstr... yes | |
checking for strtod... yes | |
checking for strtol... yes | |
checking for strtoul... yes | |
checking for strverscmp... yes | |
checking for tmpnam... yes | |
checking for vasprintf... yes | |
checking for vfprintf... yes | |
checking for vprintf... yes | |
checking for vsnprintf... yes | |
checking for vsprintf... yes | |
checking for waitpid... yes | |
checking for setproctitle... no | |
checking whether alloca needs Cray hooks... no | |
checking stack direction for C alloca... -1 | |
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 _doprnt... no | |
checking for sys_errlist... yes | |
checking for sys_nerr... yes | |
checking for sys_siglist... yes | |
checking for external symbol _system_configuration... no | |
checking for __fsetlocking... yes | |
checking for canonicalize_file_name... yes | |
checking for dup3... yes | |
checking for getrlimit... yes | |
checking for getrusage... yes | |
checking for getsysinfo... no | |
checking for gettimeofday... (cached) yes | |
checking for on_exit... yes | |
checking for psignal... yes | |
checking for pstat_getdynamic... no | |
checking for pstat_getstatic... no | |
checking for realpath... yes | |
checking for setrlimit... yes | |
checking for sbrk... yes | |
checking for spawnve... no | |
checking for spawnvpe... no | |
checking for strerror... yes | |
checking for strsignal... yes | |
checking for sysconf... yes | |
checking for sysctl... yes | |
checking for sysmp... no | |
checking for table... no | |
checking for times... yes | |
checking for wait3... yes | |
checking for wait4... yes | |
checking whether basename is declared... no | |
checking whether ffs is declared... yes | |
checking whether asprintf is declared... no | |
checking whether vasprintf is declared... no | |
checking whether snprintf is declared... yes | |
checking whether vsnprintf is declared... yes | |
checking whether calloc is declared... yes | |
checking whether getenv is declared... yes | |
checking whether getopt is declared... yes | |
checking whether malloc is declared... yes | |
checking whether realloc is declared... yes | |
checking whether sbrk is declared... yes | |
checking whether strverscmp is declared... no | |
checking whether canonicalize_file_name must be declared... yes | |
checking for stdlib.h... (cached) yes | |
checking for unistd.h... (cached) yes | |
checking for getpagesize... (cached) yes | |
checking for working mmap... yes | |
checking for working strncmp... yes | |
configure: updating cache ./config.cache | |
configure: creating ./config.status | |
config.status: creating Makefile | |
config.status: creating testsuite/Makefile | |
config.status: creating config.h | |
config.status: executing default commands | |
mkdir -p -- ./intl | |
Configuring in ./intl | |
configure: creating cache ./config.cache | |
checking whether make sets $(MAKE)... yes | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking whether NLS is requested... yes | |
checking for msgfmt... /usr/bin/msgfmt | |
checking for gmsgfmt... /usr/bin/msgfmt | |
checking for xgettext... /usr/bin/xgettext | |
checking for msgmerge... /usr/bin/msgmerge | |
checking for x86_64-unknown-linux-gnu-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 build system type... x86_64-unknown-linux-gnu | |
checking host system type... x86_64-unknown-linux-gnu | |
checking for x86_64-unknown-linux-gnu-ranlib... ranlib | |
checking for library containing strerror... none required | |
checking how to run the C preprocessor... gcc -E | |
checking for grep that handles long lines and -e... /usr/bin/grep | |
checking for egrep... /usr/bin/grep -E | |
checking for ANSI C header files... yes | |
checking for an ANSI C-conforming const... yes | |
checking for inline... inline | |
checking for sys/types.h... yes | |
checking for sys/stat.h... yes | |
checking for stdlib.h... yes | |
checking for string.h... yes | |
checking for memory.h... yes | |
checking for strings.h... yes | |
checking for inttypes.h... yes | |
checking for stdint.h... yes | |
checking for unistd.h... yes | |
checking for off_t... yes | |
checking for size_t... yes | |
checking for working alloca.h... yes | |
checking for alloca... yes | |
checking for stdlib.h... (cached) yes | |
checking for unistd.h... (cached) yes | |
checking for getpagesize... yes | |
checking for working mmap... yes | |
checking whether we are using the GNU C Library 2.1 or newer... yes | |
checking whether integer division by zero raises SIGFPE... yes | |
checking for inttypes.h... yes | |
checking for stdint.h... yes | |
checking for unsigned long long... yes | |
checking for inttypes.h... yes | |
checking whether the inttypes.h PRIxNN macros are broken... no | |
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 argz.h usability... yes | |
checking argz.h presence... yes | |
checking for argz.h... yes | |
checking limits.h usability... yes | |
checking limits.h presence... yes | |
checking for limits.h... yes | |
checking locale.h usability... yes | |
checking locale.h presence... yes | |
checking for locale.h... yes | |
checking nl_types.h usability... yes | |
checking nl_types.h presence... yes | |
checking for nl_types.h... yes | |
checking malloc.h usability... yes | |
checking malloc.h presence... yes | |
checking for malloc.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 string.h... (cached) yes | |
checking for unistd.h... (cached) yes | |
checking sys/param.h usability... yes | |
checking sys/param.h presence... yes | |
checking for sys/param.h... yes | |
checking for feof_unlocked... yes | |
checking for fgets_unlocked... yes | |
checking for getc_unlocked... yes | |
checking for getcwd... yes | |
checking for getegid... yes | |
checking for geteuid... yes | |
checking for getgid... yes | |
checking for getuid... yes | |
checking for mempcpy... yes | |
checking for munmap... yes | |
checking for putenv... yes | |
checking for setenv... yes | |
checking for setlocale... yes | |
checking for stpcpy... yes | |
checking for strcasecmp... yes | |
checking for strdup... yes | |
checking for strtoul... yes | |
checking for tsearch... yes | |
checking for __argz_count... yes | |
checking for __argz_stringify... yes | |
checking for __argz_next... yes | |
checking for __fsetlocking... yes | |
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 nl_langinfo and CODESET... yes | |
checking for LC_MESSAGES... yes | |
checking for bison... bison | |
checking version of bison... 3.0.4, ok | |
checking whether NLS is requested... yes | |
checking whether included gettext is requested... no | |
checking for GNU gettext in libc... yes | |
checking whether to use NLS... yes | |
checking where the gettext function comes from... libc | |
checking for aclocal... aclocal | |
checking for autoconf... autoconf | |
checking for autoheader... autoheader | |
configure: updating cache ./config.cache | |
configure: creating ./config.status | |
config.status: creating Makefile | |
config.status: creating config.intl | |
config.status: creating config.h | |
config.status: executing default-1 commands | |
mkdir -p -- ./bfd | |
Configuring in ./bfd | |
configure: creating cache ./config.cache | |
checking build system type... x86_64-unknown-linux-gnu | |
checking host system type... x86_64-unknown-linux-gnu | |
checking target system type... x86_64-unknown-linux-gnu | |
checking for x86_64-unknown-linux-gnu-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 library containing strerror... none required | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking whether build environment is sane... yes | |
checking for a thread-safe mkdir -p... /usr/bin/mkdir -p | |
checking for gawk... gawk | |
checking whether make sets $(MAKE)... yes | |
checking for style of include used by make... GNU | |
checking dependency style of gcc... gcc3 | |
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... (cached) gcc | |
checking whether we are using the GNU C compiler... (cached) yes | |
checking whether gcc accepts -g... (cached) yes | |
checking for gcc option to accept ISO C89... (cached) none needed | |
checking how to run the C preprocessor... gcc -E | |
checking for grep that handles long lines and -e... /usr/bin/grep | |
checking for egrep... /usr/bin/grep -E | |
checking for ANSI C header files... yes | |
checking for sys/types.h... yes | |
checking for sys/stat.h... yes | |
checking for stdlib.h... yes | |
checking for string.h... yes | |
checking for memory.h... yes | |
checking for strings.h... yes | |
checking for inttypes.h... yes | |
checking for stdint.h... yes | |
checking for unistd.h... yes | |
checking minix/config.h usability... no | |
checking minix/config.h presence... no | |
checking for minix/config.h... no | |
checking whether it is safe to define __EXTENSIONS__... yes | |
checking how to print strings... printf | |
checking for a sed that does not truncate output... /usr/bin/sed | |
checking for fgrep... /usr/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 for shl_load... no | |
checking for shl_load in -ldld... no | |
checking for dlopen... no | |
checking for dlopen in -ldl... yes | |
checking whether a program can dlopen itself... yes | |
checking whether a statically linked program can dlopen itself... no | |
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 dlfcn.h... (cached) yes | |
checking for windows.h... no | |
checking for library containing dlopen... -ldl | |
checking for special C compiler options needed for large files... no | |
checking for _FILE_OFFSET_BITS value needed for large files... no | |
Setting warning flags = -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow | |
checking whether to enable maintainer-specific portions of Makefiles... no | |
checking whether to install libbfd... yes | |
checking whether NLS is requested... yes | |
checking for catalogs to be installed... da es fi fr id ja ro ru rw sv tr uk vi zh_CN | |
checking whether NLS is requested... yes | |
checking for msgfmt... /usr/bin/msgfmt | |
checking for gmsgfmt... /usr/bin/msgfmt | |
checking for xgettext... /usr/bin/xgettext | |
checking for msgmerge... /usr/bin/msgmerge | |
checking size of long long... 8 | |
checking size of void *... 8 | |
checking size of long... 8 | |
checking alloca.h usability... yes | |
checking alloca.h presence... yes | |
checking for alloca.h... yes | |
checking stddef.h usability... yes | |
checking stddef.h presence... 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 time.h usability... yes | |
checking time.h presence... yes | |
checking for time.h... yes | |
checking for unistd.h... (cached) yes | |
checking wchar.h usability... yes | |
checking wchar.h presence... yes | |
checking for wchar.h... yes | |
checking fcntl.h usability... yes | |
checking fcntl.h presence... yes | |
checking for fcntl.h... yes | |
checking sys/file.h usability... yes | |
checking sys/file.h presence... yes | |
checking for sys/file.h... yes | |
checking sys/time.h usability... yes | |
checking sys/time.h presence... yes | |
checking for sys/time.h... yes | |
checking for sys/stat.h... (cached) yes | |
checking sys/resource.h usability... yes | |
checking sys/resource.h presence... yes | |
checking for sys/resource.h... yes | |
looking for a compliant stdint.h in stdint.h, checking for uintmax_t... yes | |
checking for uintptr_t... yes | |
checking for int_least32_t... yes | |
checking for int_fast32_t... yes | |
checking for uint64_t... yes | |
checking what to include in bfd_stdint.h... stdint.h (already complete) | |
checking whether time.h and sys/time.h may both be included... yes | |
checking for dirent.h that defines DIR... yes | |
checking for library containing opendir... none required | |
checking whether string.h and strings.h may both be included... yes | |
checking for fcntl... yes | |
checking for getpagesize... yes | |
checking for setitimer... yes | |
checking for sysconf... yes | |
checking for fdopen... yes | |
checking for getuid... yes | |
checking for getgid... yes | |
checking for fileno... yes | |
checking for strtoull... yes | |
checking for getrlimit... yes | |
checking whether basename is declared... yes | |
checking whether ftello is declared... yes | |
checking whether ftello64 is declared... yes | |
checking whether fseeko is declared... yes | |
checking whether fseeko64 is declared... yes | |
checking whether ffs is declared... yes | |
checking whether free is declared... yes | |
checking whether getenv is declared... yes | |
checking whether malloc is declared... yes | |
checking whether realloc is declared... yes | |
checking whether stpcpy is declared... yes | |
checking whether strstr is declared... yes | |
checking whether snprintf is declared... yes | |
checking whether vsnprintf is declared... yes | |
checking whether strnlen is declared... yes | |
checking for library containing zlibVersion... -lz | |
checking zlib.h usability... yes | |
checking zlib.h presence... yes | |
checking for zlib.h... yes | |
checking sys/procfs.h usability... yes | |
checking sys/procfs.h presence... yes | |
checking for sys/procfs.h... yes | |
checking for prstatus_t in sys/procfs.h... yes | |
checking for prstatus32_t in sys/procfs.h... no | |
checking for prstatus_t.pr_who in sys/procfs.h... no | |
checking for prstatus32_t.pr_who in sys/procfs.h... no | |
checking for pstatus_t in sys/procfs.h... no | |
checking for pxstatus_t in sys/procfs.h... no | |
checking for pstatus32_t in sys/procfs.h... no | |
checking for prpsinfo_t in sys/procfs.h... yes | |
checking for prpsinfo_t.pr_pid in sys/procfs.h... yes | |
checking for prpsinfo32_t in sys/procfs.h... no | |
checking for prpsinfo32_t.pr_pid in sys/procfs.h... no | |
checking for psinfo_t in sys/procfs.h... no | |
checking for psinfo_t.pr_pid in sys/procfs.h... no | |
checking for psinfo32_t in sys/procfs.h... no | |
checking for psinfo32_t.pr_pid in sys/procfs.h... no | |
checking for lwpstatus_t in sys/procfs.h... no | |
checking for lwpxstatus_t in sys/procfs.h... no | |
checking for lwpstatus_t.pr_context in sys/procfs.h... no | |
checking for lwpstatus_t.pr_reg in sys/procfs.h... no | |
checking for lwpstatus_t.pr_fpreg in sys/procfs.h... no | |
checking for win32_pstatus_t in sys/procfs.h... no | |
checking linker --as-needed support... yes | |
checking for cos in -lm... yes | |
checking for gcc version with buggy 64-bit support... no | |
checking for ftello... yes | |
checking for ftello64... yes | |
checking for fseeko... yes | |
checking for fseeko64... yes | |
checking for fopen64... yes | |
checking size of off_t... 8 | |
checking file_ptr type... BFD_HOST_64_BIT | |
checking for stdlib.h... (cached) yes | |
checking for unistd.h... (cached) yes | |
checking for getpagesize... (cached) yes | |
checking for working mmap... yes | |
checking for madvise... yes | |
checking for mprotect... yes | |
configure: updating cache ./config.cache | |
configure: creating ./config.status | |
config.status: creating Makefile | |
config.status: creating doc/Makefile | |
config.status: creating bfd-in3.h | |
config.status: creating po/Makefile.in | |
config.status: creating config.h | |
config.status: executing depfiles commands | |
config.status: executing libtool commands | |
config.status: executing default-1 commands | |
config.status: executing bfd_stdint.h commands | |
config.status: executing default commands | |
mkdir -p -- ./opcodes | |
Configuring in ./opcodes | |
configure: creating cache ./config.cache | |
checking build system type... x86_64-unknown-linux-gnu | |
checking host system type... x86_64-unknown-linux-gnu | |
checking target system type... x86_64-unknown-linux-gnu | |
checking for x86_64-unknown-linux-gnu-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 library containing strerror... none required | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking whether build environment is sane... yes | |
checking for a thread-safe mkdir -p... /usr/bin/mkdir -p | |
checking for gawk... gawk | |
checking whether make sets $(MAKE)... yes | |
checking for style of include used by make... GNU | |
checking dependency style of gcc... gcc3 | |
checking for x86_64-unknown-linux-gnu-gcc... (cached) gcc | |
checking whether we are using the GNU C compiler... (cached) yes | |
checking whether gcc accepts -g... (cached) yes | |
checking for gcc option to accept ISO C89... (cached) none needed | |
checking how to run the C preprocessor... gcc -E | |
checking for grep that handles long lines and -e... /usr/bin/grep | |
checking for egrep... /usr/bin/grep -E | |
checking for ANSI C header files... yes | |
checking for sys/types.h... yes | |
checking for sys/stat.h... yes | |
checking for stdlib.h... yes | |
checking for string.h... yes | |
checking for memory.h... yes | |
checking for strings.h... yes | |
checking for inttypes.h... yes | |
checking for stdint.h... yes | |
checking for unistd.h... yes | |
checking minix/config.h usability... no | |
checking minix/config.h presence... no | |
checking for minix/config.h... no | |
checking whether it is safe to define __EXTENSIONS__... yes | |
checking for x86_64-unknown-linux-gnu-ar... ar | |
checking for x86_64-unknown-linux-gnu-ranlib... ranlib | |
checking how to print strings... printf | |
checking for a sed that does not truncate output... /usr/bin/sed | |
checking for fgrep... /usr/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 | |
Setting warning flags = -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow | |
checking whether gcc supports -Wmissing-field-initializers... yes | |
checking whether to enable maintainer-specific portions of Makefiles... no | |
checking whether to install libbfd... yes | |
checking whether NLS is requested... yes | |
checking for catalogs to be installed... da de es fi fr ga id it nl pt_BR ro sv tr uk vi zh_CN | |
checking whether NLS is requested... yes | |
checking for msgfmt... /usr/bin/msgfmt | |
checking for gmsgfmt... /usr/bin/msgfmt | |
checking for xgettext... /usr/bin/xgettext | |
checking for msgmerge... /usr/bin/msgmerge | |
checking for string.h... (cached) yes | |
checking for strings.h... (cached) yes | |
checking for stdlib.h... (cached) yes | |
checking limits.h usability... yes | |
checking limits.h presence... yes | |
checking for limits.h... yes | |
checking whether string.h and strings.h may both be included... yes | |
checking whether basename is declared... yes | |
checking whether stpcpy is declared... yes | |
checking for sigsetjmp... | |
checking linker --as-needed support... yes | |
checking for cos in -lm... yes | |
configure: updating cache ./config.cache | |
configure: creating ./config.status | |
config.status: creating Makefile | |
config.status: creating po/Makefile.in | |
config.status: creating config.h | |
config.status: executing depfiles commands | |
config.status: executing libtool commands | |
config.status: executing default-1 commands | |
config.status: creating po/POTFILES | |
config.status: creating po/Makefile | |
mkdir -p -- ./binutils | |
Configuring in ./binutils | |
configure: creating cache ./config.cache | |
checking build system type... x86_64-unknown-linux-gnu | |
checking host system type... x86_64-unknown-linux-gnu | |
checking target system type... x86_64-unknown-linux-gnu | |
checking for x86_64-unknown-linux-gnu-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 library containing strerror... none required | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking whether build environment is sane... yes | |
checking for a thread-safe mkdir -p... /usr/bin/mkdir -p | |
checking for gawk... gawk | |
checking whether make sets $(MAKE)... yes | |
checking for style of include used by make... GNU | |
checking dependency style of gcc... gcc3 | |
checking for x86_64-unknown-linux-gnu-gcc... (cached) gcc | |
checking whether we are using the GNU C compiler... (cached) yes | |
checking whether gcc accepts -g... (cached) yes | |
checking for gcc option to accept ISO C89... (cached) none needed | |
checking how to run the C preprocessor... gcc -E | |
checking for grep that handles long lines and -e... /usr/bin/grep | |
checking for egrep... /usr/bin/grep -E | |
checking for ANSI C header files... yes | |
checking for sys/types.h... yes | |
checking for sys/stat.h... yes | |
checking for stdlib.h... yes | |
checking for string.h... yes | |
checking for memory.h... yes | |
checking for strings.h... yes | |
checking for inttypes.h... yes | |
checking for stdint.h... yes | |
checking for unistd.h... yes | |
checking minix/config.h usability... no | |
checking minix/config.h presence... no | |
checking for minix/config.h... no | |
checking whether it is safe to define __EXTENSIONS__... yes | |
checking how to print strings... printf | |
checking for a sed that does not truncate output... /usr/bin/sed | |
checking for fgrep... /usr/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... 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... 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 for dlfcn.h... (cached) yes | |
checking for windows.h... no | |
checking for library containing dlopen... -ldl | |
checking for special C compiler options needed for large files... no | |
checking for _FILE_OFFSET_BITS value needed for large files... no | |
Setting warning flags = -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow | |
checking for bison... bison -y | |
checking for flex... flex | |
checking lex output file root... lex.yy | |
checking lex library... -lfl | |
checking whether yytext is a pointer... yes | |
checking whether NLS is requested... yes | |
checking for catalogs to be installed... bg da es fi fr hr id it ja ro ru rw sk sv tr uk vi zh_CN zh_TW | |
checking whether NLS is requested... yes | |
checking for msgfmt... /usr/bin/msgfmt | |
checking for gmsgfmt... /usr/bin/msgfmt | |
checking for xgettext... /usr/bin/xgettext | |
checking for msgmerge... /usr/bin/msgmerge | |
checking whether to enable maintainer-specific portions of Makefiles... no | |
checking for x86_64-unknown-linux-gnu-ranlib... (cached) ranlib | |
checking for string.h... (cached) yes | |
checking for strings.h... (cached) yes | |
checking for stdlib.h... (cached) yes | |
checking for unistd.h... (cached) yes | |
checking fcntl.h usability... yes | |
checking fcntl.h presence... yes | |
checking for fcntl.h... yes | |
checking sys/file.h usability... yes | |
checking sys/file.h presence... yes | |
checking for sys/file.h... yes | |
checking limits.h usability... yes | |
checking limits.h presence... yes | |
checking for limits.h... yes | |
checking locale.h usability... yes | |
checking locale.h presence... yes | |
checking for locale.h... yes | |
checking sys/param.h usability... yes | |
checking sys/param.h presence... yes | |
checking for sys/param.h... yes | |
checking wchar.h usability... yes | |
checking wchar.h presence... yes | |
checking for wchar.h... yes | |
checking for sys/wait.h that is POSIX.1 compatible... yes | |
checking whether string.h and strings.h may both be included... yes | |
checking for working alloca.h... yes | |
checking for alloca... yes | |
checking for sbrk... yes | |
checking for utimes... yes | |
checking for setmode... no | |
checking for getc_unlocked... yes | |
checking for strcoll... yes | |
checking for setlocale... yes | |
checking for mkstemp... yes | |
checking for mkdtemp... yes | |
checking for mbstate_t... yes | |
checking for library containing frexp... none required | |
checking for LC_MESSAGES... yes | |
checking for time_t in time.h... yes | |
checking for time_t in sys/types.h... yes | |
checking for a known getopt prototype in unistd.h... yes | |
checking for utime.h... yes | |
checking whether environ is declared... yes | |
checking whether fprintf is declared... yes | |
checking whether getc_unlocked is declared... yes | |
checking whether getenv is declared... yes | |
checking whether sbrk is declared... yes | |
checking whether snprintf is declared... yes | |
checking whether stpcpy is declared... yes | |
checking whether strnlen is declared... yes | |
checking whether strstr is declared... yes | |
checking whether vsnprintf is declared... yes | |
checking for library containing zlibVersion... -lz | |
checking zlib.h usability... yes | |
checking zlib.h presence... yes | |
checking for zlib.h... yes | |
checking iconv.h usability... yes | |
checking iconv.h presence... yes | |
checking for iconv.h... yes | |
checking for ld used by GCC... ld -m elf_x86_64 | |
checking if the linker (ld -m elf_x86_64) 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); | |
configure: updating cache ./config.cache | |
configure: creating ./config.status | |
config.status: creating Makefile | |
config.status: creating doc/Makefile | |
config.status: creating po/Makefile.in | |
config.status: creating config.h | |
config.status: executing depfiles commands | |
config.status: executing libtool commands | |
config.status: executing default-1 commands | |
config.status: creating po/POTFILES | |
config.status: creating po/Makefile | |
mkdir -p -- ./etc | |
Configuring in ./etc | |
configure: creating cache ./config.cache | |
checking for a BSD-compatible install... /usr/bin/install -c | |
configure: updating cache ./config.cache | |
configure: creating ./config.status | |
config.status: creating Makefile | |
mkdir -p -- ./gas | |
Configuring in ./gas | |
configure: creating cache ./config.cache | |
checking build system type... x86_64-unknown-linux-gnu | |
checking host system type... x86_64-unknown-linux-gnu | |
checking target system type... x86_64-unknown-linux-gnu | |
checking for x86_64-unknown-linux-gnu-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 library containing strerror... none required | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking whether build environment is sane... yes | |
checking for a thread-safe mkdir -p... /usr/bin/mkdir -p | |
checking for gawk... gawk | |
checking whether make sets $(MAKE)... yes | |
checking for style of include used by make... GNU | |
checking dependency style of gcc... gcc3 | |
checking for x86_64-unknown-linux-gnu-gcc... (cached) gcc | |
checking whether we are using the GNU C compiler... (cached) yes | |
checking whether gcc accepts -g... (cached) yes | |
checking for gcc option to accept ISO C89... (cached) none needed | |
checking how to run the C preprocessor... gcc -E | |
checking for grep that handles long lines and -e... /usr/bin/grep | |
checking for egrep... /usr/bin/grep -E | |
checking for ANSI C header files... yes | |
checking for sys/types.h... yes | |
checking for sys/stat.h... yes | |
checking for stdlib.h... yes | |
checking for string.h... yes | |
checking for memory.h... yes | |
checking for strings.h... yes | |
checking for inttypes.h... yes | |
checking for stdint.h... yes | |
checking for unistd.h... yes | |
checking minix/config.h usability... no | |
checking minix/config.h presence... no | |
checking for minix/config.h... no | |
checking whether it is safe to define __EXTENSIONS__... yes | |
checking how to print strings... printf | |
checking for a sed that does not truncate output... /usr/bin/sed | |
checking for fgrep... /usr/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... 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... 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 for dlfcn.h... (cached) yes | |
checking for windows.h... no | |
checking for library containing dlopen... -ldl | |
checking for special C compiler options needed for large files... no | |
checking for _FILE_OFFSET_BITS value needed for large files... no | |
Setting warning flags = -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow | |
checking whether byte ordering is bigendian... no | |
checking for bison... bison -y | |
checking for flex... flex | |
checking lex output file root... lex.yy | |
checking lex library... -lfl | |
checking whether yytext is a pointer... yes | |
checking whether NLS is requested... yes | |
checking for catalogs to be installed... es fi fr id ja ru rw tr | |
checking whether NLS is requested... yes | |
checking for msgfmt... /usr/bin/msgfmt | |
checking for gmsgfmt... /usr/bin/msgfmt | |
checking for xgettext... /usr/bin/xgettext | |
checking for msgmerge... /usr/bin/msgmerge | |
checking whether to enable maintainer-specific portions of Makefiles... no | |
checking for string.h... (cached) yes | |
checking for stdlib.h... (cached) yes | |
checking for memory.h... (cached) yes | |
checking for strings.h... (cached) yes | |
checking for unistd.h... (cached) yes | |
checking errno.h usability... yes | |
checking errno.h presence... yes | |
checking for errno.h... yes | |
checking for sys/types.h... (cached) yes | |
checking limits.h usability... yes | |
checking limits.h presence... yes | |
checking for limits.h... yes | |
checking locale.h usability... yes | |
checking locale.h presence... yes | |
checking for locale.h... yes | |
checking time.h usability... yes | |
checking time.h presence... yes | |
checking for time.h... yes | |
checking for sys/stat.h... (cached) yes | |
checking whether string.h and strings.h may both be included... yes | |
checking whether compiling a cross-assembler... no | |
checking for working alloca.h... yes | |
checking for alloca... yes | |
checking for inline... inline | |
checking for unlink... yes | |
checking for sbrk... yes | |
checking for setlocale... yes | |
checking for LC_MESSAGES... yes | |
checking for working assert macro... yes | |
checking whether declaration is required for errno... no | |
checking for a known getopt prototype in unistd.h... yes | |
checking whether declaration is required for environ... no | |
checking whether declaration is required for ffs... no | |
checking whether declaration is required for free... no | |
checking whether declaration is required for malloc... no | |
checking whether declaration is required for sbrk... no | |
checking whether declaration is required for strstr... no | |
checking whether free is declared... yes | |
checking whether getenv is declared... yes | |
checking whether malloc is declared... yes | |
checking whether mempcpy is declared... yes | |
checking whether realloc is declared... yes | |
checking whether stpcpy is declared... yes | |
checking whether strstr is declared... yes | |
checking whether vsnprintf is declared... yes | |
checking for library containing zlibVersion... -lz | |
checking zlib.h usability... yes | |
checking zlib.h presence... yes | |
checking for zlib.h... yes | |
checking for struct tm.tm_gmtoff in time.h... yes | |
checking for struct stat.st_mtim.tv_sec in sys/stat.h... yes | |
checking for struct stat.st_mtim.tv_nsec in sys/stat.h... yes | |
configure: updating cache ./config.cache | |
configure: creating ./config.status | |
config.status: creating .gdbinit | |
config.status: creating Makefile | |
config.status: creating doc/Makefile | |
config.status: creating po/Makefile.in | |
config.status: creating config.h | |
config.status: executing depfiles commands | |
config.status: executing libtool commands | |
config.status: executing default-1 commands | |
config.status: creating po/POTFILES | |
config.status: creating po/Makefile | |
config.status: executing default commands | |
mkdir -p -- ./gold | |
Configuring in ./gold | |
configure: creating cache ./config.cache | |
checking build system type... x86_64-unknown-linux-gnu | |
checking host system type... x86_64-unknown-linux-gnu | |
checking target system type... x86_64-unknown-linux-gnu | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking whether build environment is sane... yes | |
checking for a thread-safe mkdir -p... /usr/bin/mkdir -p | |
checking for gawk... gawk | |
checking whether make sets $(MAKE)... yes | |
checking for x86_64-unknown-linux-gnu-nm... nm | |
checking for x86_64-unknown-linux-gnu-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 style of include used by make... GNU | |
checking dependency style of gcc... gcc3 | |
checking whether we are using the GNU C++ compiler... yes | |
checking whether g++ accepts -g... yes | |
checking dependency style of g++... gcc3 | |
checking for bison... bison -y | |
checking for x86_64-unknown-linux-gnu-ranlib... ranlib | |
checking whether ln -s works... yes | |
checking how to run the C preprocessor... gcc -E | |
checking for grep that handles long lines and -e... /usr/bin/grep | |
checking for egrep... /usr/bin/grep -E | |
checking for ANSI C header files... yes | |
checking for sys/types.h... yes | |
checking for sys/stat.h... yes | |
checking for stdlib.h... yes | |
checking for string.h... yes | |
checking for memory.h... yes | |
checking for strings.h... yes | |
checking for inttypes.h... yes | |
checking for stdint.h... yes | |
checking for unistd.h... yes | |
checking minix/config.h usability... no | |
checking minix/config.h presence... no | |
checking for minix/config.h... no | |
checking whether it is safe to define __EXTENSIONS__... yes | |
checking whether NLS is requested... yes | |
checking for catalogs to be installed... es fi id it vi | |
checking whether NLS is requested... yes | |
checking for msgfmt... /usr/bin/msgfmt | |
checking for gmsgfmt... /usr/bin/msgfmt | |
checking for xgettext... /usr/bin/xgettext | |
checking for msgmerge... /usr/bin/msgmerge | |
checking whether byte ordering is bigendian... no | |
checking whether static linking works... yes | |
checking for gcc >= 4.1... yes | |
checking whether gcc supports -fmerge-constants... yes | |
checking for thread support... yes | |
checking for glibc >= 2.4... yes | |
checking for omp support... yes | |
checking for glibc >= 2.9... yes | |
checking for -frandom-seed support... yes | |
checking for glibc ifunc support... both | |
Setting warning flags = -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow | |
checking sys/mman.h usability... yes | |
checking sys/mman.h presence... yes | |
checking for sys/mman.h... yes | |
checking for chsize... no | |
checking for mmap... yes | |
checking for pread... yes | |
checking for ftruncate... yes | |
checking for ffsll... yes | |
checking mremap with MREMAP_MAYMOVE... yes | |
checking for library containing zlibVersion... -lz | |
checking zlib.h usability... yes | |
checking zlib.h presence... yes | |
checking for zlib.h... yes | |
checking whether basename is declared... yes | |
checking whether ffs is declared... yes | |
checking whether asprintf is declared... yes | |
checking whether vasprintf is declared... yes | |
checking whether snprintf is declared... yes | |
checking whether vsnprintf is declared... yes | |
checking whether strverscmp is declared... yes | |
checking how to run the C++ preprocessor... g++ -E | |
checking unordered_set usability... no | |
checking unordered_set presence... no | |
checking for unordered_set... no | |
checking unordered_map usability... no | |
checking unordered_map presence... no | |
checking for unordered_map... no | |
checking tr1/unordered_set usability... yes | |
checking tr1/unordered_set presence... yes | |
checking for tr1/unordered_set... yes | |
checking tr1/unordered_map usability... yes | |
checking tr1/unordered_map presence... yes | |
checking for tr1/unordered_map... yes | |
checking ext/hash_map usability... yes | |
checking ext/hash_map presence... yes | |
checking for ext/hash_map... yes | |
checking ext/hash_set usability... yes | |
checking ext/hash_set presence... yes | |
checking for ext/hash_set... yes | |
checking byteswap.h usability... yes | |
checking byteswap.h presence... yes | |
checking for byteswap.h... yes | |
checking windows.h usability... no | |
checking windows.h presence... no | |
checking for windows.h... no | |
checking dlfcn.h usability... yes | |
checking dlfcn.h presence... yes | |
checking for dlfcn.h... yes | |
checking for library containing dlopen... -ldl | |
checking for mallinfo... yes | |
checking for posix_fallocate... yes | |
checking for fallocate... yes | |
checking for readv... yes | |
checking for sysconf... yes | |
checking for times... yes | |
checking whether basename is declared... (cached) yes | |
checking whether ffs is declared... (cached) yes | |
checking whether asprintf is declared... (cached) yes | |
checking whether vasprintf is declared... (cached) yes | |
checking whether snprintf is declared... (cached) yes | |
checking whether vsnprintf is declared... (cached) yes | |
checking whether strverscmp is declared... (cached) yes | |
checking whether strndup is declared... yes | |
checking whether memmem is declared... yes | |
checking whether ::std::tr1::unordered_map::rehash is usable.... yes | |
checking whether std::tr1::hash<off_t> is defined... yes | |
checking whether we can use attributes with template functions... yes | |
checking for struct stat::st_mtim.... yes | |
checking locale.h usability... yes | |
checking locale.h presence... yes | |
checking for locale.h... yes | |
checking for setlocale... yes | |
checking for LC_MESSAGES... yes | |
checking whether to enable maintainer-specific portions of Makefiles... no | |
configure: updating cache ./config.cache | |
configure: creating ./config.status | |
config.status: creating Makefile | |
config.status: creating testsuite/Makefile | |
config.status: creating po/Makefile.in | |
config.status: creating config.h | |
config.status: executing depfiles commands | |
config.status: executing default-1 commands | |
config.status: creating po/POTFILES | |
config.status: creating po/Makefile | |
mkdir -p -- ./gprof | |
Configuring in ./gprof | |
configure: creating cache ./config.cache | |
checking build system type... x86_64-unknown-linux-gnu | |
checking host system type... x86_64-unknown-linux-gnu | |
checking target system type... x86_64-unknown-linux-gnu | |
checking for x86_64-unknown-linux-gnu-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 library containing strerror... none required | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking whether build environment is sane... yes | |
checking for a thread-safe mkdir -p... /usr/bin/mkdir -p | |
checking for gawk... gawk | |
checking whether make sets $(MAKE)... yes | |
checking for style of include used by make... GNU | |
checking dependency style of gcc... gcc3 | |
checking for x86_64-unknown-linux-gnu-gcc... (cached) gcc | |
checking whether we are using the GNU C compiler... (cached) yes | |
checking whether gcc accepts -g... (cached) yes | |
checking for gcc option to accept ISO C89... (cached) none needed | |
checking how to run the C preprocessor... gcc -E | |
checking for grep that handles long lines and -e... /usr/bin/grep | |
checking for egrep... /usr/bin/grep -E | |
checking for ANSI C header files... yes | |
checking for sys/types.h... yes | |
checking for sys/stat.h... yes | |
checking for stdlib.h... yes | |
checking for string.h... yes | |
checking for memory.h... yes | |
checking for strings.h... yes | |
checking for inttypes.h... yes | |
checking for stdint.h... yes | |
checking for unistd.h... yes | |
checking minix/config.h usability... no | |
checking minix/config.h presence... no | |
checking for minix/config.h... no | |
checking whether it is safe to define __EXTENSIONS__... yes | |
checking how to print strings... printf | |
checking for a sed that does not truncate output... /usr/bin/sed | |
checking for fgrep... /usr/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... 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... 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 for dlfcn.h... (cached) yes | |
checking for windows.h... no | |
checking for library containing dlopen... -ldl | |
checking for special C compiler options needed for large files... no | |
checking for _FILE_OFFSET_BITS value needed for large files... no | |
checking for setmode... no | |
checking whether NLS is requested... yes | |
checking for catalogs to be installed... bg da de eo es fi fr ga id it ja ms nl pt_BR ro ru rw sr sv tr uk vi | |
checking whether NLS is requested... yes | |
checking for msgfmt... /usr/bin/msgfmt | |
checking for gmsgfmt... /usr/bin/msgfmt | |
checking for xgettext... /usr/bin/xgettext | |
checking for msgmerge... /usr/bin/msgmerge | |
checking whether to enable maintainer-specific portions of Makefiles... no | |
checking sys/gmon_out.h usability... yes | |
checking sys/gmon_out.h presence... yes | |
checking for sys/gmon_out.h... yes | |
checking for a known getopt prototype in unistd.h... yes | |
checking for library containing fabs... -lm | |
Setting warning flags = -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow | |
configure: updating cache ./config.cache | |
configure: creating ./config.status | |
config.status: creating Makefile | |
config.status: creating po/Makefile.in | |
config.status: creating gconfig.h | |
config.status: executing depfiles commands | |
config.status: executing libtool commands | |
config.status: executing default-1 commands | |
config.status: creating po/POTFILES | |
config.status: creating po/Makefile | |
mkdir -p -- ./ld | |
Configuring in ./ld | |
configure: creating cache ./config.cache | |
checking build system type... x86_64-unknown-linux-gnu | |
checking host system type... x86_64-unknown-linux-gnu | |
checking target system type... x86_64-unknown-linux-gnu | |
checking for x86_64-unknown-linux-gnu-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 library containing strerror... none required | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking whether build environment is sane... yes | |
checking for a thread-safe mkdir -p... /usr/bin/mkdir -p | |
checking for gawk... gawk | |
checking whether make sets $(MAKE)... yes | |
checking for style of include used by make... GNU | |
checking dependency style of gcc... gcc3 | |
checking whether to enable maintainer-specific portions of Makefiles... no | |
checking for x86_64-unknown-linux-gnu-gcc... (cached) gcc | |
checking whether we are using the GNU C compiler... (cached) yes | |
checking whether gcc accepts -g... (cached) yes | |
checking for gcc option to accept ISO C89... (cached) none needed | |
checking whether we are using the GNU C++ compiler... yes | |
checking whether g++ accepts -g... yes | |
checking dependency style of g++... gcc3 | |
checking how to run the C preprocessor... gcc -E | |
checking for grep that handles long lines and -e... /usr/bin/grep | |
checking for egrep... /usr/bin/grep -E | |
checking for ANSI C header files... yes | |
checking for sys/types.h... yes | |
checking for sys/stat.h... yes | |
checking for stdlib.h... yes | |
checking for string.h... yes | |
checking for memory.h... yes | |
checking for strings.h... yes | |
checking for inttypes.h... yes | |
checking for stdint.h... yes | |
checking for unistd.h... yes | |
checking minix/config.h usability... no | |
checking minix/config.h presence... no | |
checking for minix/config.h... no | |
checking whether it is safe to define __EXTENSIONS__... yes | |
checking how to print strings... printf | |
checking for a sed that does not truncate output... /usr/bin/sed | |
checking for fgrep... /usr/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... 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... 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 for dlfcn.h... (cached) yes | |
checking for windows.h... no | |
checking for library containing dlopen... -ldl | |
checking for special C compiler options needed for large files... no | |
checking for _FILE_OFFSET_BITS value needed for large files... no | |
Setting warning flags = -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow | |
checking for LC_MESSAGES... yes | |
checking whether NLS is requested... yes | |
checking for catalogs to be installed... bg da es fi fr ga id it ja sv tr uk vi zh_CN zh_TW | |
checking whether NLS is requested... yes | |
checking for msgfmt... /usr/bin/msgfmt | |
checking for gmsgfmt... /usr/bin/msgfmt | |
checking for xgettext... /usr/bin/xgettext | |
checking for msgmerge... /usr/bin/msgmerge | |
checking for bison... bison -y | |
checking for flex... flex | |
checking lex output file root... lex.yy | |
checking lex library... -lfl | |
checking whether yytext is a pointer... yes | |
checking whether to enable maintainer-specific portions of Makefiles... no | |
checking how to compare bootstrapped objects... cmp --ignore-initial=16 $$f1 $$f2 | |
checking for string.h... (cached) yes | |
checking for strings.h... (cached) yes | |
checking for stdlib.h... (cached) yes | |
checking for unistd.h... (cached) yes | |
checking elf-hints.h usability... no | |
checking elf-hints.h presence... no | |
checking for elf-hints.h... no | |
checking limits.h usability... yes | |
checking limits.h presence... yes | |
checking for limits.h... yes | |
checking locale.h usability... yes | |
checking locale.h presence... yes | |
checking for locale.h... yes | |
checking sys/param.h usability... yes | |
checking sys/param.h presence... yes | |
checking for sys/param.h... yes | |
checking fcntl.h usability... yes | |
checking fcntl.h presence... yes | |
checking for fcntl.h... yes | |
checking sys/file.h usability... yes | |
checking sys/file.h presence... yes | |
checking for sys/file.h... yes | |
checking sys/time.h usability... yes | |
checking sys/time.h presence... yes | |
checking for sys/time.h... yes | |
checking for sys/stat.h... (cached) yes | |
checking whether string.h and strings.h may both be included... yes | |
checking for glob... yes | |
checking for mkstemp... yes | |
checking for realpath... yes | |
checking for sbrk... yes | |
checking for setlocale... yes | |
checking for waitpid... yes | |
checking for open... yes | |
checking for lseek... yes | |
checking for close... yes | |
checking for dirent.h that defines DIR... yes | |
checking for library containing opendir... none required | |
checking for library containing dlopen... (cached) -ldl | |
checking for .preinit_array/.init_array/.fini_array support... yes | |
checking for a known getopt prototype in unistd.h... yes | |
checking whether strstr is declared... yes | |
checking whether free is declared... yes | |
checking whether sbrk is declared... yes | |
checking whether getenv is declared... yes | |
checking whether environ is declared... yes | |
checking for library containing zlibVersion... -lz | |
checking zlib.h usability... yes | |
checking zlib.h presence... yes | |
checking for zlib.h... yes | |
checking whether ANSI C string concatenation works... yes | |
checking size of void *... 8 | |
configure: updating cache ./config.cache | |
configure: creating ./config.status | |
config.status: creating Makefile | |
config.status: creating po/Makefile.in | |
config.status: creating config.h | |
config.status: executing depfiles commands | |
config.status: executing libtool commands | |
config.status: executing default-1 commands | |
config.status: creating po/POTFILES | |
config.status: creating po/Makefile | |
mkdir -p -- ./libdecnumber | |
Configuring in ./libdecnumber | |
configure: creating cache ./config.cache | |
checking whether make sets $(MAKE)... yes | |
checking for x86_64-unknown-linux-gnu-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 x86_64-unknown-linux-gnu-ranlib... ranlib | |
checking for aclocal... aclocal | |
checking for autoconf... autoconf | |
checking for autoheader... autoheader | |
checking whether gcc supports -W... yes | |
checking whether gcc supports -Wall... yes | |
checking whether gcc supports -Wwrite-strings... yes | |
checking whether gcc supports -Wstrict-prototypes... yes | |
checking whether gcc supports -Wmissing-prototypes... yes | |
checking whether gcc supports -Wold-style-definition... yes | |
checking whether gcc supports -Wmissing-format-attribute... yes | |
checking whether gcc supports -Wcast-qual... yes | |
checking whether gcc supports -pedantic -Wlong-long... yes | |
checking how to run the C preprocessor... gcc -E | |
checking for grep that handles long lines and -e... /usr/bin/grep | |
checking for egrep... /usr/bin/grep -E | |
checking for ANSI C header files... yes | |
checking for sys/types.h... yes | |
checking for sys/stat.h... yes | |
checking for stdlib.h... yes | |
checking for string.h... yes | |
checking for memory.h... yes | |
checking for strings.h... yes | |
checking for inttypes.h... yes | |
checking for stdint.h... yes | |
checking for unistd.h... yes | |
checking ctype.h usability... yes | |
checking ctype.h presence... yes | |
checking for ctype.h... yes | |
checking stddef.h usability... yes | |
checking stddef.h presence... yes | |
checking for stddef.h... yes | |
checking for string.h... (cached) yes | |
checking stdio.h usability... yes | |
checking stdio.h presence... yes | |
checking for stdio.h... yes | |
looking for a compliant stdint.h in stdint.h, checking for uintmax_t... yes | |
checking for uintptr_t... yes | |
checking for int_least32_t... yes | |
checking for int_fast32_t... yes | |
checking for uint64_t... yes | |
checking what to include in gstdint.h... stdint.h (already complete) | |
checking for an ANSI C-conforming const... yes | |
checking for off_t... yes | |
checking size of int... 4 | |
checking size of long... 8 | |
checking for ANSI C header files... (cached) yes | |
checking build system type... x86_64-unknown-linux-gnu | |
checking host system type... x86_64-unknown-linux-gnu | |
checking target system type... x86_64-unknown-linux-gnu | |
checking for decimal floating point... bid | |
checking whether byte ordering is bigendian... no | |
configure: updating cache ./config.cache | |
configure: creating ./config.status | |
config.status: creating Makefile | |
config.status: creating config.h | |
config.status: executing gstdint.h commands | |
mkdir -p -- ./readline | |
Configuring in ./readline | |
configure: creating cache ./config.cache | |
checking build system type... x86_64-unknown-linux-gnu | |
checking host system type... x86_64-unknown-linux-gnu | |
Beginning configuration for readline-6.2 for x86_64-unknown-linux-gnu | |
checking whether make sets $(MAKE)... yes | |
checking for x86_64-unknown-linux-gnu-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 how to run the C preprocessor... gcc -E | |
checking for grep that handles long lines and -e... /usr/bin/grep | |
checking for egrep... /usr/bin/grep -E | |
checking for ANSI C header files... yes | |
checking for sys/types.h... yes | |
checking for sys/stat.h... yes | |
checking for stdlib.h... yes | |
checking for string.h... yes | |
checking for memory.h... yes | |
checking for strings.h... yes | |
checking for inttypes.h... yes | |
checking for stdint.h... yes | |
checking for unistd.h... yes | |
checking minix/config.h usability... no | |
checking minix/config.h presence... no | |
checking for minix/config.h... no | |
checking whether it is safe to define __EXTENSIONS__... yes | |
checking whether gcc needs -traditional... no | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking for ar... ar | |
checking for x86_64-unknown-linux-gnu-ranlib... ranlib | |
checking for an ANSI C-conforming const... yes | |
checking for function prototypes... yes | |
checking whether char is unsigned... no | |
checking for working volatile... yes | |
checking return type of signal handlers... void | |
checking for size_t... yes | |
checking for ssize_t... yes | |
checking for ANSI C header files... (cached) yes | |
checking whether stat file-mode macros are broken... no | |
checking for dirent.h that defines DIR... yes | |
checking for library containing opendir... none required | |
checking for fcntl... yes | |
checking for kill... yes | |
checking for lstat... yes | |
checking for memmove... yes | |
checking for putenv... yes | |
checking for select... yes | |
checking for setenv... yes | |
checking for setlocale... yes | |
checking for strcasecmp... yes | |
checking for strpbrk... yes | |
checking for tcgetattr... yes | |
checking for vsnprintf... yes | |
checking for isascii... yes | |
checking for isxdigit... yes | |
checking for getpwent... yes | |
checking for getpwnam... yes | |
checking for getpwuid... yes | |
checking for working strcoll... yes | |
checking fcntl.h usability... yes | |
checking fcntl.h presence... yes | |
checking for fcntl.h... yes | |
checking for unistd.h... (cached) yes | |
checking for stdlib.h... (cached) yes | |
checking varargs.h usability... no | |
checking varargs.h presence... no | |
checking for varargs.h... no | |
checking stdarg.h usability... yes | |
checking stdarg.h presence... yes | |
checking for stdarg.h... yes | |
checking for string.h... (cached) yes | |
checking for strings.h... (cached) yes | |
checking limits.h usability... yes | |
checking limits.h presence... yes | |
checking for limits.h... yes | |
checking locale.h usability... yes | |
checking locale.h presence... yes | |
checking for locale.h... yes | |
checking pwd.h usability... yes | |
checking pwd.h presence... yes | |
checking for pwd.h... yes | |
checking for memory.h... (cached) yes | |
checking termcap.h usability... yes | |
checking termcap.h presence... yes | |
checking for termcap.h... yes | |
checking termios.h usability... yes | |
checking termios.h presence... yes | |
checking for termios.h... yes | |
checking termio.h usability... yes | |
checking termio.h presence... yes | |
checking for termio.h... yes | |
checking sys/pte.h usability... no | |
checking sys/pte.h presence... no | |
checking for sys/pte.h... no | |
checking sys/stream.h usability... no | |
checking sys/stream.h presence... no | |
checking for sys/stream.h... no | |
checking sys/select.h usability... yes | |
checking sys/select.h presence... yes | |
checking for sys/select.h... yes | |
checking sys/file.h usability... yes | |
checking sys/file.h presence... yes | |
checking for sys/file.h... yes | |
checking for sys/ptem.h... no | |
checking for special C compiler options needed for large files... no | |
checking for _FILE_OFFSET_BITS value needed for large files... no | |
checking for type of signal functions... posix | |
checking if signal handlers must be reinstalled when invoked... no | |
checking for presence of POSIX-style sigsetjmp/siglongjmp... present | |
checking for lstat... yes | |
checking whether or not strcoll and strcmp differ... no | |
checking whether the ctype macros accept non-ascii characters... yes | |
checking whether getpw functions are declared in pwd.h... yes | |
checking whether termios.h defines TIOCGWINSZ... no | |
checking whether sys/ioctl.h defines TIOCGWINSZ... yes | |
checking for sig_atomic_t in signal.h... yes | |
checking whether signal handlers are of type void... yes | |
checking for TIOCSTAT in sys/ioctl.h... no | |
checking for FIONREAD in sys/ioctl.h... yes | |
checking for speed_t in sys/types.h... no | |
checking for struct winsize in sys/ioctl.h and termios.h... sys/ioctl.h | |
checking for struct dirent.d_ino... yes | |
checking for struct dirent.d_fileno... yes | |
checking for tgetent... no | |
checking for tgetent in -ltermcap... no | |
checking for tgetent in -ltinfo... no | |
checking for tgetent in -lcurses... yes | |
checking which library has the termcap functions... using libcurses | |
checking wctype.h usability... yes | |
checking wctype.h presence... yes | |
checking for wctype.h... yes | |
checking wchar.h usability... yes | |
checking wchar.h presence... yes | |
checking for wchar.h... yes | |
checking langinfo.h usability... yes | |
checking langinfo.h presence... yes | |
checking for langinfo.h... yes | |
checking for mbrlen... yes | |
checking for mbscasecmp... no | |
checking for mbscmp... no | |
checking for mbsnrtowcs... yes | |
checking for mbsrtowcs... yes | |
checking for mbschr... no | |
checking for wcrtomb... yes | |
checking for wcscoll... yes | |
checking for wcsdup... yes | |
checking for wcwidth... yes | |
checking for wctype... yes | |
checking for wcswidth... yes | |
checking whether mbrtowc and mbstate_t are properly declared... yes | |
checking for iswlower... yes | |
checking for iswupper... yes | |
checking for towlower... yes | |
checking for towupper... yes | |
checking for iswctype... yes | |
checking for nl_langinfo and CODESET... yes | |
checking for wchar_t in wchar.h... yes | |
checking for wctype_t in wctype.h... yes | |
checking for wint_t in wctype.h... yes | |
checking configuration for building shared libraries... supported | |
configure: updating cache ./config.cache | |
configure: creating ./config.status | |
config.status: creating Makefile | |
config.status: creating doc/Makefile | |
config.status: creating examples/Makefile | |
config.status: creating shlib/Makefile | |
config.status: creating config.h | |
config.status: executing default commands | |
mkdir -p -- ./sim | |
Configuring in ./sim | |
configure: creating cache ./config.cache | |
checking for x86_64-unknown-linux-gnu-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 a BSD-compatible install... /usr/bin/install -c | |
checking for x86_64-unknown-linux-gnu-ar... ar | |
checking for x86_64-unknown-linux-gnu-ranlib... ranlib | |
checking build system type... x86_64-unknown-linux-gnu | |
checking host system type... x86_64-unknown-linux-gnu | |
checking target system type... x86_64-unknown-linux-gnu | |
checking for x86_64-unknown-linux-gnu-gcc... (cached) gcc | |
checking whether we are using the GNU C compiler... (cached) yes | |
checking whether gcc accepts -g... (cached) yes | |
checking for gcc option to accept ISO C89... (cached) none needed | |
checking for x86_64-unknown-linux-gnu-ranlib... (cached) ranlib | |
configure: updating cache ./config.cache | |
configure: creating ./config.status | |
config.status: creating Makefile | |
make[1]: Entering directory '/home/ryan/packages/trunk/src/binutils-build' | |
make[2]: Entering directory '/home/ryan/packages/trunk/src/binutils-build/libiberty' | |
if [ x"-fpic" != x ] && [ ! -d pic ]; then \ | |
mkdir pic; \ | |
else true; fi | |
touch stamp-picdir | |
if [ x"" != x ] && [ ! -d noasan ]; then \ | |
mkdir noasan; \ | |
else true; fi | |
touch stamp-noasandir | |
if [ x"-fpic" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/regex.c -o pic/regex.o; \ | |
else true; fi | |
if [ x"" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/regex.c -o noasan/regex.o; \ | |
else true; fi | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/regex.c -o regex.o | |
if [ x"-fpic" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/cplus-dem.c -o pic/cplus-dem.o; \ | |
else true; fi | |
if [ x"" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/cplus-dem.c -o noasan/cplus-dem.o; \ | |
else true; fi | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/cplus-dem.c -o cplus-dem.o | |
if [ x"-fpic" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/cp-demangle.c -o pic/cp-demangle.o; \ | |
else true; fi | |
if [ x"" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/cp-demangle.c -o noasan/cp-demangle.o; \ | |
else true; fi | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/cp-demangle.c -o cp-demangle.o | |
if [ x"-fpic" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/md5.c -o pic/md5.o; \ | |
else true; fi | |
if [ x"" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/md5.c -o noasan/md5.o; \ | |
else true; fi | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/md5.c -o md5.o | |
if [ x"-fpic" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/sha1.c -o pic/sha1.o; \ | |
else true; fi | |
if [ x"" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/sha1.c -o noasan/sha1.o; \ | |
else true; fi | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/sha1.c -o sha1.o | |
if [ x"-fpic" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/alloca.c -o pic/alloca.o; \ | |
else true; fi | |
if [ x"" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/alloca.c -o noasan/alloca.o; \ | |
else true; fi | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/alloca.c -o alloca.o | |
if [ x"-fpic" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/argv.c -o pic/argv.o; \ | |
else true; fi | |
if [ x"" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/argv.c -o noasan/argv.o; \ | |
else true; fi | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/argv.c -o argv.o | |
if [ x"-fpic" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/choose-temp.c -o pic/choose-temp.o; \ | |
else true; fi | |
if [ x"" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/choose-temp.c -o noasan/choose-temp.o; \ | |
else true; fi | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/choose-temp.c -o choose-temp.o | |
if [ x"-fpic" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/concat.c -o pic/concat.o; \ | |
else true; fi | |
if [ x"" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/concat.c -o noasan/concat.o; \ | |
else true; fi | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/concat.c -o concat.o | |
if [ x"-fpic" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/cp-demint.c -o pic/cp-demint.o; \ | |
else true; fi | |
if [ x"" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/cp-demint.c -o noasan/cp-demint.o; \ | |
else true; fi | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/cp-demint.c -o cp-demint.o | |
if [ x"-fpic" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/crc32.c -o pic/crc32.o; \ | |
else true; fi | |
if [ x"" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/crc32.c -o noasan/crc32.o; \ | |
else true; fi | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/crc32.c -o crc32.o | |
if [ x"-fpic" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/d-demangle.c -o pic/d-demangle.o; \ | |
else true; fi | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/d-demangle.c -o d-demangle.o | |
if [ x"-fpic" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/dwarfnames.c -o pic/dwarfnames.o; \ | |
else true; fi | |
if [ x"" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/dwarfnames.c -o noasan/dwarfnames.o; \ | |
else true; fi | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/dwarfnames.c -o dwarfnames.o | |
if [ x"-fpic" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/dyn-string.c -o pic/dyn-string.o; \ | |
else true; fi | |
if [ x"" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/dyn-string.c -o noasan/dyn-string.o; \ | |
else true; fi | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/dyn-string.c -o dyn-string.o | |
if [ x"-fpic" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/fdmatch.c -o pic/fdmatch.o; \ | |
else true; fi | |
if [ x"" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/fdmatch.c -o noasan/fdmatch.o; \ | |
else true; fi | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/fdmatch.c -o fdmatch.o | |
if [ x"-fpic" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/fibheap.c -o pic/fibheap.o; \ | |
else true; fi | |
if [ x"" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/fibheap.c -o noasan/fibheap.o; \ | |
else true; fi | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/fibheap.c -o fibheap.o | |
if [ x"-fpic" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/filename_cmp.c -o pic/filename_cmp.o; \ | |
else true; fi | |
if [ x"" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/filename_cmp.c -o noasan/filename_cmp.o; \ | |
else true; fi | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/filename_cmp.c -o filename_cmp.o | |
if [ x"-fpic" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/floatformat.c -o pic/floatformat.o; \ | |
else true; fi | |
if [ x"" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/floatformat.c -o noasan/floatformat.o; \ | |
else true; fi | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/floatformat.c -o floatformat.o | |
if [ x"-fpic" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/fnmatch.c -o pic/fnmatch.o; \ | |
else true; fi | |
if [ x"" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/fnmatch.c -o noasan/fnmatch.o; \ | |
else true; fi | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/fnmatch.c -o fnmatch.o | |
if [ x"-fpic" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/fopen_unlocked.c -o pic/fopen_unlocked.o; \ | |
else true; fi | |
if [ x"" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/fopen_unlocked.c -o noasan/fopen_unlocked.o; \ | |
else true; fi | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/fopen_unlocked.c -o fopen_unlocked.o | |
if [ x"-fpic" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/getopt.c -o pic/getopt.o; \ | |
else true; fi | |
if [ x"" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/getopt.c -o noasan/getopt.o; \ | |
else true; fi | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/getopt.c -o getopt.o | |
if [ x"-fpic" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/getopt1.c -o pic/getopt1.o; \ | |
else true; fi | |
if [ x"" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/getopt1.c -o noasan/getopt1.o; \ | |
else true; fi | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/getopt1.c -o getopt1.o | |
if [ x"-fpic" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/getpwd.c -o pic/getpwd.o; \ | |
else true; fi | |
if [ x"" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/getpwd.c -o noasan/getpwd.o; \ | |
else true; fi | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/getpwd.c -o getpwd.o | |
if [ x"-fpic" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/getruntime.c -o pic/getruntime.o; \ | |
else true; fi | |
if [ x"" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/getruntime.c -o noasan/getruntime.o; \ | |
else true; fi | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/getruntime.c -o getruntime.o | |
if [ x"-fpic" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/hashtab.c -o pic/hashtab.o; \ | |
else true; fi | |
if [ x"" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/hashtab.c -o noasan/hashtab.o; \ | |
else true; fi | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/hashtab.c -o hashtab.o | |
if [ x"-fpic" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/hex.c -o pic/hex.o; \ | |
else true; fi | |
if [ x"" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/hex.c -o noasan/hex.o; \ | |
else true; fi | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/hex.c -o hex.o | |
if [ x"-fpic" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/lbasename.c -o pic/lbasename.o; \ | |
else true; fi | |
if [ x"" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/lbasename.c -o noasan/lbasename.o; \ | |
else true; fi | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/lbasename.c -o lbasename.o | |
if [ x"-fpic" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/lrealpath.c -o pic/lrealpath.o; \ | |
else true; fi | |
if [ x"" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/lrealpath.c -o noasan/lrealpath.o; \ | |
else true; fi | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/lrealpath.c -o lrealpath.o | |
if [ x"-fpic" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/make-relative-prefix.c -o pic/make-relative-prefix.o; \ | |
else true; fi | |
if [ x"" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/make-relative-prefix.c -o noasan/make-relative-prefix.o; \ | |
else true; fi | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/make-relative-prefix.c -o make-relative-prefix.o | |
if [ x"-fpic" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/make-temp-file.c -o pic/make-temp-file.o; \ | |
else true; fi | |
if [ x"" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/make-temp-file.c -o noasan/make-temp-file.o; \ | |
else true; fi | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/make-temp-file.c -o make-temp-file.o | |
if [ x"-fpic" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/objalloc.c -o pic/objalloc.o; \ | |
else true; fi | |
if [ x"" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/objalloc.c -o noasan/objalloc.o; \ | |
else true; fi | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/objalloc.c -o objalloc.o | |
if [ x"-fpic" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/obstack.c -o pic/obstack.o; \ | |
else true; fi | |
if [ x"" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/obstack.c -o noasan/obstack.o; \ | |
else true; fi | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/obstack.c -o obstack.o | |
if [ x"-fpic" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/partition.c -o pic/partition.o; \ | |
else true; fi | |
if [ x"" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/partition.c -o noasan/partition.o; \ | |
else true; fi | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/partition.c -o partition.o | |
if [ x"-fpic" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/pexecute.c -o pic/pexecute.o; \ | |
else true; fi | |
if [ x"" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/pexecute.c -o noasan/pexecute.o; \ | |
else true; fi | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/pexecute.c -o pexecute.o | |
if [ x"-fpic" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/physmem.c -o pic/physmem.o; \ | |
else true; fi | |
if [ x"" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/physmem.c -o noasan/physmem.o; \ | |
else true; fi | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/physmem.c -o physmem.o | |
if [ x"-fpic" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/pex-common.c -o pic/pex-common.o; \ | |
else true; fi | |
if [ x"" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/pex-common.c -o noasan/pex-common.o; \ | |
else true; fi | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/pex-common.c -o pex-common.o | |
if [ x"-fpic" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/pex-one.c -o pic/pex-one.o; \ | |
else true; fi | |
if [ x"" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/pex-one.c -o noasan/pex-one.o; \ | |
else true; fi | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/pex-one.c -o pex-one.o | |
if [ x"-fpic" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/pex-unix.c -o pic/pex-unix.o; \ | |
else true; fi | |
if [ x"" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/pex-unix.c -o noasan/pex-unix.o; \ | |
else true; fi | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/pex-unix.c -o pex-unix.o | |
if [ x"-fpic" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/safe-ctype.c -o pic/safe-ctype.o; \ | |
else true; fi | |
if [ x"" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/safe-ctype.c -o noasan/safe-ctype.o; \ | |
else true; fi | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/safe-ctype.c -o safe-ctype.o | |
if [ x"-fpic" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/simple-object.c -o pic/simple-object.o; \ | |
else true; fi | |
if [ x"" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/simple-object.c -o noasan/simple-object.o; \ | |
else true; fi | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/simple-object.c -o simple-object.o | |
if [ x"-fpic" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/simple-object-coff.c -o pic/simple-object-coff.o; \ | |
else true; fi | |
if [ x"" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/simple-object-coff.c -o noasan/simple-object-coff.o; \ | |
else true; fi | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/simple-object-coff.c -o simple-object-coff.o | |
if [ x"-fpic" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/simple-object-elf.c -o pic/simple-object-elf.o; \ | |
else true; fi | |
if [ x"" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/simple-object-elf.c -o noasan/simple-object-elf.o; \ | |
else true; fi | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/simple-object-elf.c -o simple-object-elf.o | |
if [ x"-fpic" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/simple-object-mach-o.c -o pic/simple-object-mach-o.o; \ | |
else true; fi | |
if [ x"" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/simple-object-mach-o.c -o noasan/simple-object-mach-o.o; \ | |
else true; fi | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/simple-object-mach-o.c -o simple-object-mach-o.o | |
if [ x"-fpic" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/simple-object-xcoff.c -o pic/simple-object-xcoff.o; \ | |
else true; fi | |
if [ x"" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/simple-object-xcoff.c -o noasan/simple-object-xcoff.o; \ | |
else true; fi | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/simple-object-xcoff.c -o simple-object-xcoff.o | |
if [ x"-fpic" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/sort.c -o pic/sort.o; \ | |
else true; fi | |
if [ x"" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/sort.c -o noasan/sort.o; \ | |
else true; fi | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/sort.c -o sort.o | |
if [ x"-fpic" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/spaces.c -o pic/spaces.o; \ | |
else true; fi | |
if [ x"" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/spaces.c -o noasan/spaces.o; \ | |
else true; fi | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/spaces.c -o spaces.o | |
if [ x"-fpic" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/splay-tree.c -o pic/splay-tree.o; \ | |
else true; fi | |
if [ x"" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/splay-tree.c -o noasan/splay-tree.o; \ | |
else true; fi | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/splay-tree.c -o splay-tree.o | |
if [ x"-fpic" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/stack-limit.c -o pic/stack-limit.o; \ | |
else true; fi | |
if [ x"" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/stack-limit.c -o noasan/stack-limit.o; \ | |
else true; fi | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/stack-limit.c -o stack-limit.o | |
if [ x"-fpic" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/strerror.c -o pic/strerror.o; \ | |
else true; fi | |
if [ x"" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/strerror.c -o noasan/strerror.o; \ | |
else true; fi | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/strerror.c -o strerror.o | |
if [ x"-fpic" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/strsignal.c -o pic/strsignal.o; \ | |
else true; fi | |
if [ x"" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/strsignal.c -o noasan/strsignal.o; \ | |
else true; fi | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/strsignal.c -o strsignal.o | |
if [ x"-fpic" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/timeval-utils.c -o pic/timeval-utils.o; \ | |
else true; fi | |
if [ x"" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/timeval-utils.c -o noasan/timeval-utils.o; \ | |
else true; fi | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/timeval-utils.c -o timeval-utils.o | |
if [ x"-fpic" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/unlink-if-ordinary.c -o pic/unlink-if-ordinary.o; \ | |
else true; fi | |
if [ x"" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/unlink-if-ordinary.c -o noasan/unlink-if-ordinary.o; \ | |
else true; fi | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/unlink-if-ordinary.c -o unlink-if-ordinary.o | |
if [ x"-fpic" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/xatexit.c -o pic/xatexit.o; \ | |
else true; fi | |
if [ x"" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/xatexit.c -o noasan/xatexit.o; \ | |
else true; fi | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/xatexit.c -o xatexit.o | |
if [ x"-fpic" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/xexit.c -o pic/xexit.o; \ | |
else true; fi | |
if [ x"" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/xexit.c -o noasan/xexit.o; \ | |
else true; fi | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/xexit.c -o xexit.o | |
if [ x"-fpic" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/xmalloc.c -o pic/xmalloc.o; \ | |
else true; fi | |
if [ x"" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/xmalloc.c -o noasan/xmalloc.o; \ | |
else true; fi | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/xmalloc.c -o xmalloc.o | |
if [ x"-fpic" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/xmemdup.c -o pic/xmemdup.o; \ | |
else true; fi | |
if [ x"" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/xmemdup.c -o noasan/xmemdup.o; \ | |
else true; fi | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/xmemdup.c -o xmemdup.o | |
if [ x"-fpic" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/xstrdup.c -o pic/xstrdup.o; \ | |
else true; fi | |
if [ x"" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/xstrdup.c -o noasan/xstrdup.o; \ | |
else true; fi | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/xstrdup.c -o xstrdup.o | |
if [ x"-fpic" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/xstrerror.c -o pic/xstrerror.o; \ | |
else true; fi | |
if [ x"" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/xstrerror.c -o noasan/xstrerror.o; \ | |
else true; fi | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/xstrerror.c -o xstrerror.o | |
if [ x"-fpic" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/xstrndup.c -o pic/xstrndup.o; \ | |
else true; fi | |
if [ x"" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/xstrndup.c -o noasan/xstrndup.o; \ | |
else true; fi | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/xstrndup.c -o xstrndup.o | |
if [ x"-fpic" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/setproctitle.c -o pic/setproctitle.o; \ | |
else true; fi | |
if [ x"" != x ]; then \ | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -fpic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/setproctitle.c -o noasan/setproctitle.o; \ | |
else true; fi | |
gcc -c -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -I. -I/home/ryan/packages/trunk/src/binutils-gdb/libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic /home/ryan/packages/trunk/src/binutils-gdb/libiberty/setproctitle.c -o setproctitle.o | |
rm -f ./libiberty.a pic/./libiberty.a noasan/./libiberty.a | |
ar rc ./libiberty.a \ | |
./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 ./d-demangle.o ./dwarfnames.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 ./simple-object-xcoff.o ./sort.o ./spaces.o ./splay-tree.o ./stack-limit.o ./strerror.o ./strsignal.o ./timeval-utils.o ./unlink-if-ordinary.o ./xatexit.o ./xexit.o ./xmalloc.o ./xmemdup.o ./xstrdup.o ./xstrerror.o ./xstrndup.o ./setproctitle.o | |
ranlib ./libiberty.a | |
if [ x"-fpic" != x ]; then \ | |
cd pic; \ | |
ar rc ./libiberty.a \ | |
./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 ./d-demangle.o ./dwarfnames.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 ./simple-object-xcoff.o ./sort.o ./spaces.o ./splay-tree.o ./stack-limit.o ./strerror.o ./strsignal.o ./timeval-utils.o ./unlink-if-ordinary.o ./xatexit.o ./xexit.o ./xmalloc.o ./xmemdup.o ./xstrdup.o ./xstrerror.o ./xstrndup.o ./setproctitle.o; \ | |
ranlib ./libiberty.a; \ | |
cd ..; \ | |
else true; fi; \ | |
if [ x"" != x ]; then \ | |
cd noasan; \ | |
ar rc ./libiberty.a \ | |
./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 ./d-demangle.o ./dwarfnames.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 ./simple-object-xcoff.o ./sort.o ./spaces.o ./splay-tree.o ./stack-limit.o ./strerror.o ./strsignal.o ./timeval-utils.o ./unlink-if-ordinary.o ./xatexit.o ./xexit.o ./xmalloc.o ./xmemdup.o ./xstrdup.o ./xstrerror.o ./xstrndup.o ./setproctitle.o; \ | |
ranlib ./libiberty.a; \ | |
cd ..; \ | |
else true; fi | |
echo ./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 ./d-demangle.o ./dwarfnames.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 ./simple-object-xcoff.o ./sort.o ./spaces.o ./splay-tree.o ./stack-limit.o ./strerror.o ./strsignal.o ./timeval-utils.o ./unlink-if-ordinary.o ./xatexit.o ./xexit.o ./xmalloc.o ./xmemdup.o ./xstrdup.o ./xstrerror.o ./xstrndup.o > required-list | |
make[3]: Entering directory '/home/ryan/packages/trunk/src/binutils-build/libiberty/testsuite' | |
make[3]: Nothing to be done for 'all'. | |
make[3]: Leaving directory '/home/ryan/packages/trunk/src/binutils-build/libiberty/testsuite' | |
make[2]: Leaving directory '/home/ryan/packages/trunk/src/binutils-build/libiberty' | |
make[2]: Entering directory '/home/ryan/packages/trunk/src/binutils-build/intl' | |
make[2]: Nothing to be done for 'all'. | |
make[2]: Leaving directory '/home/ryan/packages/trunk/src/binutils-build/intl' | |
make[2]: Entering directory '/home/ryan/packages/trunk/src/binutils-build/bfd' | |
creating bfdver.h | |
rm -f elf32-target.h | |
sed -e s/NN/32/g < /home/ryan/packages/trunk/src/binutils-gdb/bfd/elfxx-target.h > elf32-target.new | |
mv -f elf32-target.new elf32-target.h | |
rm -f elf64-target.h | |
sed -e s/NN/64/g < /home/ryan/packages/trunk/src/binutils-gdb/bfd/elfxx-target.h > elf64-target.new | |
mv -f elf64-target.new elf64-target.h | |
rm -f targmatch.h | |
sed -f /home/ryan/packages/trunk/src/binutils-gdb/bfd/targmatch.sed < /home/ryan/packages/trunk/src/binutils-gdb/bfd/config.bfd > targmatch.new | |
mv -f targmatch.new targmatch.h | |
Making info in doc | |
make[3]: Entering directory '/home/ryan/packages/trunk/src/binutils-build/bfd/doc' | |
gcc -o chw$$ -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong \ | |
-Wl,-O1,--sort-common,--as-needed,-z,relro -I.. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/.. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/../../include -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/../../intl -I../../intl /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/chew.c; \ | |
/bin/sh /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/../../move-if-change \ | |
chw$$ chew; \ | |
touch chew.stamp | |
./chew -f /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/doc.str < /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/../aoutx.h >aoutx.tmp | |
/bin/sh /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/../../move-if-change aoutx.tmp aoutx.texi | |
touch aoutx.stamp | |
./chew -f /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/doc.str < /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/../archive.c >archive.tmp | |
/bin/sh /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/../../move-if-change archive.tmp archive.texi | |
touch archive.stamp | |
./chew -f /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/doc.str < /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/../archures.c >archures.tmp | |
/bin/sh /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/../../move-if-change archures.tmp archures.texi | |
touch archures.stamp | |
./chew -f /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/doc.str < /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/../bfd.c >bfd.tmp | |
/bin/sh /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/../../move-if-change bfd.tmp bfdt.texi | |
touch bfdt.stamp | |
./chew -f /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/doc.str < /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/../cache.c >cache.tmp | |
/bin/sh /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/../../move-if-change cache.tmp cache.texi | |
touch cache.stamp | |
./chew -f /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/doc.str < /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/../coffcode.h >coffcode.tmp | |
/bin/sh /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/../../move-if-change coffcode.tmp coffcode.texi | |
touch coffcode.stamp | |
./chew -f /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/doc.str < /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/../corefile.c >core.tmp | |
/bin/sh /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/../../move-if-change core.tmp core.texi | |
touch core.stamp | |
./chew -f /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/doc.str < /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/../elf.c >elf.tmp | |
/bin/sh /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/../../move-if-change elf.tmp elf.texi | |
touch elf.stamp | |
./chew -f /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/doc.str < /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/../elfcode.h >elfcode.tmp | |
/bin/sh /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/../../move-if-change elfcode.tmp elfcode.texi | |
touch elfcode.stamp | |
./chew -f /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/doc.str < /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/../format.c >format.tmp | |
/bin/sh /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/../../move-if-change format.tmp format.texi | |
touch format.stamp | |
./chew -f /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/doc.str < /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/../libbfd.c >libbfd.tmp | |
/bin/sh /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/../../move-if-change libbfd.tmp libbfd.texi | |
touch libbfd.stamp | |
./chew -f /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/doc.str < /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/../bfdwin.c >bfdwin.tmp | |
/bin/sh /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/../../move-if-change bfdwin.tmp bfdwin.texi | |
touch bfdwin.stamp | |
./chew -f /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/doc.str < /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/../bfdio.c >bfdio.tmp | |
/bin/sh /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/../../move-if-change bfdio.tmp bfdio.texi | |
touch bfdio.stamp | |
./chew -f /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/doc.str < /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/../opncls.c >opncls.tmp | |
/bin/sh /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/../../move-if-change opncls.tmp opncls.texi | |
touch opncls.stamp | |
./chew -f /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/doc.str < /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/../reloc.c >reloc.tmp | |
/bin/sh /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/../../move-if-change reloc.tmp reloc.texi | |
touch reloc.stamp | |
./chew -f /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/doc.str < /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/../section.c >section.tmp | |
/bin/sh /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/../../move-if-change section.tmp section.texi | |
touch section.stamp | |
./chew -f /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/doc.str < /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/../syms.c >syms.tmp | |
/bin/sh /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/../../move-if-change syms.tmp syms.texi | |
touch syms.stamp | |
./chew -f /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/doc.str < /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/../targets.c >targets.tmp | |
/bin/sh /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/../../move-if-change targets.tmp targets.texi | |
touch targets.stamp | |
./chew -f /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/doc.str < /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/../init.c >init.tmp | |
/bin/sh /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/../../move-if-change init.tmp init.texi | |
touch init.stamp | |
./chew -f /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/doc.str < /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/../hash.c >hash.tmp | |
/bin/sh /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/../../move-if-change hash.tmp hash.texi | |
touch hash.stamp | |
./chew -f /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/doc.str < /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/../linker.c >linker.tmp | |
/bin/sh /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/../../move-if-change linker.tmp linker.texi | |
touch linker.stamp | |
./chew -f /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/doc.str < /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/../mmo.c >mmo.tmp | |
/bin/sh /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/../../move-if-change mmo.tmp mmo.texi | |
touch mmo.stamp | |
creating bfdver.texi | |
restore=: && backupdir=".am$$" && \ | |
rm -rf $backupdir && mkdir $backupdir && \ | |
if (makeinfo --split-size=5000000 --split-size=5000000 --version) >/dev/null 2>&1; then \ | |
for f in bfd.info bfd.info-[0-9] bfd.info-[0-9][0-9] bfd.i[0-9] bfd.i[0-9][0-9]; do \ | |
if test -f $f; then mv $f $backupdir; restore=mv; else :; fi; \ | |
done; \ | |
else :; fi && \ | |
if makeinfo --split-size=5000000 --split-size=5000000 -I /home/ryan/packages/trunk/src/binutils-gdb/bfd/doc \ | |
-o bfd.info `test -f 'bfd.texinfo' || echo '/home/ryan/packages/trunk/src/binutils-gdb/bfd/doc/'`bfd.texinfo; \ | |
then \ | |
rc=0; \ | |
else \ | |
rc=$?; \ | |
$restore $backupdir/* `echo "./bfd.info" | sed 's|[^/]*$||'`; \ | |
fi; \ | |
rm -rf $backupdir; exit $rc | |
make[3]: Leaving directory '/home/ryan/packages/trunk/src/binutils-build/bfd/doc' | |
Making info in po | |
make[3]: Entering directory '/home/ryan/packages/trunk/src/binutils-build/bfd/po' | |
( if test 'x/home/ryan/packages/trunk/src/binutils-gdb/bfd/po' != 'x.'; then \ | |
posrcprefix='/home/ryan/packages/trunk/src/binutils-gdb/bfd/'; \ | |
else \ | |
posrcprefix="../"; \ | |
fi; \ | |
rm -f SRC-POTFILES-t SRC-POTFILES \ | |
&& (sed -e '/^#/d' \ | |
-e '/^[ ]*$/d' \ | |
-e "s@.*@ $posrcprefix& \\\\@" < /home/ryan/packages/trunk/src/binutils-gdb/bfd/po/SRC-POTFILES.in \ | |
| sed -e '$s/\\$//') > SRC-POTFILES-t \ | |
&& chmod a-w SRC-POTFILES-t \ | |
&& mv SRC-POTFILES-t SRC-POTFILES ) | |
( rm -f BLD-POTFILES-t BLD-POTFILES \ | |
&& (sed -e '/^#/d' \ | |
-e '/^[ ]*$/d' \ | |
-e "s@.*@ ../& \\\\@" < /home/ryan/packages/trunk/src/binutils-gdb/bfd/po/BLD-POTFILES.in \ | |
| sed -e '$s/\\$//') > BLD-POTFILES-t \ | |
&& chmod a-w BLD-POTFILES-t \ | |
&& mv BLD-POTFILES-t BLD-POTFILES ) | |
cd .. \ | |
&& CONFIG_FILES=po/Makefile.in:po/Make-in \ | |
CONFIG_HEADERS= /bin/sh ./config.status | |
config.status: creating po/Makefile.in | |
config.status: executing depfiles commands | |
config.status: executing libtool commands | |
config.status: executing default-1 commands | |
config.status: executing bfd_stdint.h commands | |
config.status: executing default commands | |
make[3]: Nothing to be done for 'info'. | |
make[3]: Leaving directory '/home/ryan/packages/trunk/src/binutils-build/bfd/po' | |
make[3]: Entering directory '/home/ryan/packages/trunk/src/binutils-build/bfd' | |
make[3]: Nothing to be done for 'info-am'. | |
make[3]: Leaving directory '/home/ryan/packages/trunk/src/binutils-build/bfd' | |
make all-recursive | |
make[3]: Entering directory '/home/ryan/packages/trunk/src/binutils-build/bfd' | |
Making all in doc | |
make[4]: Entering directory '/home/ryan/packages/trunk/src/binutils-build/bfd/doc' | |
make[4]: Nothing to be done for 'all'. | |
make[4]: Leaving directory '/home/ryan/packages/trunk/src/binutils-build/bfd/doc' | |
Making all in po | |
make[4]: Entering directory '/home/ryan/packages/trunk/src/binutils-build/bfd/po' | |
file=`echo /home/ryan/packages/trunk/src/binutils-gdb/bfd/po/da | sed 's,.*/,,'`.gmo \ | |
&& rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file /home/ryan/packages/trunk/src/binutils-gdb/bfd/po/da.po | |
file=`echo /home/ryan/packages/trunk/src/binutils-gdb/bfd/po/es | sed 's,.*/,,'`.gmo \ | |
&& rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file /home/ryan/packages/trunk/src/binutils-gdb/bfd/po/es.po | |
file=`echo /home/ryan/packages/trunk/src/binutils-gdb/bfd/po/fi | sed 's,.*/,,'`.gmo \ | |
&& rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file /home/ryan/packages/trunk/src/binutils-gdb/bfd/po/fi.po | |
file=`echo /home/ryan/packages/trunk/src/binutils-gdb/bfd/po/fr | sed 's,.*/,,'`.gmo \ | |
&& rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file /home/ryan/packages/trunk/src/binutils-gdb/bfd/po/fr.po | |
file=`echo /home/ryan/packages/trunk/src/binutils-gdb/bfd/po/id | sed 's,.*/,,'`.gmo \ | |
&& rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file /home/ryan/packages/trunk/src/binutils-gdb/bfd/po/id.po | |
file=`echo /home/ryan/packages/trunk/src/binutils-gdb/bfd/po/ja | sed 's,.*/,,'`.gmo \ | |
&& rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file /home/ryan/packages/trunk/src/binutils-gdb/bfd/po/ja.po | |
file=`echo /home/ryan/packages/trunk/src/binutils-gdb/bfd/po/ro | sed 's,.*/,,'`.gmo \ | |
&& rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file /home/ryan/packages/trunk/src/binutils-gdb/bfd/po/ro.po | |
file=`echo /home/ryan/packages/trunk/src/binutils-gdb/bfd/po/ru | sed 's,.*/,,'`.gmo \ | |
&& rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file /home/ryan/packages/trunk/src/binutils-gdb/bfd/po/ru.po | |
file=`echo /home/ryan/packages/trunk/src/binutils-gdb/bfd/po/rw | sed 's,.*/,,'`.gmo \ | |
&& rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file /home/ryan/packages/trunk/src/binutils-gdb/bfd/po/rw.po | |
file=`echo /home/ryan/packages/trunk/src/binutils-gdb/bfd/po/sv | sed 's,.*/,,'`.gmo \ | |
&& rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file /home/ryan/packages/trunk/src/binutils-gdb/bfd/po/sv.po | |
file=`echo /home/ryan/packages/trunk/src/binutils-gdb/bfd/po/tr | sed 's,.*/,,'`.gmo \ | |
&& rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file /home/ryan/packages/trunk/src/binutils-gdb/bfd/po/tr.po | |
file=`echo /home/ryan/packages/trunk/src/binutils-gdb/bfd/po/uk | sed 's,.*/,,'`.gmo \ | |
&& rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file /home/ryan/packages/trunk/src/binutils-gdb/bfd/po/uk.po | |
file=`echo /home/ryan/packages/trunk/src/binutils-gdb/bfd/po/vi | sed 's,.*/,,'`.gmo \ | |
&& rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file /home/ryan/packages/trunk/src/binutils-gdb/bfd/po/vi.po | |
file=`echo /home/ryan/packages/trunk/src/binutils-gdb/bfd/po/zh_CN | sed 's,.*/,,'`.gmo \ | |
&& rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file /home/ryan/packages/trunk/src/binutils-gdb/bfd/po/zh_CN.po | |
make[4]: Leaving directory '/home/ryan/packages/trunk/src/binutils-build/bfd/po' | |
make[4]: Entering directory '/home/ryan/packages/trunk/src/binutils-build/bfd' | |
rm -f bfd-tmp.h | |
cp bfd-in3.h bfd-tmp.h | |
/bin/sh /home/ryan/packages/trunk/src/binutils-gdb/bfd/../move-if-change bfd-tmp.h bfd.h | |
rm -f bfd-tmp.h | |
touch stmp-bfd-h | |
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR='"/usr/bin"' -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT archive.lo -MD -MP -MF .deps/archive.Tpo -c -o archive.lo /home/ryan/packages/trunk/src/binutils-gdb/bfd/archive.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR=\"/usr/bin\" -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT archive.lo -MD -MP -MF .deps/archive.Tpo -c /home/ryan/packages/trunk/src/binutils-gdb/bfd/archive.c -fPIC -DPIC -o .libs/archive.o | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR=\"/usr/bin\" -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT archive.lo -MD -MP -MF .deps/archive.Tpo -c /home/ryan/packages/trunk/src/binutils-gdb/bfd/archive.c -fPIC -DPIC -o archive.o >/dev/null 2>&1 | |
mv -f .deps/archive.Tpo .deps/archive.Plo | |
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR='"/usr/bin"' -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT archures.lo -MD -MP -MF .deps/archures.Tpo -c -o archures.lo -DDEFAULT_VECTOR=x86_64_elf64_vec -DSELECT_VECS='&x86_64_elf64_vec,&i386_elf32_vec,&x86_64_elf32_vec,&i386_aout_linux_vec,&i386_pei_vec,&x86_64_pei_vec,&l1om_elf64_vec,&k1om_elf64_vec,&elf64_le_vec,&elf64_be_vec,&elf32_le_vec,&elf32_be_vec,&plugin_vec' -DSELECT_ARCHITECTURES='&bfd_i386_arch,&bfd_l1om_arch,&bfd_k1om_arch,&bfd_plugin_arch' /home/ryan/packages/trunk/src/binutils-gdb/bfd/archures.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR=\"/usr/bin\" -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT archures.lo -MD -MP -MF .deps/archures.Tpo -c -DDEFAULT_VECTOR=x86_64_elf64_vec "-DSELECT_VECS=&x86_64_elf64_vec,&i386_elf32_vec,&x86_64_elf32_vec,&i386_aout_linux_vec,&i386_pei_vec,&x86_64_pei_vec,&l1om_elf64_vec,&k1om_elf64_vec,&elf64_le_vec,&elf64_be_vec,&elf32_le_vec,&elf32_be_vec,&plugin_vec" "-DSELECT_ARCHITECTURES=&bfd_i386_arch,&bfd_l1om_arch,&bfd_k1om_arch,&bfd_plugin_arch" /home/ryan/packages/trunk/src/binutils-gdb/bfd/archures.c -fPIC -DPIC -o .libs/archures.o | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR=\"/usr/bin\" -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT archures.lo -MD -MP -MF .deps/archures.Tpo -c -DDEFAULT_VECTOR=x86_64_elf64_vec "-DSELECT_VECS=&x86_64_elf64_vec,&i386_elf32_vec,&x86_64_elf32_vec,&i386_aout_linux_vec,&i386_pei_vec,&x86_64_pei_vec,&l1om_elf64_vec,&k1om_elf64_vec,&elf64_le_vec,&elf64_be_vec,&elf32_le_vec,&elf32_be_vec,&plugin_vec" "-DSELECT_ARCHITECTURES=&bfd_i386_arch,&bfd_l1om_arch,&bfd_k1om_arch,&bfd_plugin_arch" /home/ryan/packages/trunk/src/binutils-gdb/bfd/archures.c -fPIC -DPIC -o archures.o >/dev/null 2>&1 | |
mv -f .deps/archures.Tpo .deps/archures.Plo | |
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR='"/usr/bin"' -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT bfd.lo -MD -MP -MF .deps/bfd.Tpo -c -o bfd.lo /home/ryan/packages/trunk/src/binutils-gdb/bfd/bfd.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR=\"/usr/bin\" -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT bfd.lo -MD -MP -MF .deps/bfd.Tpo -c /home/ryan/packages/trunk/src/binutils-gdb/bfd/bfd.c -fPIC -DPIC -o .libs/bfd.o | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR=\"/usr/bin\" -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT bfd.lo -MD -MP -MF .deps/bfd.Tpo -c /home/ryan/packages/trunk/src/binutils-gdb/bfd/bfd.c -fPIC -DPIC -o bfd.o >/dev/null 2>&1 | |
mv -f .deps/bfd.Tpo .deps/bfd.Plo | |
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR='"/usr/bin"' -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT bfdio.lo -MD -MP -MF .deps/bfdio.Tpo -c -o bfdio.lo /home/ryan/packages/trunk/src/binutils-gdb/bfd/bfdio.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR=\"/usr/bin\" -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT bfdio.lo -MD -MP -MF .deps/bfdio.Tpo -c /home/ryan/packages/trunk/src/binutils-gdb/bfd/bfdio.c -fPIC -DPIC -o .libs/bfdio.o | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR=\"/usr/bin\" -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT bfdio.lo -MD -MP -MF .deps/bfdio.Tpo -c /home/ryan/packages/trunk/src/binutils-gdb/bfd/bfdio.c -fPIC -DPIC -o bfdio.o >/dev/null 2>&1 | |
mv -f .deps/bfdio.Tpo .deps/bfdio.Plo | |
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR='"/usr/bin"' -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT bfdwin.lo -MD -MP -MF .deps/bfdwin.Tpo -c -o bfdwin.lo /home/ryan/packages/trunk/src/binutils-gdb/bfd/bfdwin.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR=\"/usr/bin\" -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT bfdwin.lo -MD -MP -MF .deps/bfdwin.Tpo -c /home/ryan/packages/trunk/src/binutils-gdb/bfd/bfdwin.c -fPIC -DPIC -o .libs/bfdwin.o | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR=\"/usr/bin\" -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT bfdwin.lo -MD -MP -MF .deps/bfdwin.Tpo -c /home/ryan/packages/trunk/src/binutils-gdb/bfd/bfdwin.c -fPIC -DPIC -o bfdwin.o >/dev/null 2>&1 | |
mv -f .deps/bfdwin.Tpo .deps/bfdwin.Plo | |
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR='"/usr/bin"' -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT cache.lo -MD -MP -MF .deps/cache.Tpo -c -o cache.lo /home/ryan/packages/trunk/src/binutils-gdb/bfd/cache.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR=\"/usr/bin\" -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT cache.lo -MD -MP -MF .deps/cache.Tpo -c /home/ryan/packages/trunk/src/binutils-gdb/bfd/cache.c -fPIC -DPIC -o .libs/cache.o | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR=\"/usr/bin\" -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT cache.lo -MD -MP -MF .deps/cache.Tpo -c /home/ryan/packages/trunk/src/binutils-gdb/bfd/cache.c -fPIC -DPIC -o cache.o >/dev/null 2>&1 | |
mv -f .deps/cache.Tpo .deps/cache.Plo | |
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR='"/usr/bin"' -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT coffgen.lo -MD -MP -MF .deps/coffgen.Tpo -c -o coffgen.lo /home/ryan/packages/trunk/src/binutils-gdb/bfd/coffgen.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR=\"/usr/bin\" -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT coffgen.lo -MD -MP -MF .deps/coffgen.Tpo -c /home/ryan/packages/trunk/src/binutils-gdb/bfd/coffgen.c -fPIC -DPIC -o .libs/coffgen.o | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR=\"/usr/bin\" -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT coffgen.lo -MD -MP -MF .deps/coffgen.Tpo -c /home/ryan/packages/trunk/src/binutils-gdb/bfd/coffgen.c -fPIC -DPIC -o coffgen.o >/dev/null 2>&1 | |
mv -f .deps/coffgen.Tpo .deps/coffgen.Plo | |
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR='"/usr/bin"' -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT corefile.lo -MD -MP -MF .deps/corefile.Tpo -c -o corefile.lo /home/ryan/packages/trunk/src/binutils-gdb/bfd/corefile.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR=\"/usr/bin\" -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT corefile.lo -MD -MP -MF .deps/corefile.Tpo -c /home/ryan/packages/trunk/src/binutils-gdb/bfd/corefile.c -fPIC -DPIC -o .libs/corefile.o | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR=\"/usr/bin\" -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT corefile.lo -MD -MP -MF .deps/corefile.Tpo -c /home/ryan/packages/trunk/src/binutils-gdb/bfd/corefile.c -fPIC -DPIC -o corefile.o >/dev/null 2>&1 | |
mv -f .deps/corefile.Tpo .deps/corefile.Plo | |
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR='"/usr/bin"' -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT format.lo -MD -MP -MF .deps/format.Tpo -c -o format.lo /home/ryan/packages/trunk/src/binutils-gdb/bfd/format.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR=\"/usr/bin\" -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT format.lo -MD -MP -MF .deps/format.Tpo -c /home/ryan/packages/trunk/src/binutils-gdb/bfd/format.c -fPIC -DPIC -o .libs/format.o | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR=\"/usr/bin\" -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT format.lo -MD -MP -MF .deps/format.Tpo -c /home/ryan/packages/trunk/src/binutils-gdb/bfd/format.c -fPIC -DPIC -o format.o >/dev/null 2>&1 | |
mv -f .deps/format.Tpo .deps/format.Plo | |
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR='"/usr/bin"' -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT init.lo -MD -MP -MF .deps/init.Tpo -c -o init.lo /home/ryan/packages/trunk/src/binutils-gdb/bfd/init.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR=\"/usr/bin\" -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT init.lo -MD -MP -MF .deps/init.Tpo -c /home/ryan/packages/trunk/src/binutils-gdb/bfd/init.c -fPIC -DPIC -o .libs/init.o | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR=\"/usr/bin\" -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT init.lo -MD -MP -MF .deps/init.Tpo -c /home/ryan/packages/trunk/src/binutils-gdb/bfd/init.c -fPIC -DPIC -o init.o >/dev/null 2>&1 | |
mv -f .deps/init.Tpo .deps/init.Plo | |
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR='"/usr/bin"' -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT libbfd.lo -MD -MP -MF .deps/libbfd.Tpo -c -o libbfd.lo /home/ryan/packages/trunk/src/binutils-gdb/bfd/libbfd.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR=\"/usr/bin\" -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT libbfd.lo -MD -MP -MF .deps/libbfd.Tpo -c /home/ryan/packages/trunk/src/binutils-gdb/bfd/libbfd.c -fPIC -DPIC -o .libs/libbfd.o | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR=\"/usr/bin\" -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT libbfd.lo -MD -MP -MF .deps/libbfd.Tpo -c /home/ryan/packages/trunk/src/binutils-gdb/bfd/libbfd.c -fPIC -DPIC -o libbfd.o >/dev/null 2>&1 | |
mv -f .deps/libbfd.Tpo .deps/libbfd.Plo | |
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR='"/usr/bin"' -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT opncls.lo -MD -MP -MF .deps/opncls.Tpo -c -o opncls.lo /home/ryan/packages/trunk/src/binutils-gdb/bfd/opncls.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR=\"/usr/bin\" -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT opncls.lo -MD -MP -MF .deps/opncls.Tpo -c /home/ryan/packages/trunk/src/binutils-gdb/bfd/opncls.c -fPIC -DPIC -o .libs/opncls.o | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR=\"/usr/bin\" -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT opncls.lo -MD -MP -MF .deps/opncls.Tpo -c /home/ryan/packages/trunk/src/binutils-gdb/bfd/opncls.c -fPIC -DPIC -o opncls.o >/dev/null 2>&1 | |
mv -f .deps/opncls.Tpo .deps/opncls.Plo | |
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR='"/usr/bin"' -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT reloc.lo -MD -MP -MF .deps/reloc.Tpo -c -o reloc.lo /home/ryan/packages/trunk/src/binutils-gdb/bfd/reloc.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR=\"/usr/bin\" -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT reloc.lo -MD -MP -MF .deps/reloc.Tpo -c /home/ryan/packages/trunk/src/binutils-gdb/bfd/reloc.c -fPIC -DPIC -o .libs/reloc.o | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR=\"/usr/bin\" -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT reloc.lo -MD -MP -MF .deps/reloc.Tpo -c /home/ryan/packages/trunk/src/binutils-gdb/bfd/reloc.c -fPIC -DPIC -o reloc.o >/dev/null 2>&1 | |
mv -f .deps/reloc.Tpo .deps/reloc.Plo | |
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR='"/usr/bin"' -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT section.lo -MD -MP -MF .deps/section.Tpo -c -o section.lo /home/ryan/packages/trunk/src/binutils-gdb/bfd/section.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR=\"/usr/bin\" -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT section.lo -MD -MP -MF .deps/section.Tpo -c /home/ryan/packages/trunk/src/binutils-gdb/bfd/section.c -fPIC -DPIC -o .libs/section.o | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR=\"/usr/bin\" -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT section.lo -MD -MP -MF .deps/section.Tpo -c /home/ryan/packages/trunk/src/binutils-gdb/bfd/section.c -fPIC -DPIC -o section.o >/dev/null 2>&1 | |
mv -f .deps/section.Tpo .deps/section.Plo | |
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR='"/usr/bin"' -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT syms.lo -MD -MP -MF .deps/syms.Tpo -c -o syms.lo /home/ryan/packages/trunk/src/binutils-gdb/bfd/syms.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR=\"/usr/bin\" -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT syms.lo -MD -MP -MF .deps/syms.Tpo -c /home/ryan/packages/trunk/src/binutils-gdb/bfd/syms.c -fPIC -DPIC -o .libs/syms.o | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR=\"/usr/bin\" -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT syms.lo -MD -MP -MF .deps/syms.Tpo -c /home/ryan/packages/trunk/src/binutils-gdb/bfd/syms.c -fPIC -DPIC -o syms.o >/dev/null 2>&1 | |
mv -f .deps/syms.Tpo .deps/syms.Plo | |
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR='"/usr/bin"' -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT targets.lo -MD -MP -MF .deps/targets.Tpo -c -o targets.lo -DDEFAULT_VECTOR=x86_64_elf64_vec -DSELECT_VECS='&x86_64_elf64_vec,&i386_elf32_vec,&x86_64_elf32_vec,&i386_aout_linux_vec,&i386_pei_vec,&x86_64_pei_vec,&l1om_elf64_vec,&k1om_elf64_vec,&elf64_le_vec,&elf64_be_vec,&elf32_le_vec,&elf32_be_vec,&plugin_vec' -DSELECT_ARCHITECTURES='&bfd_i386_arch,&bfd_l1om_arch,&bfd_k1om_arch,&bfd_plugin_arch' /home/ryan/packages/trunk/src/binutils-gdb/bfd/targets.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR=\"/usr/bin\" -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT targets.lo -MD -MP -MF .deps/targets.Tpo -c -DDEFAULT_VECTOR=x86_64_elf64_vec "-DSELECT_VECS=&x86_64_elf64_vec,&i386_elf32_vec,&x86_64_elf32_vec,&i386_aout_linux_vec,&i386_pei_vec,&x86_64_pei_vec,&l1om_elf64_vec,&k1om_elf64_vec,&elf64_le_vec,&elf64_be_vec,&elf32_le_vec,&elf32_be_vec,&plugin_vec" "-DSELECT_ARCHITECTURES=&bfd_i386_arch,&bfd_l1om_arch,&bfd_k1om_arch,&bfd_plugin_arch" /home/ryan/packages/trunk/src/binutils-gdb/bfd/targets.c -fPIC -DPIC -o .libs/targets.o | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR=\"/usr/bin\" -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT targets.lo -MD -MP -MF .deps/targets.Tpo -c -DDEFAULT_VECTOR=x86_64_elf64_vec "-DSELECT_VECS=&x86_64_elf64_vec,&i386_elf32_vec,&x86_64_elf32_vec,&i386_aout_linux_vec,&i386_pei_vec,&x86_64_pei_vec,&l1om_elf64_vec,&k1om_elf64_vec,&elf64_le_vec,&elf64_be_vec,&elf32_le_vec,&elf32_be_vec,&plugin_vec" "-DSELECT_ARCHITECTURES=&bfd_i386_arch,&bfd_l1om_arch,&bfd_k1om_arch,&bfd_plugin_arch" /home/ryan/packages/trunk/src/binutils-gdb/bfd/targets.c -fPIC -DPIC -o targets.o >/dev/null 2>&1 | |
mv -f .deps/targets.Tpo .deps/targets.Plo | |
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR='"/usr/bin"' -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT hash.lo -MD -MP -MF .deps/hash.Tpo -c -o hash.lo /home/ryan/packages/trunk/src/binutils-gdb/bfd/hash.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR=\"/usr/bin\" -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT hash.lo -MD -MP -MF .deps/hash.Tpo -c /home/ryan/packages/trunk/src/binutils-gdb/bfd/hash.c -fPIC -DPIC -o .libs/hash.o | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR=\"/usr/bin\" -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT hash.lo -MD -MP -MF .deps/hash.Tpo -c /home/ryan/packages/trunk/src/binutils-gdb/bfd/hash.c -fPIC -DPIC -o hash.o >/dev/null 2>&1 | |
mv -f .deps/hash.Tpo .deps/hash.Plo | |
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR='"/usr/bin"' -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT linker.lo -MD -MP -MF .deps/linker.Tpo -c -o linker.lo /home/ryan/packages/trunk/src/binutils-gdb/bfd/linker.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR=\"/usr/bin\" -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT linker.lo -MD -MP -MF .deps/linker.Tpo -c /home/ryan/packages/trunk/src/binutils-gdb/bfd/linker.c -fPIC -DPIC -o .libs/linker.o | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR=\"/usr/bin\" -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT linker.lo -MD -MP -MF .deps/linker.Tpo -c /home/ryan/packages/trunk/src/binutils-gdb/bfd/linker.c -fPIC -DPIC -o linker.o >/dev/null 2>&1 | |
mv -f .deps/linker.Tpo .deps/linker.Plo | |
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR='"/usr/bin"' -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT srec.lo -MD -MP -MF .deps/srec.Tpo -c -o srec.lo /home/ryan/packages/trunk/src/binutils-gdb/bfd/srec.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR=\"/usr/bin\" -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT srec.lo -MD -MP -MF .deps/srec.Tpo -c /home/ryan/packages/trunk/src/binutils-gdb/bfd/srec.c -fPIC -DPIC -o .libs/srec.o | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR=\"/usr/bin\" -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT srec.lo -MD -MP -MF .deps/srec.Tpo -c /home/ryan/packages/trunk/src/binutils-gdb/bfd/srec.c -fPIC -DPIC -o srec.o >/dev/null 2>&1 | |
mv -f .deps/srec.Tpo .deps/srec.Plo | |
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR='"/usr/bin"' -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT binary.lo -MD -MP -MF .deps/binary.Tpo -c -o binary.lo /home/ryan/packages/trunk/src/binutils-gdb/bfd/binary.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR=\"/usr/bin\" -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT binary.lo -MD -MP -MF .deps/binary.Tpo -c /home/ryan/packages/trunk/src/binutils-gdb/bfd/binary.c -fPIC -DPIC -o .libs/binary.o | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR=\"/usr/bin\" -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT binary.lo -MD -MP -MF .deps/binary.Tpo -c /home/ryan/packages/trunk/src/binutils-gdb/bfd/binary.c -fPIC -DPIC -o binary.o >/dev/null 2>&1 | |
mv -f .deps/binary.Tpo .deps/binary.Plo | |
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR='"/usr/bin"' -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT tekhex.lo -MD -MP -MF .deps/tekhex.Tpo -c -o tekhex.lo /home/ryan/packages/trunk/src/binutils-gdb/bfd/tekhex.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR=\"/usr/bin\" -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT tekhex.lo -MD -MP -MF .deps/tekhex.Tpo -c /home/ryan/packages/trunk/src/binutils-gdb/bfd/tekhex.c -fPIC -DPIC -o .libs/tekhex.o | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR=\"/usr/bin\" -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT tekhex.lo -MD -MP -MF .deps/tekhex.Tpo -c /home/ryan/packages/trunk/src/binutils-gdb/bfd/tekhex.c -fPIC -DPIC -o tekhex.o >/dev/null 2>&1 | |
mv -f .deps/tekhex.Tpo .deps/tekhex.Plo | |
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR='"/usr/bin"' -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT ihex.lo -MD -MP -MF .deps/ihex.Tpo -c -o ihex.lo /home/ryan/packages/trunk/src/binutils-gdb/bfd/ihex.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR=\"/usr/bin\" -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT ihex.lo -MD -MP -MF .deps/ihex.Tpo -c /home/ryan/packages/trunk/src/binutils-gdb/bfd/ihex.c -fPIC -DPIC -o .libs/ihex.o | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR=\"/usr/bin\" -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT ihex.lo -MD -MP -MF .deps/ihex.Tpo -c /home/ryan/packages/trunk/src/binutils-gdb/bfd/ihex.c -fPIC -DPIC -o ihex.o >/dev/null 2>&1 | |
mv -f .deps/ihex.Tpo .deps/ihex.Plo | |
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR='"/usr/bin"' -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT stabs.lo -MD -MP -MF .deps/stabs.Tpo -c -o stabs.lo /home/ryan/packages/trunk/src/binutils-gdb/bfd/stabs.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR=\"/usr/bin\" -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT stabs.lo -MD -MP -MF .deps/stabs.Tpo -c /home/ryan/packages/trunk/src/binutils-gdb/bfd/stabs.c -fPIC -DPIC -o .libs/stabs.o | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR=\"/usr/bin\" -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT stabs.lo -MD -MP -MF .deps/stabs.Tpo -c /home/ryan/packages/trunk/src/binutils-gdb/bfd/stabs.c -fPIC -DPIC -o stabs.o >/dev/null 2>&1 | |
mv -f .deps/stabs.Tpo .deps/stabs.Plo | |
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR='"/usr/bin"' -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT stab-syms.lo -MD -MP -MF .deps/stab-syms.Tpo -c -o stab-syms.lo /home/ryan/packages/trunk/src/binutils-gdb/bfd/stab-syms.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR=\"/usr/bin\" -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT stab-syms.lo -MD -MP -MF .deps/stab-syms.Tpo -c /home/ryan/packages/trunk/src/binutils-gdb/bfd/stab-syms.c -fPIC -DPIC -o .libs/stab-syms.o | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR=\"/usr/bin\" -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT stab-syms.lo -MD -MP -MF .deps/stab-syms.Tpo -c /home/ryan/packages/trunk/src/binutils-gdb/bfd/stab-syms.c -fPIC -DPIC -o stab-syms.o >/dev/null 2>&1 | |
mv -f .deps/stab-syms.Tpo .deps/stab-syms.Plo | |
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR='"/usr/bin"' -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT merge.lo -MD -MP -MF .deps/merge.Tpo -c -o merge.lo /home/ryan/packages/trunk/src/binutils-gdb/bfd/merge.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR=\"/usr/bin\" -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT merge.lo -MD -MP -MF .deps/merge.Tpo -c /home/ryan/packages/trunk/src/binutils-gdb/bfd/merge.c -fPIC -DPIC -o .libs/merge.o | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR=\"/usr/bin\" -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT merge.lo -MD -MP -MF .deps/merge.Tpo -c /home/ryan/packages/trunk/src/binutils-gdb/bfd/merge.c -fPIC -DPIC -o merge.o >/dev/null 2>&1 | |
mv -f .deps/merge.Tpo .deps/merge.Plo | |
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR='"/usr/bin"' -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT dwarf2.lo -MD -MP -MF .deps/dwarf2.Tpo -c -o dwarf2.lo -DDEBUGDIR=\"/usr/lib/debug\" /home/ryan/packages/trunk/src/binutils-gdb/bfd/dwarf2.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR=\"/usr/bin\" -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT dwarf2.lo -MD -MP -MF .deps/dwarf2.Tpo -c -DDEBUGDIR=\"/usr/lib/debug\" /home/ryan/packages/trunk/src/binutils-gdb/bfd/dwarf2.c -fPIC -DPIC -o .libs/dwarf2.o | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR=\"/usr/bin\" -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT dwarf2.lo -MD -MP -MF .deps/dwarf2.Tpo -c -DDEBUGDIR=\"/usr/lib/debug\" /home/ryan/packages/trunk/src/binutils-gdb/bfd/dwarf2.c -fPIC -DPIC -o dwarf2.o >/dev/null 2>&1 | |
mv -f .deps/dwarf2.Tpo .deps/dwarf2.Plo | |
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR='"/usr/bin"' -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT simple.lo -MD -MP -MF .deps/simple.Tpo -c -o simple.lo /home/ryan/packages/trunk/src/binutils-gdb/bfd/simple.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR=\"/usr/bin\" -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT simple.lo -MD -MP -MF .deps/simple.Tpo -c /home/ryan/packages/trunk/src/binutils-gdb/bfd/simple.c -fPIC -DPIC -o .libs/simple.o | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR=\"/usr/bin\" -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT simple.lo -MD -MP -MF .deps/simple.Tpo -c /home/ryan/packages/trunk/src/binutils-gdb/bfd/simple.c -fPIC -DPIC -o simple.o >/dev/null 2>&1 | |
mv -f .deps/simple.Tpo .deps/simple.Plo | |
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR='"/usr/bin"' -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT compress.lo -MD -MP -MF .deps/compress.Tpo -c -o compress.lo /home/ryan/packages/trunk/src/binutils-gdb/bfd/compress.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR=\"/usr/bin\" -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT compress.lo -MD -MP -MF .deps/compress.Tpo -c /home/ryan/packages/trunk/src/binutils-gdb/bfd/compress.c -fPIC -DPIC -o .libs/compress.o | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR=\"/usr/bin\" -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT compress.lo -MD -MP -MF .deps/compress.Tpo -c /home/ryan/packages/trunk/src/binutils-gdb/bfd/compress.c -fPIC -DPIC -o compress.o >/dev/null 2>&1 | |
mv -f .deps/compress.Tpo .deps/compress.Plo | |
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR='"/usr/bin"' -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT verilog.lo -MD -MP -MF .deps/verilog.Tpo -c -o verilog.lo /home/ryan/packages/trunk/src/binutils-gdb/bfd/verilog.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR=\"/usr/bin\" -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT verilog.lo -MD -MP -MF .deps/verilog.Tpo -c /home/ryan/packages/trunk/src/binutils-gdb/bfd/verilog.c -fPIC -DPIC -o .libs/verilog.o | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR=\"/usr/bin\" -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT verilog.lo -MD -MP -MF .deps/verilog.Tpo -c /home/ryan/packages/trunk/src/binutils-gdb/bfd/verilog.c -fPIC -DPIC -o verilog.o >/dev/null 2>&1 | |
mv -f .deps/verilog.Tpo .deps/verilog.Plo | |
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR='"/usr/bin"' -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT elf64-x86-64.lo -MD -MP -MF .deps/elf64-x86-64.Tpo -c -o elf64-x86-64.lo /home/ryan/packages/trunk/src/binutils-gdb/bfd/elf64-x86-64.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR=\"/usr/bin\" -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT elf64-x86-64.lo -MD -MP -MF .deps/elf64-x86-64.Tpo -c /home/ryan/packages/trunk/src/binutils-gdb/bfd/elf64-x86-64.c -fPIC -DPIC -o .libs/elf64-x86-64.o | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR=\"/usr/bin\" -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT elf64-x86-64.lo -MD -MP -MF .deps/elf64-x86-64.Tpo -c /home/ryan/packages/trunk/src/binutils-gdb/bfd/elf64-x86-64.c -fPIC -DPIC -o elf64-x86-64.o >/dev/null 2>&1 | |
mv -f .deps/elf64-x86-64.Tpo .deps/elf64-x86-64.Plo | |
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I. -I/home/ryan/packages/trunk/src/binutils-gdb/bfd -I/home/ryan/packages/trunk/src/binutils-gdb/bfd/../include -DHAVE_x86_64_elf64_vec -DHAVE_i386_elf32_vec -DHAVE_x86_64_elf32_vec -DHAVE_i386_aout_linux_vec -DHAVE_i386_pei_vec -DHAVE_x86_64_pei_vec -DHAVE_l1om_elf64_vec -DHAVE_k1om_elf64_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -DBINDIR='"/usr/bin"' -D_FORTIFY_SOURCE=2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -MT elf-ifunc.lo -MD -MP -MF .deps/elf-ifunc.Tpo -c -o elf-ifunc.lo /home/ryan/packages/trunk/src/binutils-gdb/bfd/elf-ifunc.c |