cpantestlogs/Linux::AIO_genfailure.log
2017-05-02 18:44:36 -07:00

142 lines
7.1 KiB
Text
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

perl-blead
==========
cpanm (App::cpanminus) 1.7043 on perl 5.026000 built for x86_64-linux
Work directory is /home/ryan/.cpanm/work/1493488774.30531
You have make /usr/bin/make
You have LWP 6.26
You have /bin/tar: tar (GNU tar) 1.29
Copyright (C) 2015 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
Written by John Gilmore and Jay Fenlason.
You have /usr/bin/unzip
Searching Linux::AIO () on cpanmetadb ...
Unpacking Linux-AIO-1.9.tar.gz
--> Working on Linux::AIO
Fetching http://www.cpan.org/authors/id/M/ML/MLEHMANN/Linux-AIO-1.9.tar.gz ... OK
Linux-AIO-1.9/
Linux-AIO-1.9/AIO.pm
Linux-AIO-1.9/Makefile.PL
Linux-AIO-1.9/META.yml
Linux-AIO-1.9/COPYING
Linux-AIO-1.9/AIO.xs
Linux-AIO-1.9/t/
Linux-AIO-1.9/t/01_stat.t
Linux-AIO-1.9/t/03_errors.t
Linux-AIO-1.9/t/aio_test_common.pm
Linux-AIO-1.9/t/00_load.t
Linux-AIO-1.9/t/02_read.t
Linux-AIO-1.9/MANIFEST
Linux-AIO-1.9/README
Linux-AIO-1.9/Changes
Entering Linux-AIO-1.9
Checking configure dependencies from META.yml
Running Makefile.PL
Configuring Linux-AIO-1.9 ...
WARNING: This module is architecture-dependent and will not likely work
on lesser-used architectures (see Changes). If the module (esp.
aio_read and aio_write) doesn't work, please report this and I'll
fix it for you. I promise ;)
Checking if your kit is complete...
Looks good
Generating a Unix-style Makefile
Writing Makefile for Linux::AIO
Writing MYMETA.yml and MYMETA.json
Checking dependencies from MYMETA.json ...
Checking if you have ExtUtils::MakeMaker 0 ... Yes (7.24)
OK
Building and testing Linux-AIO-1.9 ... cp AIO.pm blib/lib/Linux/AIO.pm
Running Mkbootstrap for AIO ()
chmod 644 "AIO.bs"
"/home/ryan/perl5/perlbrew/perls/perl-blead/bin/perl5.26.0" -MExtUtils::Command::MM -e 'cp_nonempty' -- AIO.bs blib/arch/auto/Linux/AIO/AIO.bs 644
"/home/ryan/perl5/perlbrew/perls/perl-blead/bin/perl5.26.0" "/home/ryan/perl5/perlbrew/perls/perl-blead/lib/site_perl/5.26.0/ExtUtils/xsubpp" -typemap '/home/ryan/perl5/perlbrew/perls/perl-blead/lib/5.26.0/ExtUtils/typemap' AIO.xs > AIO.xsc
mv AIO.xsc AIO.c
cc -c -fwrapv -fno-strict-aliasing -pipe -fstack-protector-strong -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -O2 -DVERSION=\"1.9\" -DXS_VERSION=\"1.9\" -fPIC "-I/home/ryan/perl5/perlbrew/perls/perl-blead/lib/5.26.0/x86_64-linux/CORE" AIO.c
AIO.xs: In function aio_proc:
AIO.xs:285:3: warning: implicit declaration of function _syscall3 [-Wimplicit-function-declaration]
_syscall3(__kernel_size_t, read , unsigned int, fd, char *, buf, __kernel_size_t, count)
^~~~~~~~~
AIO.xs:285:13: error: expected expression before __kernel_size_t
_syscall3(__kernel_size_t, read , unsigned int, fd, char *, buf, __kernel_size_t, count)
^~~~~~~~~~~~~~~
AIO.xs:286:3: error: expected ; before _syscall3
_syscall3(__kernel_size_t, write, unsigned int, fd, char *, buf, __kernel_size_t, count)
^~~~~~~~~
AIO.xs:291:3: warning: implicit declaration of function _syscall1 [-Wimplicit-function-declaration]
_syscall1(long, fsync, unsigned int, fd);
^~~~~~~~~
AIO.xs:291:13: error: expected expression before long
_syscall1(long, fsync, unsigned int, fd);
^~~~
AIO.xs:296:13: error: expected expression before long
_syscall1(long, fdatasync, unsigned int, fd);
^~~~
AIO.xs:308:3: warning: implicit declaration of function _syscall5 [-Wimplicit-function-declaration]
_syscall5(__kernel_ssize_t, pread64 , unsigned int, fd, char *, buf,
^~~~~~~~~
AIO.xs:308:13: error: expected expression before __kernel_ssize_t
_syscall5(__kernel_ssize_t, pread64 , unsigned int, fd, char *, buf,
^~~~~~~~~~~~~~~~
AIO.xs:310:3: error: expected ; before _syscall5
_syscall5(__kernel_ssize_t, pwrite64, unsigned int, fd, char *, buf,
^~~~~~~~~
AIO.xs:319:3: warning: implicit declaration of function _syscall2 [-Wimplicit-function-declaration]
_syscall2(long, stat , const char *, filename, struct kernelstat *, buf)
^~~~~~~~~
AIO.xs:319:13: error: expected expression before long
_syscall2(long, stat , const char *, filename, struct kernelstat *, buf)
^~~~
AIO.xs:320:3: error: expected ; before _syscall2
_syscall2(long, lstat, const char *, filename, struct kernelstat *, buf)
^~~~~~~~~
AIO.xs:338:45: error: too many arguments to function pread64
case REQ_READ: req->result = pread64 (req->fd, req->dataptr, req->length, LOFF_ARG (req->offset)); break;
^~~~~~~
In file included from /home/ryan/perl5/perlbrew/perls/perl-blead/lib/5.26.0/x86_64-linux/CORE/perl.h:800:0,
from AIO.xs:4:
/usr/include/unistd.h:407:16: note: declared here
extern ssize_t pread64 (int __fd, void *__buf, size_t __nbytes,
^~~~~~~
AIO.xs:339:45: error: too many arguments to function pwrite64
case REQ_WRITE: req->result = pwrite64 (req->fd, req->dataptr, req->length, LOFF_ARG (req->offset)); break;
^~~~~~~~
In file included from /home/ryan/perl5/perlbrew/perls/perl-blead/lib/5.26.0/x86_64-linux/CORE/perl.h:800:0,
from AIO.xs:4:
/usr/include/unistd.h:411:16: note: declared here
extern ssize_t pwrite64 (int __fd, const void *__buf, size_t __n,
^~~~~~~~
AIO.xs:340:45: error: too many arguments to function readahead
case REQ_READAHEAD: req->result = readahead (req->fd, LOFF_ARG (req->offset), req->length); break;
^~~~~~~~~
In file included from /usr/include/x86_64-linux-gnu/bits/fcntl.h:61:0,
from /usr/include/fcntl.h:35,
from /usr/include/x86_64-linux-gnu/sys/file.h:24,
from /home/ryan/perl5/perlbrew/perls/perl-blead/lib/5.26.0/x86_64-linux/CORE/perl.h:6495,
from AIO.xs:4:
/usr/include/x86_64-linux-gnu/bits/fcntl-linux.h:368:16: note: declared here
extern ssize_t readahead (int __fd, __off64_t __offset, size_t __count)
^~~~~~~~~
Makefile:328: recipe for target 'AIO.o' failed
make: *** [AIO.o] Error 1
! Installing Linux::AIO failed. See /home/ryan/.cpanm/work/1493488774.30531/build.log for details. Retry with --force to force install it.
FAIL
Command [cpanm --reinstall --verbose Linux::AIO] terminated with exit code 1 ($? = 256) under the following perl environment:
Command terminated with non-zero status.
Current perl:
Name: perl-blead
Path: /home/ryan/perl5/perlbrew/perls/perl-blead/bin/perl
Config: -de -Dprefix=/home/ryan/perl5/perlbrew/perls/perl-blead -Dusedevel -Aeval:scriptdir=/home/ryan/perl5/perlbrew/perls/perl-blead/bin
Compiled at: Mar 30 2017 03:10:09
perlbrew:
version: 0.78
ENV:
PERLBREW_ROOT: /home/ryan/perl5/perlbrew
PERLBREW_HOME: /home/ryan/.perlbrew
PERLBREW_PATH: /home/ryan/perl5/perlbrew/bin:/home/ryan/perl5/perlbrew/perls/perl-blead/bin
PERLBREW_MANPATH: /home/ryan/perl5/perlbrew/perls/perl-blead/man