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 \
|
--enable-debug \
|
||||||
--extra-cflags="$CFLAGS_COMMON $CFLAGS" \
|
--extra-cflags="$CFLAGS_COMMON $CFLAGS" \
|
||||||
$CONFIGURE \
|
$CONFIGURE \
|
||||||
--target-list=i386-softmmu \
|
--target-list=i386-softmmu \
|
||||||
--enable-sdl \
|
--enable-sdl \
|
||||||
--with-sdlabi=2.0 \
|
--with-sdlabi=2.0 \
|
||||||
--disable-curl \
|
--disable-curl \
|
||||||
|
@ -60,6 +60,7 @@ set -x # Print commands from now on
|
||||||
--disable-libiscsi \
|
--disable-libiscsi \
|
||||||
--disable-spice \
|
--disable-spice \
|
||||||
--disable-user \
|
--disable-user \
|
||||||
|
--disable-stack-protector \
|
||||||
|
|
||||||
time make -j`nproc` 2>&1 | tee build.log
|
time make -j`nproc` 2>&1 | tee build.log
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue