>>> moarvm 2020.06 Extracting gzip -d -c /home/buildroot/autobuild/run/instance-0/dl/moarvm/MoarVM-2020.06.tar.gz | tar --strip-components=1 -C /home/buildroot/autobuild/run/instance-0/output-1/build/moarvm-2020.06 -xf - >>> moarvm 2020.06 Patching >>> moarvm 2020.06 Configuring (cd /home/buildroot/autobuild/run/instance-0/output-1/build/moarvm-2020.06; PATH="/home/buildroot/autobuild/run/instance-0/output-1/host/bin:/home/buildroot/autobuild/run/instance-0/output-1/host/sbin:/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games" perl Configure.pl --build=x86_64-pc-linux-gnu --host=arm-buildroot-linux-gnueabi --ar="/home/buildroot/autobuild/run/instance-0/output-1/host/bin/arm-none-linux-gnueabi-ar" --cc="/home/buildroot/autobuild/run/instance-0/output-1/host/bin/arm-none-linux-gnueabi-gcc" --ld="/home/buildroot/autobuild/run/instance-0/output-1/host/bin/arm-none-linux-gnueabi-gcc" --prefix="/usr" --pkgconfig=/home/buildroot/autobuild/run/instance-0/output-1/host/bin/pkg-config --has-libuv --has-libtommath --has-libatomic --has-libffi) Welcome to MoarVM! Configuring cross build environment .................... trying to compile a simple C program ............... YES Testing pkgconfig .................................. 1.6.1 Adding extra libs for libuv: -L/home/buildroot/autobuild/run/instance-0/output-1/host/bin/../arm-buildroot-linux-gnueabi/sysroot/usr/lib Guessing :-( at build/probe.pm line 377. did not find libzstd; will not use heap snapshot format version 3 OK your CPU can't read unaligned values for any of int32 int64 num64 JIT isn't supported on platforms with 4 byte pointers. probing C type support for: _Bool, bool ............ YES: _Bool,bool probing computed goto support ...................... YES probing pthread_yield support ...................... Can't exec "./try": No such file or directory at build/probe.pm line 481. NO probing existance of optional malloc_trim() ........ YES probing support of rdtscp intrinsic ................ NO make: make compile: /home/buildroot/autobuild/run/instance-0/output-1/host/bin/arm-none-linux-gnueabi-gcc -Wextra -Wall -Wno-unused-parameter -Wno-unused-function -Wno-missing-braces -Werror=pointer-arith -O3 -DNDEBUG -D_REENTRANT -D_FILE_OFFSET_BITS=64 -DHAVE_LIBFFI -fPIC -DMVM_HEAPSNAPSHOT_FORMAT=2 includes: link: /home/buildroot/autobuild/run/instance-0/output-1/host/bin/arm-none-linux-gnueabi-gcc -O3 -DNDEBUG libs: -L/home/buildroot/autobuild/run/instance-0/output-1/host/bin/../arm-buildroot-linux-gnueabi/sysroot/usr/lib -lffi -ltommath -latomic_ops -luv -lm -lpthread -lrt -ldl byte order: little endian Configuring 3rdparty libs .............................. OK 3rdparty: 3rdparty/cmp/libcmp.a 3rdparty/sha1/libsha1.a 3rdparty/tinymt/libtinymt.a Generating src/gen/config.c ............................ OK Generating src/gen/config.h ............................ OK Generating Makefile .................................... OK Generating tools/check.mk .............................. OK Generating build/mk-moar-pc.pl ......................... OK Configuration SUCCESS. Type 'make' to build and 'make help' to see a list of available make targets. >>> moarvm 2020.06 Building PATH="/home/buildroot/autobuild/run/instance-0/output-1/host/bin:/home/buildroot/autobuild/run/instance-0/output-1/host/sbin:/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games" /usr/bin/make -j4 -C /home/buildroot/autobuild/run/instance-0/output-1/build/moarvm-2020.06 make[1]: Entering directory `/home/buildroot/autobuild/run/instance-0/output-1/build/moarvm-2020.06' compiling src/main.o compiling src/core/callsite.o compiling src/core/args.o compiling src/core/exceptions.o src/core/exceptions.c: In function 'search_frame_handlers_lex': src/core/exceptions.c:188:13: warning: this decimal constant is unsigned only in ISO C90 [enabled by default] if (fh->category_mask == MVM_EX_INLINE_BOUNDARY) { ^ src/core/exceptions.c:229:13: warning: this decimal constant is unsigned only in ISO C90 [enabled by default] if (fh->category_mask == MVM_EX_INLINE_BOUNDARY) { ^ src/core/exceptions.c: In function 'run_handler': src/core/exceptions.c:347:9: warning: empty declaration [enabled by default] MVM_FALLTHROUGH ^ compiling src/core/interp.o compiling src/core/threadcontext.o src/core/interp.c: In function 'MVM_interp_run': src/core/interp.c:2763:41: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] GET_REG(cur_op, 0).o = ((MVMHashEntry *)MVM_BC_get_I64(cur_op, 2))->value; ^ compiling src/core/compunit.o compiling src/core/bytecode.o compiling src/core/frame.o compiling src/core/callstack.o compiling src/core/validation.o compiling src/core/bytecodedump.o compiling src/core/threads.o src/core/threads.c: In function 'MVM_thread_cleanup_threads_list': src/core/threads.c:272:17: warning: empty declaration [enabled by default] MVM_FALLTHROUGH ^ compiling src/core/ops.o compiling src/core/hll.o compiling src/core/loadbytecode.o compiling src/math/num.o compiling src/math/grisu.o compiling src/core/coerce.o compiling src/core/dll.o compiling src/core/ext.o compiling src/core/nativecall.o compiling src/core/nativecall_libffi.o compiling src/core/continuation.o src/core/nativecall_libffi.c: In function 'unmarshal_callback': src/core/nativecall_libffi.c:115:20: warning: variable 'status' set but not used [-Wunused-but-set-variable] ffi_status status; ^ src/core/nativecall_libffi.c: In function 'callback_handler': src/core/nativecall_libffi.c:216:22: warning: unused variable 'values' [-Wunused-variable] void **values = MVM_malloc(sizeof(void *) * (data->cs->arg_count ? data->cs->arg_count : 1)); ^ src/core/nativecall_libffi.c: In function 'MVM_nativecall_invoke': src/core/nativecall_libffi.c:481:16: warning: unused variable 'status' [-Wunused-variable] ffi_status status = ffi_prep_cif(&cif, body->convention, (unsigned int)num_args, body->ffi_ret_type, body->ffi_arg_types); ^ src/core/interp.c:3323:66: warning: 'coderef' may be used uninitialized in this function [-Wmaybe-uninitialized] GET_REG(cur_op, 0).o = coderef ? coderef : cu->body.coderefs[0]; ^ compiling src/core/intcache.o compiling src/core/fixedsizealloc.o compiling src/core/regionalloc.o compiling src/debug/debugserver.o compiling src/gen/config.o compiling src/gc/orchestrate.o src/debug/debugserver.c: In function 'request_context_lexicals': src/debug/debugserver.c:1456:9: error: 'for' loop initial declarations are only allowed in C99 mode for (MVMuint32 j = 0; j < num_lexicals; j++) { ^ src/debug/debugserver.c:1456:9: note: use option -std=c99 or -std=gnu99 to compile your code make[1]: *** [src/debug/debugserver.o] Error 1 make[1]: *** Waiting for unfinished jobs.... src/core/interp.c:643:26: warning: variable 'mask' might be clobbered by 'longjmp' or 'vfork' [-Wclobbered] MVMint64 mask = v >> 63; ^ src/core/interp.c:3315:36: warning: variable 'coderef' might be clobbered by 'longjmp' or 'vfork' [-Wclobbered] MVMObject *coderef; ^ make[1]: Leaving directory `/home/buildroot/autobuild/run/instance-0/output-1/build/moarvm-2020.06' make: *** [/home/buildroot/autobuild/run/instance-0/output-1/build/moarvm-2020.06/.stamp_built] Error 2 make: Leaving directory `/home/buildroot/autobuild/run/instance-0/buildroot'