>>> uclibc-ng-test 0844445e7358eb10e716155b55b0fb23e88d644a Downloading GIT_DIR=/nvmedata/autobuild/instance-20/dl/uclibc-ng-test/git/.git git init . Initialized empty Git repository in /nvmedata/autobuild/instance-20/dl/uclibc-ng-test/git/.git/ GIT_DIR=/nvmedata/autobuild/instance-20/dl/uclibc-ng-test/git/.git git remote add origin 'git://uclibc-ng.org/git/uclibc-ng-test' GIT_DIR=/nvmedata/autobuild/instance-20/dl/uclibc-ng-test/git/.git git remote set-url origin 'git://uclibc-ng.org/git/uclibc-ng-test' Fetching all references GIT_DIR=/nvmedata/autobuild/instance-20/dl/uclibc-ng-test/git/.git git fetch origin From git://uclibc-ng.org/git/uclibc-ng-test * [new branch] master -> origin/master GIT_DIR=/nvmedata/autobuild/instance-20/dl/uclibc-ng-test/git/.git git fetch origin -t GIT_DIR=/nvmedata/autobuild/instance-20/dl/uclibc-ng-test/git/.git git submodule --quiet foreach 'printf "Deregistering submodule \"%s\"\n" "${path}" && cd .. && rm -rf "${path##*/}"' GIT_DIR=/nvmedata/autobuild/instance-20/dl/uclibc-ng-test/git/.git git checkout -f -q '0844445e7358eb10e716155b55b0fb23e88d644a' warning: refname '0844445e7358eb10e716155b55b0fb23e88d644a' is ambiguous. Git normally never creates a ref that ends with 40 hex characters because it will be ignored when you just specify 40-hex. These refs may be created by mistake. For example, git switch -c $br $(git rev-parse ...) where "$br" is somehow empty and a 40-hex ref is created. Please examine these refs and maybe delete them. Turn this message off by running "git config advice.objectNameWarning false" GIT_DIR=/nvmedata/autobuild/instance-20/dl/uclibc-ng-test/git/.git git clean -ffdx uclibc-ng-test-0844445e7358eb10e716155b55b0fb23e88d644a-br1.tar.gz: OK (sha256: f731307c0547ce4bbd3f5025972f64e9b22208a147e34e5745000b54d4d3aa98) >>> uclibc-ng-test 0844445e7358eb10e716155b55b0fb23e88d644a Extracting gzip -d -c /nvmedata/autobuild/instance-20/dl/uclibc-ng-test/uclibc-ng-test-0844445e7358eb10e716155b55b0fb23e88d644a-br1.tar.gz | tar --strip-components=1 -C /nvmedata/autobuild/instance-20/output-1/build/uclibc-ng-test-0844445e7358eb10e716155b55b0fb23e88d644a -xf - >>> uclibc-ng-test 0844445e7358eb10e716155b55b0fb23e88d644a Patching >>> uclibc-ng-test 0844445e7358eb10e716155b55b0fb23e88d644a Configuring >>> uclibc-ng-test 0844445e7358eb10e716155b55b0fb23e88d644a Building PATH="/nvmedata/autobuild/instance-20/output-1/host/bin:/nvmedata/autobuild/instance-20/output-1/host/sbin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin" NO_MATH=1 NO_LOCALE=1 NO_TLS=1 NO_NPTL=1 NO_DL=1 /usr/bin/make -j1 -C /nvmedata/autobuild/instance-20/output-1/build/uclibc-ng-test-0844445e7358eb10e716155b55b0fb23e88d644a CC="/nvmedata/autobuild/instance-20/output-1/host/bin/sh4a-buildroot-linux-musl-gcc" UCLIBC_EXTRA_CFLAGS="-D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -O0 -g0 -static" UCLIBC_EXTRA_LDFLAGS=" -static" test_compile make[1]: Entering directory '/nvmedata/autobuild/instance-20/output-1/build/uclibc-ng-test-0844445e7358eb10e716155b55b0fb23e88d644a' make[2]: Entering directory '/nvmedata/autobuild/instance-20/output-1/build/uclibc-ng-test-0844445e7358eb10e716155b55b0fb23e88d644a/test' TEST_LINK termios/ termios TEST_LINK silly/ hello TEST_LINK silly/ tiny TEST_LINK stdlib/ qsort TEST_LINK stdlib/ test-canon TEST_LINK stdlib/ test-canon2 TEST_LINK stdlib/ test-mkostemp-O_CLOEXEC TEST_LINK stdlib/ test-mkostemp-child TEST_LINK stdlib/ testatexit TEST_LINK stdlib/ teston_exit TEST_LINK stdlib/ teststrtol TEST_LINK stdlib/ teststrtoq TEST_LINK pwd_grp/ getgroups TEST_LINK pwd_grp/ grcat TEST_LINK pwd_grp/ pwcat TEST_LINK pwd_grp/ test_grp TEST_LINK pwd_grp/ test_pwd TEST_LINK string/ bug-strcoll1 TEST_LINK string/ bug-strncat1 TEST_LINK string/ bug-strpbrk1 TEST_LINK string/ bug-strspn1 TEST_LINK string/ stratcliff TEST_LINK string/ test-ffs TEST_LINK string/ testcopy TEST_LINK string/ tester tester.c: In function 'test_rawmemchr': tester.c:630:10: warning: implicit declaration of function 'rawmemchr'; did you mean 'memchr'? [-Wimplicit-function-declaration] 630 | check (rawmemchr (one, 'c') == one+2, 1); /* Basic test. */ | ^~~~~~~~~ | memchr tester.c:630:31: warning: comparison between pointer and integer 630 | check (rawmemchr (one, 'c') == one+2, 1); /* Basic test. */ | ^~ tester.c:631:31: warning: comparison between pointer and integer 631 | check (rawmemchr (one, 'd') == one+3, 2); /* End of string. */ | ^~ tester.c:632:31: warning: comparison between pointer and integer 632 | check (rawmemchr (one, 'a') == one, 3); /* Beginning. */ | ^~ tester.c:633:32: warning: comparison between pointer and integer 633 | check (rawmemchr (one, '\0') == one+4, 4); /* Finding NUL. */ | ^~ tester.c:635:31: warning: comparison between pointer and integer 635 | check (rawmemchr (one, 'b') == one+1, 5); /* Finding first. */ | ^~ tester.c:637:32: warning: comparison between pointer and integer 637 | check (rawmemchr (one, '\0') == one, 6); /* NUL in empty string. */ | ^~ tester.c:647:35: warning: comparison between pointer and integer 647 | check (rawmemchr (p, 'R') == p+8, 6+i); | ^~ /nvmedata/autobuild/instance-20/output-1/host/lib/gcc/sh4a-buildroot-linux-musl/11.3.0/../../../../sh4a-buildroot-linux-musl/bin/ld: tester.o: in function `test_rawmemchr': tester.c:(.text+0x39a0): undefined reference to `rawmemchr' /nvmedata/autobuild/instance-20/output-1/host/lib/gcc/sh4a-buildroot-linux-musl/11.3.0/../../../../sh4a-buildroot-linux-musl/bin/ld: tester.c:(.text+0x3a8c): undefined reference to `rawmemchr' collect2: error: ld returned 1 exit status make[3]: *** [../Test.mak:99: tester] Error 1 make[2]: *** [Makefile:72: _dircompile_string] Error 2 make[2]: Leaving directory '/nvmedata/autobuild/instance-20/output-1/build/uclibc-ng-test-0844445e7358eb10e716155b55b0fb23e88d644a/test' make[1]: *** [Makefile.in:16: test_compile] Error 2 make[1]: Leaving directory '/nvmedata/autobuild/instance-20/output-1/build/uclibc-ng-test-0844445e7358eb10e716155b55b0fb23e88d644a' make: *** [package/pkg-generic.mk:293: /nvmedata/autobuild/instance-20/output-1/build/uclibc-ng-test-0844445e7358eb10e716155b55b0fb23e88d644a/.stamp_built] Error 2 make: Leaving directory '/nvmedata/autobuild/instance-20/buildroot'