The build took 00h 01m 36s and was 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:
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/libexecCMD: 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: mp3wrap 0.5-4 (Thu Apr 13 18:32:57 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 -cchecking whether build environment is sane... yeschecking for gawk... gawkchecking whether make sets ${MAKE}... yeschecking for x86_64-unknown-linux-gcc... clangchecking for C compiler default output... a.outchecking whether the C compiler works... yeschecking whether we are cross compiling... nochecking for suffix of executables... checking for suffix of object files... ochecking whether we are using the GNU C compiler... yeschecking whether clang accepts -g... yeschecking for style of include used by make... GNUchecking dependency style of clang... gcc3checking for a BSD-compatible install... /usr/bin/install -cchecking whether byte ordering is bigendian... nochecking for clang option to accept ANSI C... none neededchecking for an ANSI C-conforming const... yeschecking for inline... inlinechecking for memset... yeschecking how to run the C preprocessor... clang -Echecking for ANSI C header files... yeschecking for sys/types.h... yeschecking for sys/stat.h... yeschecking for stdlib.h... yeschecking for string.h... yeschecking for memory.h... yeschecking for strings.h... yeschecking for inttypes.h... yeschecking for stdint.h... yeschecking for unistd.h... yeschecking for stdlib.h... (cached) yeschecking for working malloc... yesconfigure: creating ./config.statusconfig.status: creating Makefileconfig.status: executing default-1 commandssource='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 -DHAVE_MALLOC=1 -I. -I. -c `test -f mp3wrap.c || echo './'`mp3wrap.cmp3wrap.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); ^~~~~~~~/usr/include/stdio.h:364:38: note: passing argument to parameter '__s' hereextern int sprintf (char *__restrict __s, ^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)); ^~~~~~~~/usr/include/string.h:128:40: note: passing argument to parameter '__dest' hereextern char *strncpy (char *__restrict __dest, ^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); ^~~/usr/include/string.h:128:40: note: passing argument to parameter '__dest' hereextern char *strncpy (char *__restrict __dest, ^mp3wrap.c:132:59: 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"))) { ^~~~~~~~/usr/include/stdio.h:272:44: note: passing argument to parameter '__filename' hereextern FILE *fopen (const char *__restrict __filename, ^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) { ^~~~~~~~/usr/include/stdio.h:622:38: note: passing argument to parameter '__s' hereextern char *fgets (char *__restrict __s, int __n, FILE *__restrict __stream) ^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) { ^~~~~~~~/usr/include/string.h:337:34: note: passing argument to parameter '__haystack' hereextern char *strstr (const char *__haystack, const char *__needle) ^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) { ^~~~~~~~/usr/include/string.h:394:35: note: passing argument to parameter '__s' hereextern size_t strlen (const char *__s) ^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'; ^~~~~~~~/usr/include/string.h:394:35: note: passing argument to parameter '__s' hereextern size_t strlen (const char *__s) ^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'; ^~~~~~~~/usr/include/string.h:394:35: note: passing argument to parameter '__s' hereextern size_t strlen (const char *__s) ^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'; ^~~~~~~~/usr/include/string.h:394:35: note: passing argument to parameter '__s' hereextern size_t strlen (const char *__s) ^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'; ^~~~~~~~/usr/include/string.h:394:35: note: passing argument to parameter '__s' hereextern size_t strlen (const char *__s) ^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); ^~~/usr/include/stdio.h:364:38: note: passing argument to parameter '__s' hereextern int sprintf (char *__restrict __s, ^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); ^~~/usr/include/string.h:128:40: note: passing argument to parameter '__dest' hereextern char *strncpy (char *__restrict __dest, ^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' herechar *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])); ^~~~~~~~/usr/include/string.h:128:40: note: passing argument to parameter '__dest' hereextern char *strncpy (char *__restrict __dest, ^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) { ^~~~~~~~/usr/include/string.h:337:34: note: passing argument to parameter '__haystack' hereextern char *strstr (const char *__haystack, const char *__needle) ^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) { ^~~/usr/include/string.h:337:58: note: passing argument to parameter '__needle' hereextern char *strstr (const char *__haystack, const char *__needle) ^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)) ^~~~~~~~/usr/include/string.h:394:35: note: passing argument to parameter '__s' hereextern size_t strlen (const char *__s) ^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)) ^~~~~~~~/usr/include/string.h:337:34: note: passing argument to parameter '__haystack' hereextern char *strstr (const char *__haystack, const char *__needle) ^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'; ^~~~~~~~/usr/include/string.h:394:35: note: passing argument to parameter '__s' hereextern size_t strlen (const char *__s) ^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)); ^~~/usr/include/string.h:394:35: note: passing argument to parameter '__s' hereextern size_t strlen (const char *__s) ^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)); ^~~~~~~~/usr/include/string.h:136:40: note: passing argument to parameter '__dest' hereextern char *strncat (char *__restrict __dest, const char *__restrict __src, ^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)); ^~~/usr/include/string.h:136:71: note: passing argument to parameter '__src' hereextern char *strncat (char *__restrict __dest, const char *__restrict __src, ^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"))) { ^~~~~~~~/usr/include/stdio.h:272:44: note: passing argument to parameter '__filename' hereextern FILE *fopen (const char *__restrict __filename, ^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)); ^~~~~~~~/usr/include/string.h:128:40: note: passing argument to parameter '__dest' hereextern char *strncpy (char *__restrict __dest, ^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+"))) { ^~~~~~~~/usr/include/stdio.h:272:44: note: passing argument to parameter '__filename' hereextern FILE *fopen (const char *__restrict __filename, ^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]); ^~~~~~~~~/usr/include/stdio.h:364:38: note: passing argument to parameter '__s' hereextern int sprintf (char *__restrict __s, ^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) ^~~~~~~~~/usr/include/stdlib.h:716:32: note: passing argument to parameter '__command' hereextern int system (const char *__command) __wur; ^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); ^~~~~~~~/usr/include/string.h:128:40: note: passing argument to parameter '__dest' hereextern char *strncpy (char *__restrict __dest, ^30 warnings generated.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 -DHAVE_MALLOC=1 -I. -I. -c `test -f wrap.c || echo './'`wrap.cwrap.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'
#
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:70:2: note: include the header or explicitly provide a declaration for 'strncpy'
#
2 warnings generated.
#
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 -DHAVE_MALLOC=1 -I. -I. -c `test -f crc.c || echo './'`crc.c
#
clang -o mp3wrap mp3wrap.o wrap.o crc.o
#
==> Entering fakeroot environment...
#
==> Starting package()...
#
make[1]: Entering directory '/tmp/mp3wrap/src/mp3wrap-0.5'
#
/bin/sh ./mkinstalldirs /tmp/mp3wrap/pkg/mp3wrap/usr/bin
#
mkdir /tmp/mp3wrap/pkg/mp3wrap/usr
#
mkdir /tmp/mp3wrap/pkg/mp3wrap/usr/bin
#
/usr/bin/install -c mp3wrap /tmp/mp3wrap/pkg/mp3wrap/usr/bin/mp3wrap
#
/bin/sh ./mkinstalldirs /tmp/mp3wrap/pkg/mp3wrap/usr/share/man/man1
#
mkdir /tmp/mp3wrap/pkg/mp3wrap/usr/share
#
mkdir /tmp/mp3wrap/pkg/mp3wrap/usr/share/man
#
mkdir /tmp/mp3wrap/pkg/mp3wrap/usr/share/man/man1
#
/usr/bin/install -c -m 644 ./mp3wrap.1 /tmp/mp3wrap/pkg/mp3wrap/usr/share/man/man1/mp3wrap.1
#
make[1]: Leaving directory '/tmp/mp3wrap/src/mp3wrap-0.5'
#
==> Tidying install...
#
-> Removing doc files...
#
-> Purging unwanted files...
#
==> Checking for packaging issue...
#
==> Creating package "mp3wrap"...
#
-> Generating .PKGINFO file...
#
-> Generating .BUILDINFO file...
#
error: invalid option '--noprogressbar'
#
-> Generating .MTREE file...
#
-> Compressing package...
#
==> Leaving fakeroot environment.
#
==> Finished making: mp3wrap 0.5-4 (Thu Apr 13 18:33:18 UTC 2017)
CMD: pacman --query --file mp3wrap-0.5-4-x86_64.pkg.tar.xz
Creating hybrid package for 'mp3wrap'
Trying to find vanilla package 'mp3wrap'...
CMD: pacman --query --file /mirror/mp3wrap-0.5-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 mp3wrap.pkg.tar.xz .PKGINFO
Created package at path /var/cache/pacman/pkg/mp3wrap.pkg.tar.xz
Attempting to access local repository, attempt 1
CMD: repo-add /var/cache/pacman/pkg/tuscan.db.tar /var/cache/pacman/pkg/mp3wrap.pkg.tar.xz
==> Extracting database to a temporary location...==> Extracting database to a temporary location...==> Adding package '/var/cache/pacman/pkg/mp3wrap.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/mp3wrap/src/mp3wrap-0.5/config.log'
This file contains any messages produced by compilers whilerunning configure, to aid debugging if configure makes a mistake.It was created by configure, which wasgenerated by GNU Autoconf 2.53. Invocation command line was$ ./configure --host=x86_64-unknown-linux --prefix=/usr --mandir=/usr/share/man## --------- #### Platform. #### --------- ##hostname = 82d6c0eb17eduname -m = x86_64uname -r = 4.10.6-1-ARCHuname -s = Linuxuname -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 = unknownhostinfo = unknown/bin/machine = unknown/usr/bin/oslevel = unknown/bin/universe = unknownPATH: /usr/binPATH: /usr/local/sbinPATH: /usr/local/binPATH: /usr/sbinPATH: /usr/binPATH: /sbinPATH: /bin## ----------- #### Core tests. #### ----------- ##configure:1228: checking for a BSD-compatible installconfigure:1282: result: /usr/bin/install -cconfigure:1293: checking whether build environment is saneconfigure:1336: result: yesconfigure:1370: checking for gawkconfigure:1386: found /usr/bin/gawkconfigure:1396: result: gawkconfigure:1406: checking whether make sets ${MAKE}configure:1426: result: yesconfigure:1538: checking for x86_64-unknown-linux-gccconfigure:1564: result: clangconfigure:1846: checking for C compiler versionconfigure:1849: clang --version &5clang version 3.8.0 (tags/RELEASE_380/final)Target: x86_64-unknown-linux-gnuThread model: posixInstalledDir: /usr/binconfigure:1852: $? = 0configure:1854: clang -v &5clang version 3.8.0 (tags/RELEASE_380/final)Target: x86_64-unknown-linux-gnuThread model: posixInstalledDir: /usr/binFound candidate GCC installation: /usr/bin/../lib/gcc/x86_64-pc-linux-gnu/6.1.1Found candidate GCC installation: /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/6.1.1Found candidate GCC installation: /usr/lib/gcc/x86_64-pc-linux-gnu/6.1.1Found candidate GCC installation: /usr/lib64/gcc/x86_64-pc-linux-gnu/6.1.1Selected GCC installation: /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/6.1.1Candidate multilib: .;@m64Selected multilib: .;@m64configure:1857: $? = 0configure:1859: clang -V &5clang-3.8: error: argument to '-V' is missing (expected 1 value)clang-3.8: error: no input filesconfigure:1862: $? = 1configure:1888: checking for C compiler default outputconfigure:1891: clang conftest.c >&5configure:1894: $? = 0configure:1927: result: a.outconfigure:1932: checking whether the C compiler worksconfigure:1938: ./a.outconfigure:1941: $? = 0configure:1956: result: yesconfigure:1963: checking whether we are cross compilingconfigure:1965: result: noconfigure:1968: checking for suffix of executablesconfigure:1970: clang -o conftest conftest.c >&5configure:1973: $? = 0configure:1995: result:configure:2001: checking for suffix of object filesconfigure:2025: clang -c conftest.c >&5configure:2028: $? = 0configure:2047: result: oconfigure:2051: checking whether we are using the GNU C compilerconfigure:2078: clang -c conftest.c >&5configure:2081: $? = 0configure:2084: test -s conftest.oconfigure:2087: $? = 0configure:2099: result: yesconfigure:2105: checking whether clang accepts -gconfigure:2129: clang -c -g conftest.c >&5configure:2132: $? = 0configure:2135: test -s conftest.oconfigure:2138: $? = 0configure:2148: result: yesconfigure:2175: clang -c conftest.c >&5conftest.c:2:3: error: unknown type name 'choke'choke me^conftest.c:2:11: error: expected ';' after top level declaratorchoke me^;2 errors generated.configure:2178: $? = 1configure: failed program was:#ifndef __cpluspluschoke me#endifconfigure:2296: checking for style of include used by makeconfigure:2324: result: GNUconfigure:2331: checking dependency style of clangconfigure:2393: result: gcc3configure:2410: checking for a BSD-compatible installconfigure:2464: result: /usr/bin/install -cconfigure:2482: checking whether byte ordering is bigendianconfigure:2512: clang -c conftest.c >&5configure:2515: $? = 0configure:2518: test -s conftest.oconfigure:2521: $? = 0configure:2548: clang -c conftest.c >&5configure:2538:2: error: use of undeclared identifier 'not'not big endian^1 error generated.configure:2551: $? = 1configure: failed program was:#line 2524 "configure"#include "confdefs.h"#include #include #ifdef F77_DUMMY_MAIN# ifdef __cplusplusextern "C"# endifint F77_DUMMY_MAIN() { return 1; }#endifintmain (){#if BYTE_ORDER != BIG_ENDIANnot big endian#endif;return 0;}configure:2665: result: noconfigure:2684: checking for clang option to accept ANSI Cconfigure:2747: clang -c conftest.c >&5configure:2750: $? = 0configure:2753: test -s conftest.oconfigure:2756: $? = 0configure:2773: result: none neededconfigure:2781: checking for an ANSI C-conforming constconfigure:2851: clang -c conftest.c >&5configure:2854: $? = 0configure:2857: test -s conftest.oconfigure:2860: $? = 0configure:2870: result: yesconfigure:2880: checking for inlineconfigure:2897: clang -c conftest.c >&5configure:2900: $? = 0configure:2903: test -s conftest.oconfigure:2906: $? = 0configure:2917: result: inlineconfigure:2938: checking for memsetconfigure:2981: clang -o conftest conftest.c >&5configure: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: $? = 0configure:2987: test -s conftestconfigure:2990: $? = 0configure:3000: result: yesconfigure:3015: checking how to run the C preprocessorconfigure:3041: clang -E conftest.cconfigure:3047: $? = 0configure:3074: clang -E conftest.cconfigure:3070:10: fatal error: 'ac_nonexistent.h' file not found#include ^1 error generated.configure:3080: $? = 1configure: failed program was:#line 3069 "configure"#include "confdefs.h"#include configure:3117: result: clang -Econfigure:3132: clang -E conftest.cconfigure:3138: $? = 0configure:3165: clang -E conftest.cconfigure:3161:10: fatal error: 'ac_nonexistent.h' file not found#include ^1 error generated.configure:3171: $? = 1configure: failed program was:#line 3160 "configure"#include "confdefs.h"#include configure:3211: checking for ANSI C header filesconfigure:3225: clang -E conftest.cconfigure:3231: $? = 0configure:3318: clang -o conftest conftest.c >&5configure:3309:7: warning: implicitly declaring library function 'exit' with type 'void (int) __attribute__((noreturn))' [-Wimplicit-function-declaration]exit(2);^configure:3309:7: note: include the header or explicitly provide a declaration for 'exit' 1 warning generated.configure:3321: $? = 0configure:3323: ./conftestconfigure:3326: $? = 0configure:3340: result: yesconfigure:3364: checking for sys/types.hconfigure:3377: clang -c conftest.c >&5configure:3380: $? = 0configure:3383: test -s conftest.oconfigure:3386: $? = 0configure:3396: result: yesconfigure:3364: checking for sys/stat.hconfigure:3377: clang -c conftest.c >&5configure:3380: $? = 0configure:3383: test -s conftest.oconfigure:3386: $? = 0configure:3396: result: yesconfigure:3364: checking for stdlib.hconfigure:3377: clang -c conftest.c >&5configure:3380: $? = 0configure:3383: test -s conftest.oconfigure:3386: $? = 0configure:3396: result: yesconfigure:3364: checking for string.hconfigure:3377: clang -c conftest.c >&5configure:3380: $? = 0configure:3383: test -s conftest.oconfigure:3386: $? = 0configure:3396: result: yesconfigure:3364: checking for memory.hconfigure:3377: clang -c conftest.c >&5configure:3380: $? = 0configure:3383: test -s conftest.oconfigure:3386: $? = 0configure:3396: result: yesconfigure:3364: checking for strings.hconfigure:3377: clang -c conftest.c >&5configure:3380: $? = 0configure:3383: test -s conftest.oconfigure:3386: $? = 0configure:3396: result: yesconfigure:3364: checking for inttypes.hconfigure:3377: clang -c conftest.c >&5configure:3380: $? = 0configure:3383: test -s conftest.oconfigure:3386: $? = 0configure:3396: result: yesconfigure:3364: checking for stdint.hconfigure:3377: clang -c conftest.c >&5configure:3380: $? = 0configure:3383: test -s conftest.oconfigure:3386: $? = 0configure:3396: result: yesconfigure:3364: checking for unistd.hconfigure:3377: clang -c conftest.c >&5configure:3380: $? = 0configure:3383: test -s conftest.oconfigure:3386: $? = 0configure:3396: result: yesconfigure:3413: checking for stdlib.hconfigure:3418: result: yesconfigure:3522: checking for working mallocconfigure:3554: clang -o conftest conftest.c >&5configure:3557: $? = 0configure:3559: ./conftestconfigure:3562: $? = 0configure:3575: result: yesconfigure:3699: creating ./config.status## ---------------------- #### Running config.status. #### ---------------------- ##This file was extended by config.status, which wasgenerated by GNU Autoconf 2.53. Invocation command line wasCONFIG_FILES =CONFIG_HEADERS =CONFIG_LINKS =CONFIG_COMMANDS =$ ./config.statuson 82d6c0eb17edconfig.status:590: creating Makefileconfig.status:715: executing default-1 commands## ---------------- #### Cache variables. #### ---------------- ##ac_cv_c_bigendian=noac_cv_c_compiler_gnu=yesac_cv_c_const=yesac_cv_c_inline=inlineac_cv_env_CC_set=setac_cv_env_CC_value=clangac_cv_env_CFLAGS_set=setac_cv_env_CFLAGS_value=ac_cv_env_CPPFLAGS_set=setac_cv_env_CPPFLAGS_value=ac_cv_env_CPP_set=ac_cv_env_CPP_value=ac_cv_env_LDFLAGS_set=setac_cv_env_LDFLAGS_value=ac_cv_env_build_alias_set=ac_cv_env_build_alias_value=ac_cv_env_host_alias_set=setac_cv_env_host_alias_value=x86_64-unknown-linuxac_cv_env_target_alias_set=ac_cv_env_target_alias_value=ac_cv_exeext=ac_cv_func_malloc_works=yesac_cv_func_memset=yesac_cv_header_inttypes_h=yesac_cv_header_memory_h=yesac_cv_header_stdc=yesac_cv_header_stdint_h=yesac_cv_header_stdlib_h=yesac_cv_header_string_h=yesac_cv_header_strings_h=yesac_cv_header_sys_stat_h=yesac_cv_header_sys_types_h=yesac_cv_header_unistd_h=yesac_cv_objext=oac_cv_path_install='/usr/bin/install -c'ac_cv_prog_AWK=gawkac_cv_prog_CC=clangac_cv_prog_CPP='clang -E'ac_cv_prog_cc_g=yesac_cv_prog_cc_stdc=ac_cv_prog_make_make_set=yesam_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#define HAVE_MALLOC 1configure: exit 0