The build took 00h 00m 59s and was NOT successful.
The program in this build is written in the following languages, according to sloccount:
SLOC | Language |
---|---|
675 |
sh |
559 |
ansic |
328 |
makefile |
1,562 |
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:
There were existing files in /sysroot, using those
CMD: sudo -u tuscan PATH=/sysroot/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: mp3wrap 0.5-4 (Wed Apr 5 01:22:03 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-gcc... clang
checking for C compiler default output... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... yes
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 style of include used by make... GNU
checking dependency style of clang... gcc3
checking for a BSD-compatible install... /usr/bin/install -c
checking whether byte ordering is bigendian... no
checking for clang option to accept ANSI C... none needed
checking for an ANSI C-conforming const... yes
checking for inline... inline
checking for memset... yes
checking how to run the C preprocessor... clang -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 stdlib.h... (cached) yes
checking for working malloc... no
configure: creating ./config.status
config.status: creating Makefile
config.status: executing default-1 commands
source='mp3wrap.c' object='mp3wrap.o' libtool=no \
depfile='.deps/mp3wrap.Po' tmpdepfile='.deps/mp3wrap.TPo' \
depmode=gcc3 /bin/sh ./depcomp \
clang -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE=\"mp3wrap\" -DVERSION=\"0.5\" -DHAVE_MEMSET=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STDLIB_H=1 -I. -I. -c `test -f mp3wrap.c || echo './'`mp3wrap.c
source='wrap.c' object='wrap.o' libtool=no \
depfile='.deps/wrap.Po' tmpdepfile='.deps/wrap.TPo' \
depmode=gcc3 /bin/sh ./depcomp \
clang -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE=\"mp3wrap\" -DVERSION=\"0.5\" -DHAVE_MEMSET=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STDLIB_H=1 -I. -I. -c `test -f wrap.c || echo './'`wrap.c
source='crc.c' object='crc.o' libtool=no \
depfile='.deps/crc.Po' tmpdepfile='.deps/crc.TPo' \
depmode=gcc3 /bin/sh ./depcomp \
clang -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE=\"mp3wrap\" -DVERSION=\"0.5\" -DHAVE_MEMSET=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STDLIB_H=1 -I. -I. -c `test -f crc.c || echo './'`crc.c
crc.c:31:14: error: unknown type name 'u_int32_t'; did you mean '__int128_t'?
static const u_int32_t crctab[256] = {
^~~~~~~~~
__int128_t
note: '__int128_t' declared here
1 error generated.
wrap.c:36:10: warning: implicitly declaring library function 'strlen' with type 'unsigned long (const char *)' [-Wimplicit-function-declaration]
if (pos
#
^
#
wrap.c:36:10: note: include the header or explicitly provide a declaration for 'strlen'
#
mp3wrap.c:127:42: warning: passing 'unsigned char [512]' to parameter of type 'char *' converts between pointers to integer types with different sign [-Wpointer-sign]
#
if ((ptr=getenv("HOME"))!=NULL) sprintf(filename, "%s/"CONFFILE, ptr);
#
^~~~~~~~
#
/sysroot/include/stdio.h:104:29: note: passing argument to parameter here
#
int sprintf(char *__restrict, const char *__restrict, ...);
#
^
#
mp3wrap.c:128:15: warning: passing 'unsigned char [512]' to parameter of type 'char *' converts between pointers to integer types with different sign [-Wpointer-sign]
#
else strncpy(filename, CONFFILE, strlen(CONFFILE));
#
^~~~~~~~
#
/sysroot/include/string.h:32:32: note: passing argument to parameter here
#
char *strncpy (char *__restrict, const char *__restrict, size_t);
#
^
#
mp3wrap.c:130:10: warning: passing 'unsigned char [512]' to parameter of type 'char *' converts between pointers to integer types with different sign [-Wpointer-sign]
#
strncpy(ext, EXT, 511);
#
^~~
#
/sysroot/include/string.h:32:32: note: passing argument to parameter here
#
char *strncpy (char *__restrict, const char *__restrict, size_t);
#
^
#
wrap.c:70:2: warning: implicitly declaring library function 'strncpy' with type 'char *(char *, const char *, unsigned long)' [-Wimplicit-function-declaration]
#
strncpy(wrapindex, TAG, strlen(TAG));
#
^
#
wrap.c:mp3wrap.c70::2132:: 59note:: include the header or explicitly provide a declaration for 'strncpy'warning
#
: passing 'unsigned char [512]' to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
#
if ((file_input=fopen(CONFFILE, "r"))||(file_input=fopen(filename, "r"))) {
#
^~~~~~~~
#
/sysroot/include/stdio.h:63:35: note: passing argument to parameter here
#
FILE *fopen(const char *__restrict, const char *__restrict);
#
^
#
mp3wrap.c:134:17: warning: passing 'unsigned char [512]' to parameter of type 'char *' converts between pointers to integer types with different sign [-Wpointer-sign]
#
while ((fgets(filename, 511, file_input))!=NULL) {
#
^~~~~~~~
#
/sysroot/include/stdio.h:94:29: note: passing argument to parameter here
#
char *fgets(char *__restrict, int, FILE *__restrict);
#
^
#
mp3wrap.c:135:20: warning: passing 'unsigned char [512]' to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
#
if ((ptr=strstr(filename, "EXT="))!=NULL) {
#
^~~~~~~~
#
/sysroot/include/string.h:49:27: note: passing argument to parameter here
#
char *strstr (const char *, const char *);
#
^
#
mp3wrap.c:136:16: warning: passing 'unsigned char [512]' to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
#
if (strlen(filename)>1) {
#
^~~~~~~~
#
/sysroot/include/string.h:52:28: note: passing argument to parameter here
#
size_t strlen (const char *);
#
^
#
mp3wrap.c:137:26: warning: passing 'unsigned char [512]' to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
#
if (filename[strlen(filename)-1] == '\n') filename[strlen(filename)-1] = '\0';
#
^~~~~~~~
#
/sysroot/include/string.h:52:28: note: passing argument to parameter here
#
size_t strlen (const char *);
#
^
#
mp3wrap.c:137:64: warning: passing 'unsigned char [512]' to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
#
if (filename[strlen(filename)-1] == '\n') filename[strlen(filename)-1] = '\0';
#
^~~~~~~~
#
/sysroot/include/string.h:52:28: note: passing argument to parameter here
#
size_t strlen (const char *);
#
^
#
mp3wrap.c:138:26: warning: passing 'unsigned char [512]' to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
#
if (filename[strlen(filename)-1] == '\r') filename[strlen(filename)-1] = '\0';
#
^~~~~~~~
#
/sysroot/include/string.h:52:28: note: passing argument to parameter here
#
size_t strlen (const char *);
#
^
#
mp3wrap.c:138:64: warning: passing 'unsigned char [512]' to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
#
if (filename[strlen(filename)-1] == '\r') filename[strlen(filename)-1] = '\0';
#
^~~~~~~~
#
/sysroot/include/string.h:52:28: note: passing argument to parameter here
#
size_t strlen (const char *);
#
^
#
make: *** [Makefile:173: crc.o] Error 1
#
make: *** Waiting for unfinished jobs....
#
mp3wrap.c:142:16: warning: passing 'unsigned char [512]' to parameter of type 'char *' converts between pointers to integer types with different sign [-Wpointer-sign]
#
sprintf (ext, "_"WRAP"_%s", ptr);
#
^~~
#
/sysroot/include/stdio.h:104:29: note: passing argument to parameter here
#
int sprintf(char *__restrict, const char *__restrict, ...);
#
^
#
mp3wrap.c:144:19: warning: passing 'unsigned char [512]' to parameter of type 'char *' converts between pointers to integer types with different sign [-Wpointer-sign]
#
else strncpy(ext, ptr, 511);
#
^~~
#
/sysroot/include/string.h:32:32: note: passing argument to parameter here
#
char *strncpy (char *__restrict, const char *__restrict, size_t);
#
^
#
mp3wrap.c:307:26: warning: passing 'unsigned char *' to parameter of type 'char *' converts between pointers to integer types with different sign [-Wpointer-sign]
#
wrapindex = buildindex (wrapindex, indexsize, files, argv, optoffset, splitpoints, addoption, oldfiles);
#
^~~~~~~~~
#
./wrap.h:41:25: note: passing argument to parameter 'wrapindex' here
#
char *buildindex (char *wrapindex, int indexsize, int files, char *argv[], short optoffset, unsigned long splitpoints[], short addoption, int oldfiles);
#
^
#
mp3wrap.c:307:12: warning: assigning to 'unsigned char *' from 'char *' converts between pointers to integer types with different sign [-Wpointer-sign]
#
wrapindex = buildindex (wrapindex, indexsize, files, argv, optoffset, splitpoints, addoption, oldfiles);
#
^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#
mp3wrap.c:310:12: warning: passing 'unsigned char [512]' to parameter of type 'char *' converts between pointers to integer types with different sign [-Wpointer-sign]
#
strncpy (filename, argv[1+optoffset], strlen(argv[1+optoffset]));
#
^~~~~~~~
#
/sysroot/include/string.h:32:32: note: passing argument to parameter here
#
char *strncpy (char *__restrict, const char *__restrict, size_t);
#
^
#
mp3wrap.c:311:14: warning: passing 'unsigned char [512]' to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
#
if (strstr(filename, ext)==NULL) {
#
^~~~~~~~
#
/sysroot/include/string.h:49:27: note: passing argument to parameter here
#
char *strstr (const char *, const char *);
#
^
#
mp3wrap.c:311:24: warning: passing 'unsigned char [512]' to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
#
if (strstr(filename, ext)==NULL) {
#
^~~
#
/sysroot/include/string.h:49:41: note: passing argument to parameter here
#
char *strstr (const char *, const char *);
#
^
#
mp3wrap.c:312:16: warning: passing 'unsigned char [512]' to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
#
if ((strlen(filename)>4) && ((strstr(filename, ".mp3"))!=NULL))
#
^~~~~~~~
#
/sysroot/include/string.h:52:28: note: passing argument to parameter here
#
size_t strlen (const char *);
#
^
#
mp3wrap.c:312:41: warning: passing 'unsigned char [512]' to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
#
if ((strlen(filename)>4) && ((strstr(filename, ".mp3"))!=NULL))
#
^~~~~~~~
#
/sysroot/include/string.h:49:27: note: passing argument to parameter here
#
char *strstr (const char *, const char *);
#
^
#
mp3wrap.c:313:21: warning: passing 'unsigned char [512]' to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
#
filename[strlen(filename)-4]='\0';
#
^~~~~~~~
#
/sysroot/include/string.h:52:28: note: passing argument to parameter here
#
size_t strlen (const char *);
#
^
#
mp3wrap.c:314:35: warning: passing 'unsigned char [512]' to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
#
strncat (filename, ext, strlen(ext));
#
^~~
#
/sysroot/include/string.h:52:28: note: passing argument to parameter here
#
size_t strlen (const char *);
#
^
#
mp3wrap.c:314:13: warning: passing 'unsigned char [512]' to parameter of type 'char *' converts between pointers to integer types with different sign [-Wpointer-sign]
#
strncat (filename, ext, strlen(ext));
#
^~~~~~~~
#
/sysroot/include/string.h:35:32: note: passing argument to parameter here
#
char *strncat (char *__restrict, const char *__restrict, size_t);
#
^
#
mp3wrap.c:314:23: warning: passing 'unsigned char [512]' to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
#
strncat (filename, ext, strlen(ext));
#
^~~
#
/sysroot/include/string.h:35:56: note: passing argument to parameter here
#
char *strncat (char *__restrict, const char *__restrict, size_t);
#
^
#
mp3wrap.c:316:25: warning: passing 'unsigned char [512]' to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
#
if ((file_input=fopen(filename, "r"))) {
#
^~~~~~~~
#
/sysroot/include/stdio.h:63:35: note: passing argument to parameter here
#
FILE *fopen(const char *__restrict, const char *__restrict);
#
^
#
mp3wrap.c:325:12: warning: passing 'unsigned char [512]' to parameter of type 'char *' converts between pointers to integer types with different sign [-Wpointer-sign]
#
strncpy (filename, TEMPFILE, strlen(TEMPFILE));
#
^~~~~~~~
#
/sysroot/include/string.h:32:32: note: passing argument to parameter here
#
char *strncpy (char *__restrict, const char *__restrict, size_t);
#
^
#
mp3wrap.c:327:26: warning: passing 'unsigned char [512]' to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
#
if (!(file_output=fopen(filename, "w+"))) {
#
^~~~~~~~
#
/sysroot/include/stdio.h:63:35: note: passing argument to parameter here
#
FILE *fopen(const char *__restrict, const char *__restrict);
#
^
#
mp3wrap.c:409:12: warning: passing 'unsigned char *' to parameter of type 'char *' converts between pointers to integer types with different sign [-Wpointer-sign]
#
sprintf (wrapindex, "mv -f "TEMPFILE" %s", argv[2]);
#
^~~~~~~~~
#
/sysroot/include/stdio.h:104:29: note: passing argument to parameter here
#
int sprintf(char *__restrict, const char *__restrict, ...);
#
^
#
mp3wrap.c:410:15: warning: passing 'unsigned char *' to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
#
if (system (wrapindex)==-1)
#
^~~~~~~~~
#
/sysroot/include/stdlib.h:53:25: note: passing argument to parameter here
#
int system (const char *);
#
^
#
mp3wrap.c:412:11: warning: passing 'unsigned char [512]' to parameter of type 'char *' converts between pointers to integer types with different sign [-Wpointer-sign]
#
strncpy(filename, argv[2], strlen(argv[2])+1);
#
^~~~~~~~
#
/sysroot/include/string.h:32:32: note: passing argument to parameter here
#
char *strncpy (char *__restrict, const char *__restrict, size_t);
#
^
#
2 warnings generated.
#
30 warnings generated.
#
==> ERROR: A failure occurred in build().
#
Aborting...
Printing config logfiles
CMD: config logfiles '/tmp/mp3wrap/src/mp3wrap-0.5/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.53. Invocation command line was
$ ./configure --host=x86_64-unknown-linux --prefix=/usr --mandir=/usr/share/man
## --------- ##
## Platform. ##
## --------- ##
hostname = 3e73a620c130
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
hostinfo = unknown
/bin/machine = unknown
/usr/bin/oslevel = unknown
/bin/universe = unknown
PATH: /sysroot/bin
PATH: /usr/local/sbin
PATH: /usr/local/bin
PATH: /usr/sbin
PATH: /usr/bin
PATH: /sbin
PATH: /bin
## ----------- ##
## Core tests. ##
## ----------- ##
configure:1228: checking for a BSD-compatible install
configure:1282: result: /usr/bin/install -c
configure:1293: checking whether build environment is sane
configure:1336: result: yes
configure:1370: checking for gawk
configure:1386: found /usr/sbin/gawk
configure:1396: result: gawk
configure:1406: checking whether make sets ${MAKE}
configure:1426: result: yes
configure:1538: checking for x86_64-unknown-linux-gcc
configure:1564: result: clang
configure:1846: checking for C compiler version
configure:1849: clang --version &5
clang version 3.8.1
Target: x86_64-unknown-linux-gnu
Thread model: posix
InstalledDir: /
configure:1852: $? = 0
configure:1854: clang -v &5
clang version 3.8.1
Target: x86_64-unknown-linux-gnu
Thread model: posix
InstalledDir: /
Found candidate GCC installation: //../lib/gcc/x86_64-pc-linux-gnu/6.1.1
Found candidate GCC installation: //../lib64/gcc/x86_64-pc-linux-gnu/6.1.1
Selected GCC installation: //../lib64/gcc/x86_64-pc-linux-gnu/6.1.1
Candidate multilib: .;@m64
Selected multilib: .;@m64
configure:1857: $? = 0
configure:1859: clang -V &5
clang-3.8: error: argument to '-V' is missing (expected 1 value)
clang-3.8: error: no input files
configure:1862: $? = 1
configure:1888: checking for C compiler default output
configure:1891: clang conftest.c >&5
configure:1894: $? = 0
configure:1927: result: a.out
configure:1932: checking whether the C compiler works
configure:1938: ./a.out
./a.out: error while loading shared libraries: /usr/lib/libc.so: invalid ELF header
configure:1941: $? = 127
configure:1956: result: yes
configure:1963: checking whether we are cross compiling
configure:1965: result: yes
configure:1968: checking for suffix of executables
configure:1970: clang -o conftest conftest.c >&5
configure:1973: $? = 0
configure:1995: result:
configure:2001: checking for suffix of object files
configure:2025: clang -c conftest.c >&5
configure:2028: $? = 0
configure:2047: result: o
configure:2051: checking whether we are using the GNU C compiler
configure:2078: clang -c conftest.c >&5
configure:2081: $? = 0
configure:2084: test -s conftest.o
configure:2087: $? = 0
configure:2099: result: yes
configure:2105: checking whether clang accepts -g
configure:2129: clang -c -g conftest.c >&5
configure:2132: $? = 0
configure:2135: test -s conftest.o
configure:2138: $? = 0
configure:2148: result: yes
configure:2175: clang -c conftest.c >&5
conftest.c:2:3: error: unknown type name 'choke'
choke me
^
conftest.c:2:11: error: expected ';' after top level declarator
choke me
^
;
2 errors generated.
configure:2178: $? = 1
configure: failed program was:
#ifndef __cplusplus
choke me
#endif
configure:2296: checking for style of include used by make
configure:2324: result: GNU
configure:2331: checking dependency style of clang
configure:2393: result: gcc3
configure:2410: checking for a BSD-compatible install
configure:2464: result: /usr/bin/install -c
configure:2482: checking whether byte ordering is bigendian
configure:2512: clang -c conftest.c >&5
configure:2515: $? = 0
configure:2518: test -s conftest.o
configure:2521: $? = 0
configure:2548: clang -c conftest.c >&5
configure:2538:2: error: use of undeclared identifier 'not'
not big endian
^
1 error generated.
configure:2551: $? = 1
configure: failed program was:
#line 2524 "configure"
#include "confdefs.h"
#include
#include
#ifdef F77_DUMMY_MAIN
# ifdef __cplusplus
extern "C"
# endif
int F77_DUMMY_MAIN() { return 1; }
#endif
int
main ()
{
#if BYTE_ORDER != BIG_ENDIAN
not big endian
#endif
;
return 0;
}
configure:2665: result: no
configure:2684: checking for clang option to accept ANSI C
configure:2747: clang -c conftest.c >&5
configure:2750: $? = 0
configure:2753: test -s conftest.o
configure:2756: $? = 0
configure:2773: result: none needed
configure:2781: checking for an ANSI C-conforming const
configure:2851: clang -c conftest.c >&5
configure:2854: $? = 0
configure:2857: test -s conftest.o
configure:2860: $? = 0
configure:2870: result: yes
configure:2880: checking for inline
configure:2897: clang -c conftest.c >&5
configure:2900: $? = 0
configure:2903: test -s conftest.o
configure:2906: $? = 0
configure:2917: result: inline
configure:2938: checking for memset
configure:2981: clang -o conftest conftest.c >&5
configure:2953:6: warning: incompatible redeclaration of library function 'memset' [-Wincompatible-library-redeclaration]
char memset ();
^
configure:2953:6: note: 'memset' is a builtin with type 'void *(void *, int, unsigned long)'
1 warning generated.
configure:2984: $? = 0
configure:2987: test -s conftest
configure:2990: $? = 0
configure:3000: result: yes
configure:3015: checking how to run the C preprocessor
configure:3041: clang -E conftest.c
configure:3047: $? = 0
configure:3074: clang -E conftest.c
configure:3070:10: fatal error: 'ac_nonexistent.h' file not found
#include
^
1 error generated.
configure:3080: $? = 1
configure: failed program was:
#line 3069 "configure"
#include "confdefs.h"
#include
configure:3117: result: clang -E
configure:3132: clang -E conftest.c
configure:3138: $? = 0
configure:3165: clang -E conftest.c
configure:3161:10: fatal error: 'ac_nonexistent.h' file not found
#include
^
1 error generated.
configure:3171: $? = 1
configure: failed program was:
#line 3160 "configure"
#include "confdefs.h"
#include
configure:3211: checking for ANSI C header files
configure:3225: clang -E conftest.c
configure:3231: $? = 0
configure:3340: result: yes
configure:3364: checking for sys/types.h
configure:3377: clang -c conftest.c >&5
configure:3380: $? = 0
configure:3383: test -s conftest.o
configure:3386: $? = 0
configure:3396: result: yes
configure:3364: checking for sys/stat.h
configure:3377: clang -c conftest.c >&5
configure:3380: $? = 0
configure:3383: test -s conftest.o
configure:3386: $? = 0
configure:3396: result: yes
configure:3364: checking for stdlib.h
configure:3377: clang -c conftest.c >&5
configure:3380: $? = 0
configure:3383: test -s conftest.o
configure:3386: $? = 0
configure:3396: result: yes
configure:3364: checking for string.h
configure:3377: clang -c conftest.c >&5
configure:3380: $? = 0
configure:3383: test -s conftest.o
configure:3386: $? = 0
configure:3396: result: yes
configure:3364: checking for memory.h
configure:3377: clang -c conftest.c >&5
configure:3380: $? = 0
configure:3383: test -s conftest.o
configure:3386: $? = 0
configure:3396: result: yes
configure:3364: checking for strings.h
configure:3377: clang -c conftest.c >&5
configure:3380: $? = 0
configure:3383: test -s conftest.o
configure:3386: $? = 0
configure:3396: result: yes
configure:3364: checking for inttypes.h
configure:3377: clang -c conftest.c >&5
configure:3380: $? = 0
configure:3383: test -s conftest.o
configure:3386: $? = 0
configure:3396: result: yes
configure:3364: checking for stdint.h
configure:3377: clang -c conftest.c >&5
configure:3380: $? = 0
configure:3383: test -s conftest.o
configure:3386: $? = 0
configure:3396: result: yes
configure:3364: checking for unistd.h
configure:3377: clang -c conftest.c >&5
configure:3380: $? = 0
configure:3383: test -s conftest.o
configure:3386: $? = 0
configure:3396: result: yes
configure:3413: checking for stdlib.h
configure:3418: result: yes
configure:3522: checking for working malloc
configure:3575: result: no
configure:3699: creating ./config.status
## ---------------------- ##
## Running config.status. ##
## ---------------------- ##
This file was extended by config.status, which was
generated by GNU Autoconf 2.53. Invocation command line was
CONFIG_FILES =
CONFIG_HEADERS =
CONFIG_LINKS =
CONFIG_COMMANDS =
$ ./config.status
on 3e73a620c130
config.status:590: creating Makefile
config.status:715: executing default-1 commands
## ---------------- ##
## Cache variables. ##
## ---------------- ##
ac_cv_c_bigendian=no
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_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_exeext=
ac_cv_func_malloc_works=no
ac_cv_func_memset=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_objext=o
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_cc_g=yes
ac_cv_prog_cc_stdc=
ac_cv_prog_make_make_set=yes
am_cv_CC_dependencies_compiler_type=gcc3
## ----------- ##
## confdefs.h. ##
## ----------- ##
#define PACKAGE_NAME ""
#define PACKAGE_TARNAME ""
#define PACKAGE_VERSION ""
#define PACKAGE_STRING ""
#define PACKAGE_BUGREPORT ""
#define PACKAGE "mp3wrap"
#define VERSION "0.5"
#define HAVE_MEMSET 1
#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_STDLIB_H 1
configure: exit 0