mirror of https://github.com/xemu-project/xemu.git
Update configure with --disable-stack-protector
As noted in #106 this will produce working builds with GCC versions over 7.3.0-2. Upstream has already done this work-a-round.
This commit is contained in:
parent
5246cad0c1
commit
9b8904eda0
3
build.sh
3
build.sh
|
@ -44,7 +44,7 @@ set -x # Print commands from now on
|
|||
--enable-debug \
|
||||
--extra-cflags="$CFLAGS_COMMON $CFLAGS" \
|
||||
$CONFIGURE \
|
||||
--target-list=i386-softmmu \
|
||||
--target-list=i386-softmmu \
|
||||
--enable-sdl \
|
||||
--with-sdlabi=2.0 \
|
||||
--disable-curl \
|
||||
|
@ -60,6 +60,7 @@ set -x # Print commands from now on
|
|||
--disable-libiscsi \
|
||||
--disable-spice \
|
||||
--disable-user \
|
||||
--disable-stack-protector \
|
||||
|
||||
time make -j`nproc` 2>&1 | tee build.log
|
||||
|
||||
|
|
Loading…
Reference in New Issue