Build of ext3grep with clang_glibc toolchain

The build took 00h 04m 11s and was NOT successful.

The program in this build is written in the following languages, according to sloccount:

SLOCLanguage
9,411 cpp
3,467 sh
1,499 makefile
14,377 total

The process tree of the build process is here.

Log

To avoid scrolling, you may jump to the last line of the invocation of makepkg that was used to build this package.

Removed vanilla repositories from pacman.conf and added:
# [tuscan]
# Server = file:///var/cache/pacman/pkg/

CMD: pacman -Syy --noconfirm
# :: Synchronizing package databases...
# downloading tuscan.db...

Copied permanent toolchain into container-local sysroot
# /toolchain_root/sysroot --> /sysroot/sysroot
# /toolchain_root/lib --> /sysroot/lib
# /toolchain_root/sbin --> /sysroot/sbin
# /toolchain_root/lib64 --> /sysroot/lib64
# /toolchain_root/etc --> /sysroot/etc
# /toolchain_root/share --> /sysroot/share
# /toolchain_root/bin --> /sysroot/bin
# /toolchain_root/var --> /sysroot/var
# /toolchain_root/usr --> /sysroot/usr
# /toolchain_root/glibc-build --> /sysroot/glibc-build
# /toolchain_root/x86_64-pc-linux-gnu --> /sysroot/x86_64-pc-linux-gnu
# /toolchain_root/include --> /sysroot/include
# /toolchain_root/libexec --> /sysroot/libexec

CMD: sudo -u tuscan PATH=/usr/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin CC=clang CXX=clang++ red makepkg --noextract --syncdeps --skipinteg --skippgpcheck --skipchecksums --noconfirm --nocolor --log --noprogressbar --nocheck
# ==> Making package: ext3grep 0.10.2-4 (Thu Apr 13 12:22:34 UTC 2017)
# ==> Checking runtime dependencies...
# ==> Checking buildtime dependencies...
# ==> WARNING: Using existing $srcdir/ tree
# ==> Starting build()...
# patching file src/ext3.h
# configure: WARNING: If you wanted to set the --build type, don't use --host.
# If a cross compiler is detected then cross compile mode will be used.
# checking for a BSD-compatible install... /usr/bin/install -c
# checking whether build environment is sane... yes
# checking for x86_64-unknown-linux-strip... no
# checking for strip... strip
# checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
# checking for gawk... gawk
# checking whether make sets $(MAKE)... yes
# checking whether to enable maintainer-specific portions of Makefiles... no
# checking for x86_64-unknown-linux-gcc... clang
# checking whether the C compiler works... yes
# checking for C compiler default output file name... a.out
# checking for suffix of executables...
# checking whether we are cross compiling... no
# checking for suffix of object files... o
# checking whether we are using the GNU C compiler... yes
# checking whether clang accepts -g... yes
# checking for clang option to accept ISO C89... none needed
# checking for style of include used by make... GNU
# checking dependency style of clang... pch
# checking whether we are using the GNU C++ compiler... yes
# checking whether clang++ accepts -g... yes
# checking dependency style of clang++... pch
# checking how to run the C++ preprocessor... clang++ -E
# checking how to run the C preprocessor... clang -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 whether byte ordering is bigendian... no
# checking build system type... x86_64-unknown-linux-gnu
# checking host system type... x86_64-unknown-linux-gnu
# checking for compiler with PCH support... no
# checking for special C compiler options needed for large files... no
# checking for _FILE_OFFSET_BITS value needed for large files... no
# checking ext2fs/ext2_fs.h usability... yes
# checking ext2fs/ext2_fs.h presence... yes
# checking for ext2fs/ext2_fs.h... yes
# checking ext2fs/ext2fs.h usability... yes
# checking ext2fs/ext2fs.h presence... yes
# checking for ext2fs/ext2fs.h... yes
# configure: creating ./config.status
# config.status: creating src/timestamp-sys.h
# config.status: creating sys.h
# config.status: creating Makefile
# config.status: creating src/Makefile
# config.status: creating config.h
# config.status: executing depfiles commands
# make all-recursive
# make[1]: Entering directory '/tmp/ext3grep/src/ext3grep-0.10.2'
# Making all in src
# make[2]: Entering directory '/tmp/ext3grep/src/ext3grep-0.10.2/src'
# make all-am
# make[3]: Entering directory '/tmp/ext3grep/src/ext3grep-0.10.2/src'
# source='custom.cc' object='ext3grep-custom.o' libtool=no \
# DEPDIR=.deps depmode=pch /bin/sh ../depcomp \
# clang++ -DHAVE_CONFIG_H -I. -I.. -O2 -DUSE_MMAP=1 -I/usr/include/ext2fs -I/usr/include/et -c -o ext3grep-custom.o `test -f 'custom.cc' || echo './'`custom.cc
# In file included from custom.cc:39:
# In file included from ./forward_declarations.h:32:
# ./is_blockdetection.h:46:33: error: no member named 'memset' in namespace 'std'; did you mean simply 'memset'?
# DirectoryBlockStats(void) { std::memset(this, 0, sizeof(DirectoryBlockStats)); }
# ^~~~~~~~~~~
# memset
# /usr/include/string.h:62:14: note: 'memset' declared here
# extern void *memset (void *__s, int __c, size_t __n) __THROW __nonnull ((1));
# ^
# custom.cc:60:7: warning: expression result unused [-Wunused-value]
# if (!is_indirect_block(block_ptr), true)
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# custom.cc:68:9: warning: expression result unused [-Wunused-value]
# if (!is_indirect_block(indirect_block_ptr), true)
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# custom.cc:79:7: warning: expression result unused [-Wunused-value]
# if (!is_indirect_block(block_ptr), true)
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# custom.cc:1381:3: error: no member named 'memset' in namespace 'std'; did you mean simply 'memset'?
# std::memset(freq, 0, sizeof(freq));
# ^~~~~~~~~~~
# memset
# /usr/include/string.h:62:14: note: 'memset' declared here
# extern void *memset (void *__s, int __c, size_t __n) __THROW __nonnull ((1));
# ^
# 3 warnings and 2 errors generated.
# make[3]: *** [Makefile:431: ext3grep-custom.o] Error 1
# make[3]: Leaving directory '/tmp/ext3grep/src/ext3grep-0.10.2/src'
# make[2]: *** [Makefile:291: all] Error 2
# make[2]: Leaving directory '/tmp/ext3grep/src/ext3grep-0.10.2/src'
# make[1]: *** [Makefile:294: all-recursive] Error 1
# make[1]: Leaving directory '/tmp/ext3grep/src/ext3grep-0.10.2'
# make: *** [Makefile:232: all] Error 2
# ==> ERROR: A failure occurred in build().
# Aborting...

