Skip to content

Commit

Permalink
Remove build log file (#21)
Browse files Browse the repository at this point in the history
Co-authored-by: Łukasz Mitka <[email protected]>
  • Loading branch information
dkulacz and lukasz-mitka authored Dec 10, 2020
1 parent 4f423f1 commit 78203c9
Showing 1 changed file with 15 additions and 20 deletions.
35 changes: 15 additions & 20 deletions build-gcc-v850-elf-toolchain.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 78203c9

Please sign in to comment.