* [Qemu-devel] [PATCH] Fix --enable-user-pie compilation.
@ 2010-05-21 17:04 Richard Henderson
2010-06-07 15:07 ` Richard Henderson
0 siblings, 1 reply; 5+ messages in thread
From: Richard Henderson @ 2010-05-21 17:04 UTC (permalink / raw)
To: qemu-devel; +Cc: aurelien
We forgot to propagate -fpie to the libdis-user directory.
Signed-off-by: Richard Henderson <rth@twiddle.net>
---
configure | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/configure b/configure
index 3cd2c5f..ba3aaac 100755
--- a/configure
+++ b/configure
@@ -2355,6 +2355,9 @@ for d in libdis libdis-user; do
ln -s $source_path/Makefile.dis $d/Makefile
echo > $d/config.mak
done
+if test "$static" = "no" -a "$user_pie" = "yes" ; then
+ echo "QEMU_CFLAGS+=-fpie" > libdis-user/config.mak
+fi
for target in $target_list; do
target_dir="$target"
--
1.7.0.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] [PATCH] Fix --enable-user-pie compilation.
2010-05-21 17:04 [Qemu-devel] [PATCH] Fix --enable-user-pie compilation Richard Henderson
@ 2010-06-07 15:07 ` Richard Henderson
2010-06-07 16:08 ` [Qemu-devel] " Paolo Bonzini
0 siblings, 1 reply; 5+ messages in thread
From: Richard Henderson @ 2010-06-07 15:07 UTC (permalink / raw)
To: qemu-devel; +Cc: aurelien
Ping^4
r~
On 05/21/2010 10:04 AM, Richard Henderson wrote:
> We forgot to propagate -fpie to the libdis-user directory.
>
> Signed-off-by: Richard Henderson <rth@twiddle.net>
> ---
> configure | 3 +++
> 1 files changed, 3 insertions(+), 0 deletions(-)
>
> diff --git a/configure b/configure
> index 3cd2c5f..ba3aaac 100755
> --- a/configure
> +++ b/configure
> @@ -2355,6 +2355,9 @@ for d in libdis libdis-user; do
> ln -s $source_path/Makefile.dis $d/Makefile
> echo > $d/config.mak
> done
> +if test "$static" = "no" -a "$user_pie" = "yes" ; then
> + echo "QEMU_CFLAGS+=-fpie" > libdis-user/config.mak
> +fi
>
> for target in $target_list; do
> target_dir="$target"
^ permalink raw reply [flat|nested] 5+ messages in thread
* [Qemu-devel] Re: [PATCH] Fix --enable-user-pie compilation.
2010-06-07 15:07 ` Richard Henderson
@ 2010-06-07 16:08 ` Paolo Bonzini
0 siblings, 0 replies; 5+ messages in thread
From: Paolo Bonzini @ 2010-06-07 16:08 UTC (permalink / raw)
To: Richard Henderson; +Cc: qemu-devel, aurelien
On 06/07/2010 05:07 PM, Richard Henderson wrote:
> Ping^4
>
>
> r~
>
> On 05/21/2010 10:04 AM, Richard Henderson wrote:
>> We forgot to propagate -fpie to the libdis-user directory.
>>
>> Signed-off-by: Richard Henderson<rth@twiddle.net>
>> ---
>> configure | 3 +++
>> 1 files changed, 3 insertions(+), 0 deletions(-)
>>
>> diff --git a/configure b/configure
>> index 3cd2c5f..ba3aaac 100755
>> --- a/configure
>> +++ b/configure
>> @@ -2355,6 +2355,9 @@ for d in libdis libdis-user; do
>> ln -s $source_path/Makefile.dis $d/Makefile
>> echo> $d/config.mak
>> done
>> +if test "$static" = "no" -a "$user_pie" = "yes" ; then
>> + echo "QEMU_CFLAGS+=-fpie"> libdis-user/config.mak
>> +fi
>>
>> for target in $target_list; do
>> target_dir="$target"
Acked-by: Paolo Bonzini <pbonzini@redhat.com>
Paolo
^ permalink raw reply [flat|nested] 5+ messages in thread
* [Qemu-devel] [PATCH] Fix --enable-user-pie compilation.
@ 2010-05-03 22:54 Richard Henderson
2010-05-17 18:27 ` Richard Henderson
0 siblings, 1 reply; 5+ messages in thread
From: Richard Henderson @ 2010-05-03 22:54 UTC (permalink / raw)
To: qemu-devel
We forgot to propagate -fpie to the libdis-user directory.
Signed-off-by: Richard Henderson <rth@twiddle.net>
---
configure | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/configure b/configure
index 87942f4..dc11b65 100755
--- a/configure
+++ b/configure
@@ -2344,6 +2344,9 @@ for d in libdis libdis-user; do
ln -s $source_path/Makefile.dis $d/Makefile
echo > $d/config.mak
done
+if test "$static" = "no" -a "$user_pie" = "yes" ; then
+ echo "QEMU_CFLAGS+=-fpie" > libdis-user/config.mak
+fi
for target in $target_list; do
target_dir="$target"
--
1.7.0.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] [PATCH] Fix --enable-user-pie compilation.
2010-05-03 22:54 [Qemu-devel] " Richard Henderson
@ 2010-05-17 18:27 ` Richard Henderson
0 siblings, 0 replies; 5+ messages in thread
From: Richard Henderson @ 2010-05-17 18:27 UTC (permalink / raw)
To: qemu-devel
Ping? This options really doesn't work atm...
r~
On 05/03/2010 03:54 PM, Richard Henderson wrote:
> We forgot to propagate -fpie to the libdis-user directory.
>
> Signed-off-by: Richard Henderson <rth@twiddle.net>
> ---
> configure | 3 +++
> 1 files changed, 3 insertions(+), 0 deletions(-)
>
> diff --git a/configure b/configure
> index 87942f4..dc11b65 100755
> --- a/configure
> +++ b/configure
> @@ -2344,6 +2344,9 @@ for d in libdis libdis-user; do
> ln -s $source_path/Makefile.dis $d/Makefile
> echo > $d/config.mak
> done
> +if test "$static" = "no" -a "$user_pie" = "yes" ; then
> + echo "QEMU_CFLAGS+=-fpie" > libdis-user/config.mak
> +fi
>
> for target in $target_list; do
> target_dir="$target"
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2010-06-07 16:08 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-05-21 17:04 [Qemu-devel] [PATCH] Fix --enable-user-pie compilation Richard Henderson
2010-06-07 15:07 ` Richard Henderson
2010-06-07 16:08 ` [Qemu-devel] " Paolo Bonzini
-- strict thread matches above, loose matches on Subject: below --
2010-05-03 22:54 [Qemu-devel] " Richard Henderson
2010-05-17 18:27 ` Richard Henderson
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).