Skip to content

Commit

Permalink
gcc_stage2: -G0 flag removed
Browse files Browse the repository at this point in the history
  • Loading branch information
Crow-bar committed Jan 31, 2024
1 parent 4ad450d commit adc08c7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions scripts/005-gcc-stage2.sh
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,11 @@ rm -rf build-$TARGET-stage2 && mkdir build-$TARGET-stage2 && cd build-$TARGET-st
--with-newlib \
--disable-libssp \
--disable-multilib \
--enable-cxx-flags=-G0 \
--enable-threads=posix \
$TARG_XTRA_OPTS || { exit 1; }

## Compile and install.
make --quiet -j $PROC_NR clean || { exit 1; }
make --quiet -j $PROC_NR all || { exit 1; }
make --quiet -j $PROC_NR install-strip || { exit 1; }
make --quiet -j $PROC_NR clean || { exit 1; }
make --quiet -j $PROC_NR clean || { exit 1; }

0 comments on commit adc08c7

Please sign in to comment.