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 |
---|---|
321 |
cpp |
289 |
sh |
18 |
java |
628 |
total |
The process tree of the build process is here.
Several sub-process invocations were improper; see the process tree for details. Summary:
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/arm-linux-androideabi --> /sysroot/arm-linux-androideabi
/toolchain_root/COPYING3.LIB --> /sysroot/COPYING3.LIB
/toolchain_root/sysroot --> /sysroot/sysroot
/toolchain_root/COPYING.RUNTIME --> /sysroot/COPYING.RUNTIME
/toolchain_root/lib --> /sysroot/lib
/toolchain_root/SOURCES --> /sysroot/SOURCES
/toolchain_root/lib64 --> /sysroot/lib64
/toolchain_root/share --> /sysroot/share
/toolchain_root/bin --> /sysroot/bin
/toolchain_root/COPYING --> /sysroot/COPYING
/toolchain_root/COPYING3 --> /sysroot/COPYING3
/toolchain_root/COPYING.LIB --> /sysroot/COPYING.LIB
/toolchain_root/include --> /sysroot/include
/toolchain_root/libexec --> /sysroot/libexec
CMD: sudo -u tuscan PATH=/sysroot/bin:/sysroot/libexec/gcc/arm-linux-androideabi/4.8:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin CC=arm-linux-androideabi-gcc CXX=arm-linux-androideabi-g++ red makepkg --noextract --syncdeps --skipinteg --skippgpcheck --skipchecksums --noconfirm --nocolor --log --noprogressbar --nocheck
==> Making package: libcrossguid 20150803.8f399e8-1 (Tue Apr 4 19:42:05 UTC 2017)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> WARNING: Using existing $srcdir/ tree
==> Starting build()...
cc1plus: error: no include path in which to search for stdc-predef.h
In file included from guid.cpp:25:0:
guid.h:27:20: error: no include path in which to search for iostream
#include
^
guid.h:28:18: error: no include path in which to search for vector
#include
^
guid.h:29:19: error: no include path in which to search for sstream
#include
^
guid.h:30:18: error: no include path in which to search for string
#include
^
guid.h:31:19: error: no include path in which to search for iomanip
#include
^
guid.cpp:28:23: error: no include path in which to search for uuid/uuid.h
#include
^
In file included from guid.cpp:25:0:
guid.h:46:16: error: 'vector' in namespace 'std' does not name a type
Guid(const std::vector &bytes);
^
guid.h:46:21: error: ISO C++ forbids declaration of 'parameter' with no type [-fpermissive]
Guid(const std::vector &bytes);
^
guid.h:46:27: error: expected ',' or '...' before '<' token
Guid(const std::vector &bytes);
^
guid.h:52:16: error: 'string' in namespace 'std' does not name a type
Guid(const std::string &fromString);
^
guid.h:52:29: error: ISO C++ forbids declaration of 'fromString' with no type [-fpermissive]
Guid(const std::string &fromString);
^
guid.h:70:5: error: 'vector' in namespace 'std' does not name a type
std::vector _bytes;
^
guid.h:73:12: error: 'ostream' in namespace 'std' does not name a type
friend std::ostream &operator<<(std::ostream &s, const Guid &guid);
^
guid.cpp:46:1: error: 'ostream' does not name a type
ostream &operator<<(ostream &s, const Guid &guid)
^
guid.cpp:72:18: error: 'vector' does not name a type
Guid::Guid(const vector &bytes)
^
guid.cpp:72:18: error: ISO C++ forbids declaration of 'parameter' with no type [-fpermissive]
guid.cpp:72:24: error: expected ',' or '...' before '<' token
Guid::Guid(const vector &bytes)
^
guid.cpp: In constructor 'Guid::Guid(int)':
guid.cpp:74:3: error: '_bytes' was not declared in this scope
_bytes = bytes;
^
guid.cpp:74:12: error: 'bytes' was not declared in this scope
_bytes = bytes;
^
guid.cpp: In constructor 'Guid::Guid(const unsigned char*)':
guid.cpp:80:3: error: '_bytes' was not declared in this scope
_bytes.assign(bytes, bytes + 16);
^
guid.cpp: At global scope:
guid.cpp:105:18: error: 'string' does not name a type
Guid::Guid(const string &fromString)
^
guid.cpp:105:26: error: ISO C++ forbids declaration of 'fromString' with no type [-fpermissive]
Guid::Guid(const string &fromString)
^
guid.cpp: In constructor 'Guid::Guid(const int&)':
guid.cpp:107:3: error: '_bytes' was not declared in this scope
_bytes.clear();
^
guid.cpp:112:25: error: 'begin' was not declared in this scope
for (const char &ch : fromString)
^
guid.cpp:112:25: error: 'end' was not declared in this scope
guid.cpp: In constructor 'Guid::Guid()':
guid.cpp:136:3: error: '_bytes' was not declared in this scope
_bytes = vector(16, 0);
^
guid.cpp:136:12: error: 'vector' was not declared in this scope
_bytes = vector(16, 0);
^
guid.cpp:136:19: error: expected primary-expression before 'unsigned'
_bytes = vector(16, 0);
^
guid.cpp:136:19: error: expected ';' before 'unsigned'
guid.cpp: In copy constructor 'Guid::Guid(const Guid&)':
guid.cpp:142:3: error: '_bytes' was not declared in this scope
_bytes = other._bytes;
^
guid.cpp:142:18: error: 'const class Guid' has no member named '_bytes'
_bytes = other._bytes;
^
guid.cpp: In member function 'Guid& Guid::operator=(const Guid&)':
guid.cpp:148:3: error: '_bytes' was not declared in this scope
_bytes = other._bytes;
^
guid.cpp:148:18: error: 'const class Guid' has no member named '_bytes'
_bytes = other._bytes;
^
guid.cpp: In member function 'bool Guid::operator==(const Guid&) const':
guid.cpp:155:10: error: '_bytes' was not declared in this scope
return _bytes == other._bytes;
^
guid.cpp:155:26: error: 'const class Guid' has no member named '_bytes'
return _bytes == other._bytes;
^
guid.cpp: In member function 'Guid GuidGenerator::newGuid()':
guid.cpp:169:3: error: 'uuid_t' was not declared in this scope
uuid_t id;
^
guid.cpp:169:10: error: expected ';' before 'id'
uuid_t id;
^
guid.cpp:170:17: error: 'id' was not declared in this scope
uuid_generate(id);
^
guid.cpp:170:19: error: 'uuid_generate' was not declared in this scope
uuid_generate(id);
^
==> ERROR: A failure occurred in build().
Aborting...