user_only: compile everything with -fpie
We really need compile _all_ sources for user target with -fpie when
use --enable-user-pie.
It's regression introduced by commit add16157d7
.
Signed-off-by: Kirill A. Shutemov <kirill@shutemov.name>
Cc: Blue Swirl <blauwirbel@gmail.com>
Signed-off-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
parent
060fbfe1d6
commit
299060a06e
@ -2,10 +2,15 @@
|
|||||||
|
|
||||||
include ../config-host.mak
|
include ../config-host.mak
|
||||||
include $(SRC_PATH)/rules.mak
|
include $(SRC_PATH)/rules.mak
|
||||||
|
include config.mak
|
||||||
|
|
||||||
.PHONY: all
|
.PHONY: all
|
||||||
|
|
||||||
VPATH=$(SRC_PATH)
|
# Do not take %.o from $(SRC_PATH), only %.c and %.h
|
||||||
|
# All %.o for user targets should be built with -fpie, when
|
||||||
|
# configured with --enable-user-pie, so we don't want to
|
||||||
|
# take %.o from $(SRC_PATH), since they built without -fpie
|
||||||
|
vpath %.c %.h $(SRC_PATH)
|
||||||
|
|
||||||
QEMU_CFLAGS+=-I..
|
QEMU_CFLAGS+=-I..
|
||||||
|
|
||||||
|
3
configure
vendored
3
configure
vendored
@ -2652,3 +2652,6 @@ d=libuser
|
|||||||
mkdir -p $d
|
mkdir -p $d
|
||||||
rm -f $d/Makefile
|
rm -f $d/Makefile
|
||||||
ln -s $source_path/Makefile.user $d/Makefile
|
ln -s $source_path/Makefile.user $d/Makefile
|
||||||
|
if test "$static" = "no" -a "$user_pie" = "yes" ; then
|
||||||
|
echo "QEMU_CFLAGS+=-fpie" > $d/config.mak
|
||||||
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user