I meet It error when I launch ‘make -j 6’ (six core processor) ../../../../../../../../../../combined/newlib/libc/machine/arm/aeabi_memset-arm.S: Assembler messages: ../../../../../../../../../../combined/newlib/libc/machine/arm/aeabi_memset-arm.S:43: Error: selected processor does not support `uxtb lr,r2' in ARM mode ../../../../../../../../../../combined/newlib/libc/machine/arm/aeabi_memset-arm.S:58: Error: selected processor does not support `uxtb lr,r2' in ARM mode ../../../../../../../../../../combined/newlib/libc/machine/arm/aeabi_memset-arm.S:93: Error: selected processor does not support `uxtbne r2,r2' in ARM mode Makefile:360: recipe for target 'lib_a-aeabi_memset-soft.o' failed make[9]: *** [lib_a-aeabi_memset-soft.o] Error 1 make[9]: *** Waiting for unfinished jobs.... make[9]: Leaving directory '/root/build/arm-eabi/arm/autofp/v5te/fpu/newlib/libc/machine/arm' Makefile:319: recipe for target 'all-recursive' failed make[8]: *** [all-recursive] Error 1 make[8]: Leaving directory '/root/build/arm-eabi/arm/autofp/v5te/fpu/newlib/libc/machine' Makefile:675: recipe for target 'all-recursive' failed make[7]: *** [all-recursive] Error 1 make[7]: Leaving directory '/root/build/arm-eabi/arm/autofp/v5te/fpu/newlib/libc' Makefile:627: recipe for target 'all-recursive' failed make[6]: *** [all-recursive] Error 1 make[6]: Leaving directory '/root/build/arm-eabi/arm/autofp/v5te/fpu/newlib' Makefile:450: recipe for target 'all' failed make[5]: *** [all] Error 2 make[5]: Leaving directory '/root/build/arm-eabi/arm/autofp/v5te/fpu/newlib' Makefile:1188: recipe for target 'multi-do' failed make[4]: *** [multi-do] Error 1 make[4]: Leaving directory '/root/build/arm-eabi/newlib' Makefile:1104: recipe for target 'all-multi' failed make[3]: *** [all-multi] Error 2 make[3]: Leaving directory '/root/build/arm-eabi/newlib' Makefile:450: recipe for target 'all' failed make[2]: *** [all] Error 2 make[2]: Leaving directory '/root/build/arm-eabi/newlib' Makefile:16008: recipe for target 'all-target-newlib' failed make[1]: *** [all-target-newlib] Error 2 make[1]: Leaving directory '/root/build' Makefile:951: recipe for target 'all' failed make: *** [all] Error 2 Before the make I launch It commands line in : cd ${TOP}/build ../combined/configure \ --target=arm-eabi --disable-gdb --enable-languages=c,c++,fortran,go --prefix=${TOP}/install Now I will do again the make in objdir directorie which the advice from paul to remove the -k setting ! Provenance : Courrier<https://go.microsoft.com/fwlink/?LinkId=550986> pour Windows 10 ________________________________ De : Paul Smith <paul@xxxxxxxxxxxxxxxxx> Envoyé : Sunday, July 7, 2019 3:44:04 PM À : Dorian ROSSE; gcc-help@xxxxxxxxxxx Objet : Re: Nobody help myself in older e-mail On Sun, 2019-07-07 at 12:58 +0000, Dorian ROSSE wrote: > ‘cd objdir; make -k check’ Unfortunately it's very hard to understand what you are doing, what you already did, and what you're trying to do. I will assume that you've followed the instructions in the documentation and successfully configured and compiled GCC and now you're trying to invoke the "check" operation to verify it. I recommend that you remove the "-k" option from your make command: that option tells make that if it encounters an error it should keep going to do as much more work as it can before exiting with an error. So, the error you encountered is probably much earlier in your output: the messages you showed us are not the actual errors, they are just the remnants of make discovering you had an error. Without seeing the actual errors there's nothing we can do to help. By removing the "-k" option, make will stop immediately when it hits the first error which could make it simpler for you to locate it.