From 78203c90b3e4a1ec480bbd80f72d1208a441e636 Mon Sep 17 00:00:00 2001 From: dkulacz <64925286+dkulacz@users.noreply.github.com> Date: Thu, 10 Dec 2020 14:02:26 +0100 Subject: [PATCH] Remove build log file (#21) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Ɓukasz Mitka --- build-gcc-v850-elf-toolchain.sh | 35 ++++++++++++++------------------- 1 file changed, 15 insertions(+), 20 deletions(-) diff --git a/build-gcc-v850-elf-toolchain.sh b/build-gcc-v850-elf-toolchain.sh index 8ff1d27..db31354 100755 --- a/build-gcc-v850-elf-toolchain.sh +++ b/build-gcc-v850-elf-toolchain.sh @@ -71,11 +71,10 @@ cd ${BUILD_PATH}/binutils ${SOURCES_PATH}/binutils-${BINUTILS_VERSION}/configure \ --target=${TARGET_ARCH} \ --prefix=${TOOLCHAIN_PATH} \ ---disable-nls \ --v 2>&1 | tee configure.out +--disable-nls -make -w ${NUMJOBS} 2>&1 | tee make.out -make -w install 2>&1 | tee make.out +make ${NUMJOBS} +make install # build gcc - 1st pass @@ -90,11 +89,10 @@ ${SOURCES_PATH}/gcc-${GCC_VERSION}/configure \ --with-gnu-as \ --with-gnu-ld \ --with-newlib \ ---disable-nls \ --v 2>&1 | tee configure.out +--disable-nls -make -w ${NUMJOBS} all-gcc 2>&1 | tee make.out -make -w install-gcc 2>&1 | tee make.out +make ${NUMJOBS} all-gcc +make install-gcc # build newlib @@ -106,11 +104,10 @@ ${SOURCES_PATH}/newlib-${NEWLIB_VERSION}/configure \ --target=${TARGET_ARCH} \ --prefix=${TOOLCHAIN_PATH} \ --enable-newlib-nano-formatted-io \ ---disable-nls \ --v 2>&1 | tee configure.out +--disable-nls -make -w ${NUMJOBS} 2>&1 | tee make.out -make -w install 2>&1 | tee make.out +make ${NUMJOBS} +make install # build gcc - 2nd pass @@ -126,11 +123,10 @@ ${SOURCES_PATH}/gcc-${GCC_VERSION}/configure \ --disable-libssp \ --disable-threads \ --disable-shared \ ---disable-nls \ --v 2>&1 | tee configure.out +--disable-nls -make -w ${NUMJOBS} 2>&1 | tee make.out -make -w install 2>&1 | tee make.out +make ${NUMJOBS} +make install # build gdb @@ -140,11 +136,10 @@ cd ${BUILD_PATH}/gdb ${SOURCES_PATH}/gdb-${GDB_VERSION}/configure \ --target=${TARGET_ARCH} \ --prefix=${TOOLCHAIN_PATH} \ ---disable-nls \ --v 2>&1 | tee configure.out +--disable-nls -make -w ${NUMJOBS} 2>&1 | tee make.out -make -w install 2>&1 | tee make.out +make ${NUMJOBS} +make install # run test compilation - C