The build took 00h 03m 17s and was SUCCESSFUL.
The program in this build is written in the following languages, according to sloccount:
SLOC | Language |
---|---|
2,247 |
ansic |
743 |
sh |
524 |
makefile |
81 |
perl |
3,595 |
total |
The process tree of the build process is here.
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:
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: fcrackzip 1.0-4 (Thu Apr 13 11:18:32 UTC 2017)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> WARNING: Using existing $srcdir/ tree
==> Starting build()...
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 gawk... gawk
checking whether make sets $(MAKE)... yes
checking for x86_64-unknown-linux-strip... no
checking for strip... strip
checking for x86_64-unknown-linux-gcc... clang
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 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... gcc3
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 for short... yes
checking size of short... 2
checking for int... yes
checking size of int... 4
checking for long... yes
checking size of long... 8
checking for an ANSI C-conforming const... yes
checking for inline... inline
checking for perl5... no
checking for perl... perl
checking for pgcc/egcs... checking for x86 asm... not x86
checking stdbool.h usability... yes
checking stdbool.h presence... yes
checking for stdbool.h... yes
checking getopt.h usability... yes
checking getopt.h presence... yes
checking for getopt.h... yes
checking for unistd.h... (cached) yes
checking sys/time.h usability... yes
checking sys/time.h presence... yes
checking for sys/time.h... yes
checking for gettimeofday... yes
checking for getopt_long... yes
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depfiles commands
make all-am
make[1]: Entering directory '/tmp/fcrackzip/src/fcrackzip-1.0'
if clang -DHAVE_CONFIG_H -I. -I. -I. -funroll-all-loops -O3 -MT main.o -MD -MP -MF ".deps/main.Tpo" \
-c -o main.o `test -f 'main.c' || echo './'`main.c; \
then mv -f ".deps/main.Tpo" ".deps/main.Po"; \
else rm -f ".deps/main.Tpo"; exit 1; \
fi
clang-3.8: warning: optimization flag '-funroll-all-loops' is not supported
main.c:132:14: warning: passing 'u8 [41]' to parameter of type 'char *' converts between pointers to integer types with different sign [-Wpointer-sign]
if (fgets (pw, MAX_PW+1, dict_file))
^~
/usr/include/stdio.h:622:38: note: passing argument to parameter '__s' here
extern char *fgets (char *__restrict __s, int __n, FILE *__restrict __stream)
^
main.c:134:18: warning: passing 'u8 [41]' to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
pw[strlen (pw) - 1] = 0;
^~
/usr/include/string.h:394:35: note: passing argument to parameter '__s' here
extern size_t strlen (const char *__s)
^
main.c:166:15: warning: passing 'u8 [41]' to parameter of type 'char *' converts between pointers to integer types with different sign [-Wpointer-sign]
strcpy (pw, "Martha");
^~
/usr/include/string.h:125:39: note: passing argument to parameter '__dest' here
extern char *strcpy (char *__restrict __dest, const char *__restrict __src)
^
main.c:261:15: warning: passing 'u8 [41]' to parameter of type 'char *' converts between pointers to integer types with different sign [-Wpointer-sign]
strcpy (pw, "abcdefghij");
^~
/usr/include/string.h:125:39: note: passing argument to parameter '__dest' here
extern char *strcpy (char *__restrict __dest, const char *__restrict __src)
^
main.c:333:13: warning: format specifies type 'int' but the argument has type 'long' [-Wformat]
crack_method - methods,
^~~~~~~~~~~~~~~~~~~~~~
main.c:378:17: warning: passing 'u8 [41]' to parameter of type 'char *' converts between pointers to integer types with different sign [-Wpointer-sign]
strcpy (pw, optarg);
^~
/usr/include/string.h:125:39: note: passing argument to parameter '__dest' here
extern char *strcpy (char *__restrict __dest, const char *__restrict __src)
^
main.c:511:33: warning: passing 'u8 [41]' to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
pw_end = pw + strlen (pw);
^~
/usr/include/string.h:394:35: note: passing argument to parameter '__s' here
extern size_t strlen (const char *__s)
^
main.c:528:32: warning: passing 'u8 [41]' to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
if (!(dict_file = fopen (pw, "r")))
^~
/usr/include/stdio.h:272:44: note: passing argument to parameter '__filename' here
extern FILE *fopen (const char *__restrict __filename,
^
main.c:530:19: warning: passing 'u8 [41]' to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
perror (pw);
^~
/usr/include/stdio.h:846:33: note: passing argument to parameter '__s' here
extern void perror (const char *__s);
^
9 warnings generated.
if clang -DHAVE_CONFIG_H -I. -I. -I. -funroll-all-loops -O3 -MT crack.o -MD -MP -MF ".deps/crack.Tpo" \
-c -o crack.o `test -f 'crack.c' || echo './'`crack.c; \
then mv -f ".deps/crack.Tpo" ".deps/crack.Po"; \
else rm -f ".deps/crack.Tpo"; exit 1; \
fi
clang-3.8: warning: optimization flag '-funroll-all-loops' is not supported
In file included from crack.c:160:
./cpmask.c:129:8: warning: type specifier missing, defaults to 'int' [-Wimplicit-int]
static cp_table_lu1[MAX_CP_WIDTH];
~~~~~~ ^
./cpmask.c:130:8: warning: type specifier missing, defaults to 'int' [-Wimplicit-int]
static cp_table_lu2[MAX_CP_WIDTH];
~~~~~~ ^
./cpmask.c:347:24: warning: passing 'u8 [41]' to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
pw_end = pw + strlen (pw);
^~
/usr/include/string.h:394:35: note: passing argument to parameter '__s' here
extern size_t strlen (const char *__s)
^
In file included from crack.c:160:
./cpmask.c:358:17: warning: taking the absolute value of unsigned type 'unsigned int' has no effect [-Wabsolute-value]
current += abs (P (x - 1, y, 0) - P (x, y, 0));
^
./cpmask.c:358:17: note: remove the call to 'abs' since unsigned values cannot be negative
current += abs (P (x - 1, y, 0) - P (x, y, 0));
^~~~
./cpmask.c:359:17: warning: taking the absolute value of unsigned type 'unsigned int' has no effect [-Wabsolute-value]
current += abs (P (x - 1, y, 1) - P (x, y, 1));
^
./cpmask.c:359:17: note: remove the call to 'abs' since unsigned values cannot be negative
current += abs (P (x - 1, y, 1) - P (x, y, 1));
^~~~
./cpmask.c:360:17: warning: taking the absolute value of unsigned type 'unsigned int' has no effect [-Wabsolute-value]
current += abs (P (x - 1, y, 2) - P (x, y, 2));
^
./cpmask.c:360:17: note: remove the call to 'abs' since unsigned values cannot be negative
current += abs (P (x - 1, y, 2) - P (x, y, 2));
^~~~
./cpmask.c:369:17: warning: taking the absolute value of unsigned type 'unsigned int' has no effect [-Wabsolute-value]
current += abs (P (x, y - 1, 0) - P (x, y, 0));
^
./cpmask.c:369:17: note: remove the call to 'abs' since unsigned values cannot be negative
current += abs (P (x, y - 1, 0) - P (x, y, 0));
^~~~
./cpmask.c:370:17: warning: taking the absolute value of unsigned type 'unsigned int' has no effect [-Wabsolute-value]
current += abs (P (x, y - 1, 1) - P (x, y, 1));
^
./cpmask.c:370:17: note: remove the call to 'abs' since unsigned values cannot be negative
current += abs (P (x, y - 1, 1) - P (x, y, 1));
^~~~
./cpmask.c:371:17: warning: taking the absolute value of unsigned type 'unsigned int' has no effect [-Wabsolute-value]
current += abs (P (x, y - 1, 2) - P (x, y, 2));
^
./cpmask.c:371:17: note: remove the call to 'abs' since unsigned values cannot be negative
current += abs (P (x, y - 1, 2) - P (x, y, 2));
^~~~
./cpmask.c:387:27: warning: passing 'u8 [41]' to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
if ((changed = cbfunc (pw, info)))
^~
In file included from crack.c:161:
In file included from ./crackdef.c:98:
./zipcrack.c:62:29: warning: passing 'u8 [41]' to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
changed = strlen (pw);
^~
/usr/include/string.h:394:35: note: passing argument to parameter '__s' here
extern size_t strlen (const char *__s)
^
In file included from crack.c:161:
In file included from ./crackdef.c:98:
./zipcrack.c:269:30: warning: passing 'u8 [41]' to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
if ((changed = cbfunc (pw, 0)))
^~
In file included from crack.c:161:
In file included from ./crackdef.c:109:
./zipcrack.c:62:29: warning: passing 'u8 [41]' to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
changed = strlen (pw);
^~
/usr/include/string.h:394:35: note: passing argument to parameter '__s' here
extern size_t strlen (const char *__s)
^
In file included from crack.c:161:
In file included from ./crackdef.c:109:
./zipcrack.c:269:30: warning: passing 'u8 [41]' to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
if ((changed = cbfunc (pw, 0)))
^~
14 warnings generated.
clang -funroll-all-loops -O3 -o fcrackzip main.o crack.o
if clang -DHAVE_CONFIG_H -I. -I. -I. -funroll-all-loops -O3 -MT zipinfo.o -MD -MP -MF ".deps/zipinfo.Tpo" \
-c -o zipinfo.o `test -f 'zipinfo.c' || echo './'`zipinfo.c; \
then mv -f ".deps/zipinfo.Tpo" ".deps/zipinfo.Po"; \
else rm -f ".deps/zipinfo.Tpo"; exit 1; \
fi
clang-3.8: warning: optimization flag '-funroll-all-loops' is not supported
clang -funroll-all-loops -O3 -o zipinfo zipinfo.o
make[1]: Leaving directory '/tmp/fcrackzip/src/fcrackzip-1.0'
==> Entering fakeroot environment...
==> Starting package()...
make[1]: Entering directory '/tmp/fcrackzip/src/fcrackzip-1.0'
/bin/sh ./mkinstalldirs /tmp/fcrackzip/pkg/fcrackzip/usr/bin
mkdir /tmp/fcrackzip/pkg/fcrackzip/usr
mkdir /tmp/fcrackzip/pkg/fcrackzip/usr/bin
/usr/bin/install -c fcrackzip /tmp/fcrackzip/pkg/fcrackzip/usr/bin/fcrackzip
/usr/bin/install -c zipinfo /tmp/fcrackzip/pkg/fcrackzip/usr/bin/zipinfo
/bin/sh ./mkinstalldirs /tmp/fcrackzip/pkg/fcrackzip/usr/share/man/man1
mkdir /tmp/fcrackzip/pkg/fcrackzip/usr/share
mkdir /tmp/fcrackzip/pkg/fcrackzip/usr/share/man
mkdir /tmp/fcrackzip/pkg/fcrackzip/usr/share/man/man1
/usr/bin/install -c -m 644 ./fcrackzip.1 /tmp/fcrackzip/pkg/fcrackzip/usr/share/man/man1/fcrackzip.1
make[1]: Leaving directory '/tmp/fcrackzip/src/fcrackzip-1.0'
==> Tidying install...
-> Removing doc files...
-> Purging unwanted files...
==> Checking for packaging issue...
==> Creating package "fcrackzip"...
-> Generating .PKGINFO file...
-> Generating .BUILDINFO file...
error: invalid option '--noprogressbar'
-> Generating .MTREE file...
-> Compressing package...
==> Leaving fakeroot environment.
==> Finished making: fcrackzip 1.0-4 (Thu Apr 13 11:18:59 UTC 2017)
CMD: pacman --query --file fcrackzip-1.0-4-x86_64.pkg.tar.xz
Creating hybrid package for 'fcrackzip'
Trying to find vanilla package 'fcrackzip'...
CMD: pacman --query --file /mirror/fcrackzip-1.0-4.pkg.tar.xz
Package file has the following structure:
Generating .MTREE
CMD: bsdtar -czf .MTREE --format=mtree --options=!all,use-set,type,uid,mode,time,size,md5,sha256,link .PKGINFO usr
Tar-ing up files
CMD: bsdtar -cf - .PKGINFO usr .MTREE
CMD: xz -c -z
Successfully ran bsdtar -cf - .PKGINFO usr .MTREE | xz -c -z
CMD: bsdtar -tqf fcrackzip.pkg.tar.xz .PKGINFO
Created package at path /var/cache/pacman/pkg/fcrackzip.pkg.tar.xz
Attempting to access local repository, attempt 1
CMD: repo-add /var/cache/pacman/pkg/tuscan.db.tar /var/cache/pacman/pkg/fcrackzip.pkg.tar.xz
==> Extracting database to a temporary location...
==> Extracting database to a temporary location...
==> Adding package '/var/cache/pacman/pkg/fcrackzip.pkg.tar.xz'
-> Computing checksums...
-> Creating 'desc' db entry...
-> Creating 'files' db entry...
==> Creating updated database file '/var/cache/pacman/pkg/tuscan.db.tar'
Printing config logfiles
CMD: config logfiles '/tmp/fcrackzip/src/fcrackzip-1.0/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 configure, which was
generated by GNU Autoconf 2.61. Invocation command line was
$ ./configure --host=x86_64-unknown-linux --prefix=/usr
## --------- ##
## Platform. ##
## --------- ##
hostname = 078913f88418
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:1759: checking for a BSD-compatible install
configure:1815: result: /usr/bin/install -c
configure:1826: checking whether build environment is sane
configure:1869: result: yes
configure:1902: checking for gawk
configure:1918: found /usr/bin/gawk
configure:1929: result: gawk
configure:1940: checking whether make sets $(MAKE)
configure:1961: result: yes
configure:2040: checking for x86_64-unknown-linux-strip
configure:2070: result: no
configure:2080: checking for strip
configure:2096: found /usr/bin/strip
configure:2107: result: strip
configure:2153: checking for x86_64-unknown-linux-gcc
configure:2180: result: clang
configure:2458: checking for C compiler version
configure:2465: 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:2468: $? = 0
configure:2475: 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
Selected multilib: .;@m64
configure:2478: $? = 0
configure:2485: clang -V >&5
clang-3.8: error: argument to '-V' is missing (expected 1 value)
clang-3.8: error: no input files
configure:2488: $? = 1
configure:2511: checking for C compiler default output file name
configure:2538: clang conftest.c >&5
configure:2541: $? = 0
configure:2579: result: a.out
configure:2596: checking whether the C compiler works
configure:2606: ./a.out
configure:2609: $? = 0
configure:2626: result: yes
configure:2633: checking whether we are cross compiling
configure:2635: result: no
configure:2638: checking for suffix of executables
configure:2645: clang -o conftest conftest.c >&5
configure:2648: $? = 0
configure:2672: result:
configure:2678: checking for suffix of object files
configure:2704: clang -c conftest.c >&5
configure:2707: $? = 0
configure:2730: result: o
configure:2734: checking whether we are using the GNU C compiler
configure:2763: clang -c conftest.c >&5
configure:2769: $? = 0
configure:2786: result: yes
configure:2791: checking whether clang accepts -g
configure:2821: clang -c -g conftest.c >&5
configure:2827: $? = 0
configure:2926: result: yes
configure:2943: checking for clang option to accept ISO C89
configure:3017: clang -c conftest.c >&5
configure:3023: $? = 0
configure:3046: result: none needed
configure:3075: checking for style of include used by make
configure:3103: result: GNU
configure:3131: checking dependency style of clang
configure:3214: result: gcc3
configure:3237: checking how to run the C preprocessor
configure:3277: clang -E conftest.c
configure:3283: $? = 0
configure:3314: clang -E conftest.c
conftest.c:10:10: fatal error: 'ac_nonexistent.h' file not found
#include
^
1 error generated.
configure:3320: $? = 1
configure: failed program was:
| /* confdefs.h. */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "fcrackzip"
| #define VERSION "1.0"
| /* end confdefs.h. */
| #include
configure:3353: result: clang -E
configure:3382: clang -E conftest.c
configure:3388: $? = 0
configure:3419: clang -E conftest.c
conftest.c:10:10: fatal error: 'ac_nonexistent.h' file not found
#include
^
1 error generated.
configure:3425: $? = 1
configure: failed program was:
| /* confdefs.h. */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "fcrackzip"
| #define VERSION "1.0"
| /* end confdefs.h. */
| #include
configure:3463: checking for grep that handles long lines and -e
configure:3537: result: /usr/bin/grep
configure:3542: checking for egrep
configure:3620: result: /usr/bin/grep -E
configure:3625: checking for ANSI C header files
configure:3655: clang -c conftest.c >&5
configure:3661: $? = 0
configure:3760: clang -o conftest conftest.c >&5
configure:3763: $? = 0
configure:3769: ./conftest
configure:3772: $? = 0
configure:3789: result: yes
configure:3814: checking for sys/types.h
configure:3835: clang -c conftest.c >&5
configure:3841: $? = 0
configure:3857: result: yes
configure:3814: checking for sys/stat.h
configure:3835: clang -c conftest.c >&5
configure:3841: $? = 0
configure:3857: result: yes
configure:3814: checking for stdlib.h
configure:3835: clang -c conftest.c >&5
configure:3841: $? = 0
configure:3857: result: yes
configure:3814: checking for string.h
configure:3835: clang -c conftest.c >&5
configure:3841: $? = 0
configure:3857: result: yes
configure:3814: checking for memory.h
configure:3835: clang -c conftest.c >&5
configure:3841: $? = 0
configure:3857: result: yes
configure:3814: checking for strings.h
configure:3835: clang -c conftest.c >&5
configure:3841: $? = 0
configure:3857: result: yes
configure:3814: checking for inttypes.h
configure:3835: clang -c conftest.c >&5
configure:3841: $? = 0
configure:3857: result: yes
configure:3814: checking for stdint.h
configure:3835: clang -c conftest.c >&5
configure:3841: $? = 0
configure:3857: result: yes
configure:3814: checking for unistd.h
configure:3835: clang -c conftest.c >&5
configure:3841: $? = 0
configure:3857: result: yes
configure:3869: checking for short
configure:3899: clang -c conftest.c >&5
configure:3905: $? = 0
configure:3920: result: yes
configure:3927: checking size of short
configure:4229: clang -o conftest conftest.c >&5
configure:4232: $? = 0
configure:4238: ./conftest
configure:4241: $? = 0
configure:4264: result: 2
configure:4274: checking for int
configure:4304: clang -c conftest.c >&5
configure:4310: $? = 0
configure:4325: result: yes
configure:4332: checking size of int
configure:4634: clang -o conftest conftest.c >&5
configure:4637: $? = 0
configure:4643: ./conftest
configure:4646: $? = 0
configure:4669: result: 4
configure:4679: checking for long
configure:4709: clang -c conftest.c >&5
configure:4715: $? = 0
configure:4730: result: yes
configure:4737: checking size of long
configure:5039: clang -o conftest conftest.c >&5
configure:5042: $? = 0
configure:5048: ./conftest
configure:5051: $? = 0
configure:5074: result: 8
configure:5085: checking for an ANSI C-conforming const
configure:5160: clang -c conftest.c >&5
configure:5166: $? = 0
configure:5181: result: yes
configure:5191: checking for inline
configure:5217: clang -c conftest.c >&5
configure:5223: $? = 0
configure:5241: result: inline
configure:5271: checking for perl5
configure:5301: result: no
configure:5271: checking for perl
configure:5287: found /usr/bin/perl
configure:5298: result: perl
configure:5327: checking for pgcc/egcs
configure:5339: checking for x86 asm
configure:5361: result: not x86
configure:5388: checking stdbool.h usability
configure:5405: clang -c -funroll-all-loops -O3 conftest.c >&5
clang-3.8: warning: optimization flag '-funroll-all-loops' is not supported
configure:5411: $? = 0
configure:5425: result: yes
configure:5429: checking stdbool.h presence
configure:5444: clang -E conftest.c
configure:5450: $? = 0
configure:5464: result: yes
configure:5492: checking for stdbool.h
configure:5500: result: yes
configure:5388: checking getopt.h usability
configure:5405: clang -c -funroll-all-loops -O3 conftest.c >&5
clang-3.8: warning: optimization flag '-funroll-all-loops' is not supported
configure:5411: $? = 0
configure:5425: result: yes
configure:5429: checking getopt.h presence
configure:5444: clang -E conftest.c
configure:5450: $? = 0
configure:5464: result: yes
configure:5492: checking for getopt.h
configure:5500: result: yes
configure:5378: checking for unistd.h
configure:5384: result: yes
configure:5388: checking sys/time.h usability
configure:5405: clang -c -funroll-all-loops -O3 conftest.c >&5
clang-3.8: warning: optimization flag '-funroll-all-loops' is not supported
configure:5411: $? = 0
configure:5425: result: yes
configure:5429: checking sys/time.h presence
configure:5444: clang -E conftest.c
configure:5450: $? = 0
configure:5464: result: yes
configure:5492: checking for sys/time.h
configure:5500: result: yes
configure:5517: checking for gettimeofday
configure:5573: clang -o conftest -funroll-all-loops -O3 conftest.c >&5
clang-3.8: warning: optimization flag '-funroll-all-loops' is not supported
configure:5579: $? = 0
configure:5597: result: yes
configure:5611: checking for getopt_long
configure:5667: clang -o conftest -funroll-all-loops -O3 conftest.c >&5
clang-3.8: warning: optimization flag '-funroll-all-loops' is not supported
configure:5673: $? = 0
configure:5691: result: yes
configure:5843: creating ./config.status
## ---------------------- ##
## Running config.status. ##
## ---------------------- ##
This file was extended by config.status, which was
generated by GNU Autoconf 2.61. Invocation command line was
CONFIG_FILES =
CONFIG_HEADERS =
CONFIG_LINKS =
CONFIG_COMMANDS =
$ ./config.status
on 078913f88418
config.status:633: creating Makefile
config.status:633: creating config.h
config.status:910: executing depfiles commands
## ---------------- ##
## Cache variables. ##
## ---------------- ##
ac_cv_c_compiler_gnu=yes
ac_cv_c_const=yes
ac_cv_c_inline=inline
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_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_func_getopt_long=yes
ac_cv_func_gettimeofday=yes
ac_cv_header_getopt_h=yes
ac_cv_header_inttypes_h=yes
ac_cv_header_memory_h=yes
ac_cv_header_stdbool_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_time_h=yes
ac_cv_header_sys_types_h=yes
ac_cv_header_unistd_h=yes
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_prog_AWK=gawk
ac_cv_prog_CC=clang
ac_cv_prog_CPP='clang -E'
ac_cv_prog_PERL=perl
ac_cv_prog_ac_ct_STRIP=strip
ac_cv_prog_cc_c89=
ac_cv_prog_cc_g=yes
ac_cv_prog_make_make_set=yes
ac_cv_sizeof_int=4
ac_cv_sizeof_long=8
ac_cv_sizeof_short=2
ac_cv_type_int=yes
ac_cv_type_long=yes
ac_cv_type_short=yes
am_cv_CC_dependencies_compiler_type=gcc3
## ----------------- ##
## Output variables. ##
## ----------------- ##
ACLOCAL='${SHELL} /tmp/fcrackzip/src/fcrackzip-1.0/missing --run aclocal-1.7'
AMDEPBACKSLASH='\'
AMDEP_FALSE='#'
AMDEP_TRUE=''
AMTAR='${SHELL} /tmp/fcrackzip/src/fcrackzip-1.0/missing --run tar'
AUTOCONF='${SHELL} /tmp/fcrackzip/src/fcrackzip-1.0/missing --run autoconf'
AUTOHEADER='${SHELL} /tmp/fcrackzip/src/fcrackzip-1.0/missing --run autoheader'
AUTOMAKE='${SHELL} /tmp/fcrackzip/src/fcrackzip-1.0/missing --run automake-1.7'
AWK='gawk'
CC='clang'
CCDEPMODE='depmode=gcc3'
CFLAGS=' -funroll-all-loops -O3'
CPP='clang -E'
CPPFLAGS=''
CYGPATH_W='echo'
DEFS='-DHAVE_CONFIG_H'
DEPDIR='.deps'
ECHO_C=''
ECHO_N='-n'
ECHO_T=''
EGREP='/usr/bin/grep -E'
EXEEXT=''
GREP='/usr/bin/grep'
HAVE_PERL_FALSE='#'
HAVE_PERL_TRUE=''
INSTALL_DATA='${INSTALL} -m 644'
INSTALL_PROGRAM='${INSTALL}'
INSTALL_SCRIPT='${INSTALL}'
INSTALL_STRIP_PROGRAM='${SHELL} $(install_sh) -c -s'
LDFLAGS=''
LIBOBJS=''
LIBS=''
LTLIBOBJS=''
MAKEINFO='${SHELL} /tmp/fcrackzip/src/fcrackzip-1.0/missing --run makeinfo'
OBJEXT='o'
PACKAGE='fcrackzip'
PACKAGE_BUGREPORT=''
PACKAGE_NAME=''
PACKAGE_STRING=''
PACKAGE_TARNAME=''
PACKAGE_VERSION=''
PATH_SEPARATOR=':'
PERL='perl'
SET_MAKE=''
SHELL='/bin/sh'
STRIP='strip'
VERSION='1.0'
ac_ct_CC=''
am__fastdepCC_FALSE='#'
am__fastdepCC_TRUE=''
am__include='include'
am__leading_dot='.'
am__quote=''
bindir='${exec_prefix}/bin'
build_alias=''
datadir='${datarootdir}'
datarootdir='${prefix}/share'
docdir='${datarootdir}/doc/${PACKAGE}'
dvidir='${docdir}'
exec_prefix='${prefix}'
host_alias='x86_64-unknown-linux'
htmldir='${docdir}'
includedir='${prefix}/include'
infodir='${datarootdir}/info'
install_sh='/tmp/fcrackzip/src/fcrackzip-1.0/install-sh'
libdir='${exec_prefix}/lib'
libexecdir='${exec_prefix}/libexec'
localedir='${datarootdir}/locale'
localstatedir='${prefix}/var'
mandir='${datarootdir}/man'
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. ##
## ----------- ##
#define PACKAGE_NAME ""
#define PACKAGE_TARNAME ""
#define PACKAGE_VERSION ""
#define PACKAGE_STRING ""
#define PACKAGE_BUGREPORT ""
#define PACKAGE "fcrackzip"
#define VERSION "1.0"
#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 SIZEOF_SHORT 2
#define SIZEOF_INT 4
#define SIZEOF_LONG 8
#define USE_UNIX_REDIRECTION 1
#define USE_GCC_ASM 1
#define HAVE_STDBOOL_H 1
#define HAVE_GETOPT_H 1
#define HAVE_UNISTD_H 1
#define HAVE_SYS_TIME_H 1
#define HAVE_GETTIMEOFDAY 1
#define HAVE_GETOPT_LONG 1
configure: exit 0