Do make defconfig before setting up CROSS_COMPILE. This will allow us to select a ARM 32/64 bit toolchain from .config in the next step. Signed-off-by: Sascha Hauer <s.hauer@xxxxxxxxxxxxxx> --- MAKEALL | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/MAKEALL b/MAKEALL index b4cf4c649b..ad95cfe040 100755 --- a/MAKEALL +++ b/MAKEALL @@ -98,6 +98,12 @@ do_build_target() { tmp=$(echo "${target}" | tr - _) + MAKE="make -j${JOBS} ARCH=${arch} O=${BUILDDIR}" + ${MAKE} ${target} 2>&1 > "${log_report}" | tee "${log_err}" + + check_pipe_status + configure_result="$?" + cross_compile=$(eval echo '$CROSS_COMPILE_'${tmp}) cross_compile_set=$(eval echo '${CROSS_COMPILE_'${tmp}'+set}') if [ "${cross_compile_set}" = "" ] @@ -110,25 +116,20 @@ do_build_target() { fi fi - MAKE="make -j${JOBS} CROSS_COMPILE=${cross_compile} ARCH=${arch} O=${BUILDDIR}" - ${MAKE} ${target} 2>&1 > "${log_report}" | tee "${log_err}" - - check_pipe_status - result="$?" - printf "Configure: " | tee -a "${log_report}" - if [ "$result" = "0" ]; then + if [ "$configure_result" = "0" ]; then printf "OK \n" | tee -a "${log_report}" + MAKE="make -j${JOBS} CROSS_COMPILE=${cross_compile} ARCH=${arch} O=${BUILDDIR}" ${MAKE} -s 2>&1 >> "${log_report}" | tee -a "${log_err}" check_pipe_status - result="$?" + compile_result="$?" printf "Compile: " ${target} | tee -a "${log_report}" - if [ "$result" = "0" ]; then + if [ "$compile_result" = "0" ]; then printf "OK \n" | tee -a "${log_report}" ${cross_compile}size ${BUILDDIR}/barebox | tee -a "${log_report}" else -- 2.39.2