Skip to content

Commit

Permalink
build-binutils: build-gcc: disable shared
Browse files Browse the repository at this point in the history
Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
  • Loading branch information
jcmvbkbc committed Jun 13, 2014
1 parent f098dda commit 268ef30
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build-binutils.sh
Expand Up @@ -7,7 +7,7 @@ export LANG=C
rm -rf $BINUTILS-$SUFFIX
mkdir $BINUTILS-$SUFFIX
cd $BINUTILS-$SUFFIX
../../$BINUTILS/configure --prefix=$PREFIX --target=$TARGET --enable-shared --disable-werror "$@"
../../$BINUTILS/configure --prefix=$PREFIX --target=$TARGET --disable-shared --disable-werror "$@"
make $PARALLEL
#make check
make install
2 changes: 1 addition & 1 deletion build-gcc.sh
Expand Up @@ -8,6 +8,6 @@ rm -rf $GCC-$SUFFIX
mkdir $GCC-$SUFFIX
cd $GCC-$SUFFIX
../../$GCC/configure --target=$TARGET --prefix=$PREFIX \
--enable-__cxa_atexit --enable-shared --disable-libssp --enable-languages=c "$@"
--enable-__cxa_atexit --disable-shared --disable-libssp --enable-languages=c "$@"
make $PARALLEL all-gcc all-target-libgcc
make install-gcc install-target-libgcc

0 comments on commit 268ef30

Please sign in to comment.