Printing config logfiles

CMD: config logfiles '/tmp/ext3grep/src/ext3grep-0.10.2/config.log'
# This file contains any messages produced by compilers while
# running configure, to aid debugging if configure makes a mistake.
#
# It was created by ext3grep configure 0.10.2, which was
# generated by GNU Autoconf 2.65. Invocation command line was
#
# $ ./configure --host=x86_64-unknown-linux --prefix=/usr
#
# ## --------- ##
# ## Platform. ##
# ## --------- ##
#
# hostname = 86d37e14181c
# uname -m = x86_64
# uname -r = 4.10.6-1-ARCH
# uname -s = Linux
# uname -v = #1 SMP PREEMPT Mon Mar 27 08:28:22 CEST 2017
#
# /usr/bin/uname -p = unknown
# /bin/uname -X = unknown
#
# /bin/arch = unknown
# /usr/bin/arch -k = unknown
# /usr/convex/getsysinfo = unknown
# /usr/bin/hostinfo = unknown
# /bin/machine = unknown
# /usr/bin/oslevel = unknown
# /bin/universe = unknown
#
# PATH: /usr/bin
# PATH: /usr/local/sbin
# PATH: /usr/local/bin
# PATH: /usr/sbin
# PATH: /usr/bin
# PATH: /sbin
# PATH: /bin
#
#
# ## ----------- ##
# ## Core tests. ##
# ## ----------- ##
#
# configure:2234: checking for a BSD-compatible install
# configure:2302: result: /usr/bin/install -c
# configure:2313: checking whether build environment is sane
# configure:2363: result: yes
# configure:2412: checking for x86_64-unknown-linux-strip
# configure:2442: result: no
# configure:2452: checking for strip
# configure:2468: found /usr/bin/strip
# configure:2479: result: strip
# configure:2504: checking for a thread-safe mkdir -p
# configure:2543: result: /usr/bin/mkdir -p
# configure:2556: checking for gawk
# configure:2572: found /usr/bin/gawk
# configure:2583: result: gawk
# configure:2594: checking whether make sets $(MAKE)
# configure:2616: result: yes
# configure:2698: checking whether to enable maintainer-specific portions of Makefiles
# configure:2707: result: no
# configure:2744: checking for x86_64-unknown-linux-gcc
# configure:2771: result: clang
# configure:3040: checking for C compiler version
# configure:3049: clang --version >&5
# clang version 3.8.0 (tags/RELEASE_380/final)
# Target: x86_64-unknown-linux-gnu
# Thread model: posix
# InstalledDir: /usr/bin
# configure:3060: $? = 0
# configure:3049: clang -v >&5
# clang version 3.8.0 (tags/RELEASE_380/final)
# Target: x86_64-unknown-linux-gnu
# Thread model: posix
# InstalledDir: /usr/bin
# Found candidate GCC installation: /usr/bin/../lib/gcc/x86_64-pc-linux-gnu/6.1.1
# Found candidate GCC installation: /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/6.1.1
# Found candidate GCC installation: /usr/lib/gcc/x86_64-pc-linux-gnu/6.1.1
# Found candidate GCC installation: /usr/lib64/gcc/x86_64-pc-linux-gnu/6.1.1
# Selected GCC installation: /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/6.1.1
# Candidate multilib: .;@m64
# ... rest of stderr output deleted ...
# configure:3060: $? = 0
# configure:3049: clang -V >&5
# clang-3.8: error: argument to '-V' is missing (expected 1 value)
# clang-3.8: error: no input files
# configure:3060: $? = 1
# configure:3049: clang -qversion >&5
# clang-3.8: error: unknown argument: '-qversion'
# clang-3.8: error: no input files
# configure:3060: $? = 1
# configure:3080: checking whether the C compiler works
# configure:3102: clang conftest.c >&5
# configure:3106: $? = 0
# configure:3155: result: yes
# configure:3158: checking for C compiler default output file name
# configure:3160: result: a.out
# configure:3166: checking for suffix of executables
# configure:3173: clang -o conftest conftest.c >&5
# configure:3177: $? = 0
# configure:3199: result:
# configure:3221: checking whether we are cross compiling
# configure:3229: clang -o conftest conftest.c >&5
# configure:3233: $? = 0
# configure:3240: ./conftest
# configure:3244: $? = 0
# configure:3259: result: no
# configure:3264: checking for suffix of object files
# configure:3286: clang -c conftest.c >&5
# configure:3290: $? = 0
# configure:3311: result: o
# configure:3315: checking whether we are using the GNU C compiler
# configure:3334: clang -c conftest.c >&5
# configure:3334: $? = 0
# configure:3343: result: yes
# configure:3352: checking whether clang accepts -g
# configure:3372: clang -c -g conftest.c >&5
# configure:3372: $? = 0
# configure:3413: result: yes
# configure:3430: checking for clang option to accept ISO C89
# configure:3494: clang -c conftest.c >&5
# configure:3494: $? = 0
# configure:3507: result: none needed
# configure:3538: checking for style of include used by make
# configure:3566: result: GNU
# configure:3591: checking dependency style of clang
# configure:3701: result: pch
# configure:3828: checking for C++ compiler version
# configure:3837: clang++ --version >&5
# clang version 3.8.0 (tags/RELEASE_380/final)
# Target: x86_64-unknown-linux-gnu
# Thread model: posix
# InstalledDir: /usr/bin
# configure:3848: $? = 0
# configure:3837: clang++ -v >&5
# clang version 3.8.0 (tags/RELEASE_380/final)
# Target: x86_64-unknown-linux-gnu
# Thread model: posix
# InstalledDir: /usr/bin
# Found candidate GCC installation: /usr/bin/../lib/gcc/x86_64-pc-linux-gnu/6.1.1
# Found candidate GCC installation: /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/6.1.1
# Found candidate GCC installation: /usr/lib/gcc/x86_64-pc-linux-gnu/6.1.1
# Found candidate GCC installation: /usr/lib64/gcc/x86_64-pc-linux-gnu/6.1.1
# Selected GCC installation: /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/6.1.1
# Candidate multilib: .;@m64
# ... rest of stderr output deleted ...
# configure:3848: $? = 0
# configure:3837: clang++ -V >&5
# clang-3.8: error: argument to '-V' is missing (expected 1 value)
# clang-3.8: error: no input files
# configure:3848: $? = 1
# configure:3837: clang++ -qversion >&5
# clang-3.8: error: unknown argument: '-qversion'
# clang-3.8: error: no input files
# configure:3848: $? = 1
# configure:3852: checking whether we are using the GNU C++ compiler
# configure:3871: clang++ -c conftest.cpp >&5
# configure:3871: $? = 0
# configure:3880: result: yes
# configure:3889: checking whether clang++ accepts -g
# configure:3909: clang++ -c -g conftest.cpp >&5
# configure:3909: $? = 0
# configure:3950: result: yes
# configure:3975: checking dependency style of clang++
# configure:4085: result: pch
# configure:4105: checking how to run the C++ preprocessor
# configure:4132: clang++ -E conftest.cpp
# configure:4132: $? = 0
# configure:4146: clang++ -E conftest.cpp
# conftest.cpp:11:10: fatal error: 'ac_nonexistent.h' file not found
# #include
# ^
# 1 error generated.
# configure:4146: $? = 1
# configure: failed program was:
# | /* confdefs.h */
# | #define PACKAGE_NAME "ext3grep"
# | #define PACKAGE_TARNAME "ext3grep"
# | #define PACKAGE_VERSION "0.10.2"
# | #define PACKAGE_STRING "ext3grep 0.10.2"
# | #define PACKAGE_BUGREPORT "carlo@alinoe.com"
# | #define PACKAGE_URL ""
# | #define PACKAGE "ext3grep"
# | #define VERSION "0.10.2"
# | /* end confdefs.h. */
# | #include
# configure:4171: result: clang++ -E
# configure:4191: clang++ -E conftest.cpp
# configure:4191: $? = 0
# configure:4205: clang++ -E conftest.cpp
# conftest.cpp:11:10: fatal error: 'ac_nonexistent.h' file not found
# #include
# ^
# 1 error generated.
# configure:4205: $? = 1
# configure: failed program was:
# | /* confdefs.h */
# | #define PACKAGE_NAME "ext3grep"
# | #define PACKAGE_TARNAME "ext3grep"
# | #define PACKAGE_VERSION "0.10.2"
# | #define PACKAGE_STRING "ext3grep 0.10.2"
# | #define PACKAGE_BUGREPORT "carlo@alinoe.com"
# | #define PACKAGE_URL ""
# | #define PACKAGE "ext3grep"
# | #define VERSION "0.10.2"
# | /* end confdefs.h. */
# | #include
# configure:4240: checking how to run the C preprocessor
# configure:4271: clang -E conftest.c
# configure:4271: $? = 0
# configure:4285: clang -E conftest.c
# conftest.c:11:10: fatal error: 'ac_nonexistent.h' file not found
# #include
# ^
# 1 error generated.
# configure:4285: $? = 1
# configure: failed program was:
# | /* confdefs.h */
# | #define PACKAGE_NAME "ext3grep"
# | #define PACKAGE_TARNAME "ext3grep"
# | #define PACKAGE_VERSION "0.10.2"
# | #define PACKAGE_STRING "ext3grep 0.10.2"
# | #define PACKAGE_BUGREPORT "carlo@alinoe.com"
# | #define PACKAGE_URL ""
# | #define PACKAGE "ext3grep"
# | #define VERSION "0.10.2"
# | /* end confdefs.h. */
# | #include
# configure:4310: result: clang -E
# configure:4330: clang -E conftest.c
# configure:4330: $? = 0
# configure:4344: clang -E conftest.c
# conftest.c:11:10: fatal error: 'ac_nonexistent.h' file not found
# #include
# ^
# 1 error generated.
# configure:4344: $? = 1
# configure: failed program was:
# | /* confdefs.h */
# | #define PACKAGE_NAME "ext3grep"
# | #define PACKAGE_TARNAME "ext3grep"
# | #define PACKAGE_VERSION "0.10.2"
# | #define PACKAGE_STRING "ext3grep 0.10.2"
# | #define PACKAGE_BUGREPORT "carlo@alinoe.com"
# | #define PACKAGE_URL ""
# | #define PACKAGE "ext3grep"
# | #define VERSION "0.10.2"
# | /* end confdefs.h. */
# | #include
# configure:4373: checking for grep that handles long lines and -e
# configure:4431: result: /usr/bin/grep
# configure:4436: checking for egrep
# configure:4498: result: /usr/bin/grep -E
# configure:4503: checking for ANSI C header files
# configure:4523: clang -c conftest.c >&5
# configure:4523: $? = 0
# configure:4596: clang -o conftest conftest.c >&5
# configure:4596: $? = 0
# configure:4596: ./conftest
# configure:4596: $? = 0
# configure:4607: result: yes
# configure:4620: checking for sys/types.h
# configure:4620: clang -c conftest.c >&5
# configure:4620: $? = 0
# configure:4620: result: yes
# configure:4620: checking for sys/stat.h
# configure:4620: clang -c conftest.c >&5
# configure:4620: $? = 0
# configure:4620: result: yes
# configure:4620: checking for stdlib.h
# configure:4620: clang -c conftest.c >&5
# configure:4620: $? = 0
# configure:4620: result: yes
# configure:4620: checking for string.h
# configure:4620: clang -c conftest.c >&5
# configure:4620: $? = 0
# configure:4620: result: yes
# configure:4620: checking for memory.h
# configure:4620: clang -c conftest.c >&5
# configure:4620: $? = 0
# configure:4620: result: yes
# configure:4620: checking for strings.h
# configure:4620: clang -c conftest.c >&5
# configure:4620: $? = 0
# configure:4620: result: yes
# configure:4620: checking for inttypes.h
# configure:4620: clang -c conftest.c >&5
# configure:4620: $? = 0
# configure:4620: result: yes
# configure:4620: checking for stdint.h
# configure:4620: clang -c conftest.c >&5
# configure:4620: $? = 0
# configure:4620: result: yes
# configure:4620: checking for unistd.h
# configure:4620: clang -c conftest.c >&5
# configure:4620: $? = 0
# configure:4620: result: yes
# configure:4633: checking whether byte ordering is bigendian
# configure:4648: clang -c conftest.c >&5
# conftest.c:22:9: error: unknown type name 'not'
# not a universal capable compiler
# ^
# conftest.c:22:14: error: expected ';' after top level declarator
# not a universal capable compiler
# ^
# ;
# 2 errors generated.
# configure:4648: $? = 1
# configure: failed program was:
# | /* confdefs.h */
# | #define PACKAGE_NAME "ext3grep"
# | #define PACKAGE_TARNAME "ext3grep"
# | #define PACKAGE_VERSION "0.10.2"
# | #define PACKAGE_STRING "ext3grep 0.10.2"
# | #define PACKAGE_BUGREPORT "carlo@alinoe.com"
# | #define PACKAGE_URL ""
# | #define PACKAGE "ext3grep"
# | #define VERSION "0.10.2"
# | #define STDC_HEADERS 1
# | #define HAVE_SYS_TYPES_H 1
# | #define HAVE_SYS_STAT_H 1
# | #define HAVE_STDLIB_H 1
# | #define HAVE_STRING_H 1
# | #define HAVE_MEMORY_H 1
# | #define HAVE_STRINGS_H 1
# | #define HAVE_INTTYPES_H 1
# | #define HAVE_STDINT_H 1
# | #define HAVE_UNISTD_H 1
# | /* end confdefs.h. */
# | #ifndef __APPLE_CC__
# | not a universal capable compiler
# | #endif
# | typedef int dummy;
# |
# configure:4693: clang -c conftest.c >&5
# configure:4693: $? = 0
# configure:4711: clang -c conftest.c >&5
# conftest.c:28:4: error: use of undeclared identifier 'not'
# not big endian
# ^
# 1 error generated.
# configure:4711: $? = 1
# configure: failed program was:
# | /* confdefs.h */
# | #define PACKAGE_NAME "ext3grep"
# | #define PACKAGE_TARNAME "ext3grep"
# | #define PACKAGE_VERSION "0.10.2"
# | #define PACKAGE_STRING "ext3grep 0.10.2"
# | #define PACKAGE_BUGREPORT "carlo@alinoe.com"
# | #define PACKAGE_URL ""
# | #define PACKAGE "ext3grep"
# | #define VERSION "0.10.2"
# | #define STDC_HEADERS 1
# | #define HAVE_SYS_TYPES_H 1
# | #define HAVE_SYS_STAT_H 1
# | #define HAVE_STDLIB_H 1
# | #define HAVE_STRING_H 1
# | #define HAVE_MEMORY_H 1
# | #define HAVE_STRINGS_H 1
# | #define HAVE_INTTYPES_H 1
# | #define HAVE_STDINT_H 1
# | #define HAVE_UNISTD_H 1
# | /* end confdefs.h. */
# | #include
# | #include
# |
# | int
# | main ()
# | {
# | #if BYTE_ORDER != BIG_ENDIAN
# | not big endian
# | #endif
# |
# | ;
# | return 0;
# | }
# configure:4839: result: no
# configure:4861: checking build system type
# configure:4875: result: x86_64-unknown-linux-gnu
# configure:4895: checking host system type
# configure:4908: result: x86_64-unknown-linux-gnu
# configure:5249: checking for compiler with PCH support
# In file included from conftest.cc:1:
# ./conftest.h:1:2: error: "pch failed"
# #error "pch failed"
# ^
# 1 error generated.
# configure:5285: result: no
# configure:5380: checking for special C compiler options needed for large files
# configure:5425: result: no
# configure:5431: checking for _FILE_OFFSET_BITS value needed for large files
# configure:5456: clang -c conftest.c >&5
# configure:5456: $? = 0
# configure:5488: result: no
# configure:5577: checking ext2fs/ext2_fs.h usability
# configure:5577: clang -c conftest.c >&5
# configure:5577: $? = 0
# configure:5577: result: yes
# configure:5577: checking ext2fs/ext2_fs.h presence
# configure:5577: clang -E conftest.c
# configure:5577: $? = 0
# configure:5577: result: yes
# configure:5577: checking for ext2fs/ext2_fs.h
# configure:5577: result: yes
# configure:5577: checking ext2fs/ext2fs.h usability
# configure:5577: clang -c conftest.c >&5
# configure:5577: $? = 0
# configure:5577: result: yes
# configure:5577: checking ext2fs/ext2fs.h presence
# configure:5577: clang -E conftest.c
# configure:5577: $? = 0
# configure:5577: result: yes
# configure:5577: checking for ext2fs/ext2fs.h
# configure:5577: result: yes
# configure:5763: creating ./config.status
#
# ## ---------------------- ##
# ## Running config.status. ##
# ## ---------------------- ##
#
# This file was extended by ext3grep config.status 0.10.2, which was
# generated by GNU Autoconf 2.65. Invocation command line was
#
# CONFIG_FILES =
# CONFIG_HEADERS =
# CONFIG_LINKS =
# CONFIG_COMMANDS =
# $ ./config.status
#
# on 86d37e14181c
#
# config.status:898: creating src/timestamp-sys.h
# config.status:898: creating Makefile
# config.status:898: creating src/Makefile
# config.status:898: creating config.h
# config.status:1118: executing depfiles commands
#
# ## ---------------- ##
# ## Cache variables. ##
# ## ---------------- ##
#
# ac_cv_build=x86_64-unknown-linux-gnu
# ac_cv_c_bigendian=no
# ac_cv_c_compiler_gnu=yes
# ac_cv_cxx_compiler_gnu=yes
# ac_cv_env_CCC_set=
# ac_cv_env_CCC_value=
# ac_cv_env_CC_set=set
# ac_cv_env_CC_value=clang
# ac_cv_env_CFLAGS_set=set
# ac_cv_env_CFLAGS_value=
# ac_cv_env_CPPFLAGS_set=set
# ac_cv_env_CPPFLAGS_value=
# ac_cv_env_CPP_set=
# ac_cv_env_CPP_value=
# ac_cv_env_CXXCPP_set=
# ac_cv_env_CXXCPP_value=
# ac_cv_env_CXXFLAGS_set=set
# ac_cv_env_CXXFLAGS_value=
# ac_cv_env_CXX_set=set
# ac_cv_env_CXX_value=clang++
# ac_cv_env_LDFLAGS_set=set
# ac_cv_env_LDFLAGS_value=
# ac_cv_env_LIBS_set=
# ac_cv_env_LIBS_value=
# ac_cv_env_build_alias_set=
# ac_cv_env_build_alias_value=
# ac_cv_env_host_alias_set=set
# ac_cv_env_host_alias_value=x86_64-unknown-linux
# ac_cv_env_target_alias_set=
# ac_cv_env_target_alias_value=
# ac_cv_header_ext2fs_ext2_fs_h=yes
# ac_cv_header_ext2fs_ext2fs_h=yes
# ac_cv_header_inttypes_h=yes
# ac_cv_header_memory_h=yes
# ac_cv_header_stdc=yes
# ac_cv_header_stdint_h=yes
# ac_cv_header_stdlib_h=yes
# ac_cv_header_string_h=yes
# ac_cv_header_strings_h=yes
# ac_cv_header_sys_stat_h=yes
# ac_cv_header_sys_types_h=yes
# ac_cv_header_unistd_h=yes
# ac_cv_host=x86_64-unknown-linux-gnu
# ac_cv_objext=o
# ac_cv_path_EGREP='/usr/bin/grep -E'
# ac_cv_path_GREP=/usr/bin/grep
# ac_cv_path_install='/usr/bin/install -c'
# ac_cv_path_mkdir=/usr/bin/mkdir
# ac_cv_prog_AWK=gawk
# ac_cv_prog_CC=clang
# ac_cv_prog_CPP='clang -E'
# ac_cv_prog_CXXCPP='clang++ -E'
# ac_cv_prog_ac_ct_STRIP=strip
# ac_cv_prog_cc_c89=
# ac_cv_prog_cc_g=yes
# ac_cv_prog_cxx_g=yes
# ac_cv_prog_make_make_set=yes
# ac_cv_sys_file_offset_bits=no
# ac_cv_sys_largefile_CC=no
# am_cv_CC_dependencies_compiler_type=pch
# am_cv_CXX_dependencies_compiler_type=pch
# cw_cv_prog_CXX_pch=no
#
# ## ----------------- ##
# ## Output variables. ##
# ## ----------------- ##
#
# ACLOCAL='${SHELL} /tmp/ext3grep/src/ext3grep-0.10.2/missing --run aclocal-1.11'
# ACLOCAL_CWFLAGS='-I /usr/share/cwautomacros/m4'
# AMDEPBACKSLASH='\'
# AMDEP_FALSE='#'
# AMDEP_TRUE=''
# AMTAR='${SHELL} /tmp/ext3grep/src/ext3grep-0.10.2/missing --run tar'
# AUTOCONF='${SHELL} /tmp/ext3grep/src/ext3grep-0.10.2/missing --run autoconf'
# AUTOHEADER='${SHELL} /tmp/ext3grep/src/ext3grep-0.10.2/missing --run autoheader'
# AUTOMAKE='${SHELL} /tmp/ext3grep/src/ext3grep-0.10.2/missing --run automake-1.11'
# AWK='gawk'
# CC='clang'
# CCDEPMODE='depmode=pch'
# CC_FINGER_PRINT='clang version 3.8.0 (tags/RELEASE_380/final)'
# CFLAGS=''
# CPP='clang -E'
# CPPFLAGS=''
# CWD_FLAGS=''
# CWD_LIBS=''
# CWD_R_FLAGS=''
# CWD_R_LIBS=''
# CW_DEBUG_FLAGS=''
# CW_OPTIMISE_FLAGS='-O2'
# CW_STRIPPED_CXXFLAGS=''
# CW_WARNING_FLAGS=''
# CXX='clang++'
# CXXCPP='clang++ -E'
# CXXCPP_FINGER_PRINT='clang version 3.8.0 (tags/RELEASE_380/final)'
# CXXDEPMODE='depmode=pch'
# CXXFLAGS='-O2 -DUSE_MMAP=1 -I/usr/include/ext2fs -I/usr/include/et'
# CXXFLAGS_FINGER_PRINT='-O2 -DUSE_MMAP=1 -I/usr/include/ext2fs -I/usr/include/et'
# CXX_FINGER_PRINT='clang version 3.8.0 (tags/RELEASE_380/final)'
# CYGPATH_W='echo'
# DEFS='-DHAVE_CONFIG_H'
# DEPDIR='.deps'
# DOXYGEN_CWDEBUG=''
# DOXYGEN_DEBUG=''
# ECHO_C=''
# ECHO_N='-n'
# ECHO_T=''
# EGREP='/usr/bin/grep -E'
# EXEEXT=''
# GREP='/usr/bin/grep'
# INSTALL_DATA='${INSTALL} -m 644'
# INSTALL_PROGRAM='${INSTALL}'
# INSTALL_SCRIPT='${INSTALL}'
# INSTALL_STRIP_PROGRAM='$(install_sh) -c -s'
# LDFLAGS=''
# LIBOBJS=''
# LIBS=''
# LTLIBOBJS=''
# MAINT='#'
# MAINTAINER_MODE_FALSE=''
# MAINTAINER_MODE_TRUE='#'
# MAKEINFO='${SHELL} /tmp/ext3grep/src/ext3grep-0.10.2/missing --run makeinfo'
# MKDIR_P='/usr/bin/mkdir -p'
# Makefilein=''
# OBJEXT='o'
# PACKAGE='ext3grep'
# PACKAGE_BUGREPORT='carlo@alinoe.com'
# PACKAGE_NAME='ext3grep'
# PACKAGE_STRING='ext3grep 0.10.2'
# PACKAGE_TARNAME='ext3grep'
# PACKAGE_URL=''
# PACKAGE_VERSION='0.10.2'
# PATH_SEPARATOR=':'
# PCHFLAGS=''
# SET_MAKE=''
# SHELL='/bin/sh'
# STRIP='strip'
# USE_CWDEBUG_FALSE=''
# USE_CWDEBUG_TRUE='#'
# USE_DEBUG_FALSE=''
# USE_DEBUG_TRUE='#'
# USE_LIBCWD='no'
# USE_PCH_FALSE=''
# USE_PCH_TRUE='#'
# USE_SVN_FALSE=''
# USE_SVN_TRUE='#'
# VERSION='0.10.2'
# ac_ct_CC=''
# ac_ct_CXX=''
# am__EXEEXT_FALSE=''
# am__EXEEXT_TRUE='#'
# am__fastdepCC_FALSE=''
# am__fastdepCC_TRUE='#'
# am__fastdepCXX_FALSE=''
# am__fastdepCXX_TRUE='#'
# am__include='include'
# am__isrc=''
# am__leading_dot='.'
# am__quote=''
# am__tar='${AMTAR} chof - "$$tardir"'
# am__untar='${AMTAR} xf -'
# bindir='${exec_prefix}/bin'
# build='x86_64-unknown-linux-gnu'
# build_alias=''
# build_cpu='x86_64'
# build_os='linux-gnu'
# build_vendor='unknown'
# datadir='${datarootdir}'
# datarootdir='${prefix}/share'
# docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
# dvidir='${docdir}'
# exec_prefix='${prefix}'
# host='x86_64-unknown-linux-gnu'
# host_alias='x86_64-unknown-linux'
# host_cpu='x86_64'
# host_os='linux-gnu'
# host_vendor='unknown'
# htmldir='${docdir}'
# includedir='${prefix}/include'
# infodir='${datarootdir}/info'
# install_sh='${SHELL} /tmp/ext3grep/src/ext3grep-0.10.2/install-sh'
# libdir='${exec_prefix}/lib'
# libexecdir='${exec_prefix}/libexec'
# localedir='${datarootdir}/locale'
# localstatedir='${prefix}/var'
# mandir='${datarootdir}/man'
# mkdir_p='/usr/bin/mkdir -p'
# oldincludedir='/usr/include'
# pdfdir='${docdir}'
# prefix='/usr'
# program_transform_name='s,x,x,'
# psdir='${docdir}'
# sbindir='${exec_prefix}/sbin'
# sharedstatedir='${prefix}/com'
# sysconfdir='${prefix}/etc'
# target_alias=''
#
# ## ----------- ##
# ## confdefs.h. ##
# ## ----------- ##
#
# /* confdefs.h */
# #define PACKAGE_NAME "ext3grep"
# #define PACKAGE_TARNAME "ext3grep"
# #define PACKAGE_VERSION "0.10.2"
# #define PACKAGE_STRING "ext3grep 0.10.2"
# #define PACKAGE_BUGREPORT "carlo@alinoe.com"
# #define PACKAGE_URL ""
# #define PACKAGE "ext3grep"
# #define VERSION "0.10.2"
# #define STDC_HEADERS 1
# #define HAVE_SYS_TYPES_H 1
# #define HAVE_SYS_STAT_H 1
# #define HAVE_STDLIB_H 1
# #define HAVE_STRING_H 1
# #define HAVE_MEMORY_H 1
# #define HAVE_STRINGS_H 1
# #define HAVE_INTTYPES_H 1
# #define HAVE_STDINT_H 1
# #define HAVE_UNISTD_H 1
# #define HAVE_EXT2FS_EXT2_FS_H 1
# #define HAVE_EXT2FS_EXT2FS_H 1
#
# configure: exit 0