qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] rules.mak: Also try -r to build modules
@ 2016-11-29 15:37 Paolo Bonzini
  2016-11-29 16:22 ` Stefan Hajnoczi
  0 siblings, 1 reply; 5+ messages in thread
From: Paolo Bonzini @ 2016-11-29 15:37 UTC (permalink / raw)
  To: qemu-devel; +Cc: stefanha, qemu-stable

Building qemu fails in distributions where gcc enables PIE by default
(e.g. Debian unstable) with:

/usr/bin/ld: -r and -pie may not be used together

You have to use -r instead of -Wl,-r to avoid gcc passing -pie to the linker
when PIE is enabled and a relocatable object is passed.  However, clang
does not know about -r, so try -Wl,-r first.

Reported-by: Adrian Bunk <bunk@stusta.de>
Cc: qemu-stable@nongnu.org
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
 configure | 10 ++++++++--
 rules.mak |  2 +-
 2 files changed, 9 insertions(+), 3 deletions(-)

diff --git a/configure b/configure
index 5e66828..c2508fe 100755
--- a/configure
+++ b/configure
@@ -4723,8 +4723,14 @@ EOF
 if ! compile_object ""; then
   error_exit "Failed to compile object file for LD_REL_FLAGS test"
 fi
-if do_cc -nostdlib -Wl,-r -Wl,--no-relax -o $TMPMO $TMPO; then
-  LD_REL_FLAGS="-Wl,--no-relax"
+for i in '-Wl,-r -Wl,--no-relax' -Wl,-r -r; do
+  if do_cc -nostdlib $i -o $TMPMO $TMPO; then
+    LD_REL_FLAGS=$i
+    break
+  fi
+done
+if test "$modules" = "yes" && test "$LD_REL_FLAGS" = ""; then
+  feature_not_found "modules" "Cannot find how to build relocatable objects"
 fi
 
 ##########################################
diff --git a/rules.mak b/rules.mak
index 0333ae3..f4839d2 100644
--- a/rules.mak
+++ b/rules.mak
@@ -93,7 +93,7 @@ module-common.o: CFLAGS += $(DSO_OBJ_CFLAGS)
 	$(if $(findstring /,$@),$(call quiet-command,cp $@ $(subst /,-,$@),"CP","$(subst /,-,$@)"))
 
 
-LD_REL := $(CC) -nostdlib -Wl,-r $(LD_REL_FLAGS)
+LD_REL := $(CC) -nostdlib $(LD_REL_FLAGS)
 
 %.mo:
 	$(call quiet-command,$(LD_REL) -o $@ $^,"LD","$(TARGET_DIR)$@")
-- 
2.9.3

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] [PATCH] rules.mak: Also try -r to build modules
  2016-11-29 15:37 [Qemu-devel] [PATCH] rules.mak: Also try -r to build modules Paolo Bonzini
@ 2016-11-29 16:22 ` Stefan Hajnoczi
  2016-11-29 16:57   ` Paolo Bonzini
  0 siblings, 1 reply; 5+ messages in thread
From: Stefan Hajnoczi @ 2016-11-29 16:22 UTC (permalink / raw)
  To: Paolo Bonzini; +Cc: qemu-devel, qemu-stable, stefanha

[-- Attachment #1: Type: text/plain, Size: 777 bytes --]

On Tue, Nov 29, 2016 at 04:37:20PM +0100, Paolo Bonzini wrote:
> Building qemu fails in distributions where gcc enables PIE by default
> (e.g. Debian unstable) with:
> 
> /usr/bin/ld: -r and -pie may not be used together
> 
> You have to use -r instead of -Wl,-r to avoid gcc passing -pie to the linker
> when PIE is enabled and a relocatable object is passed.  However, clang
> does not know about -r, so try -Wl,-r first.
> 
> Reported-by: Adrian Bunk <bunk@stusta.de>
> Cc: qemu-stable@nongnu.org
> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
> ---
>  configure | 10 ++++++++--
>  rules.mak |  2 +-
>  2 files changed, 9 insertions(+), 3 deletions(-)

Thanks, applied to my staging tree:
https://github.com/stefanha/qemu/commits/staging

Stefan

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 455 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] [PATCH] rules.mak: Also try -r to build modules
  2016-11-29 16:22 ` Stefan Hajnoczi
@ 2016-11-29 16:57   ` Paolo Bonzini
  2016-11-29 17:16     ` Stefan Hajnoczi
  0 siblings, 1 reply; 5+ messages in thread
From: Paolo Bonzini @ 2016-11-29 16:57 UTC (permalink / raw)
  To: Stefan Hajnoczi; +Cc: qemu-devel, stefanha, qemu-stable



On 29/11/2016 17:22, Stefan Hajnoczi wrote:
> On Tue, Nov 29, 2016 at 04:37:20PM +0100, Paolo Bonzini wrote:
>> Building qemu fails in distributions where gcc enables PIE by default
>> (e.g. Debian unstable) with:
>>
>> /usr/bin/ld: -r and -pie may not be used together
>>
>> You have to use -r instead of -Wl,-r to avoid gcc passing -pie to the linker
>> when PIE is enabled and a relocatable object is passed.  However, clang
>> does not know about -r, so try -Wl,-r first.
>>
>> Reported-by: Adrian Bunk <bunk@stusta.de>
>> Cc: qemu-stable@nongnu.org
>> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
>> ---
>>  configure | 10 ++++++++--
>>  rules.mak |  2 +-
>>  2 files changed, 9 insertions(+), 3 deletions(-)
> 
> Thanks, applied to my staging tree:
> https://github.com/stefanha/qemu/commits/staging

Okay, then I'll send my pull request without this one.

Paolo

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] [PATCH] rules.mak: Also try -r to build modules
  2016-11-29 16:57   ` Paolo Bonzini
@ 2016-11-29 17:16     ` Stefan Hajnoczi
  2016-11-29 17:43       ` Paolo Bonzini
  0 siblings, 1 reply; 5+ messages in thread
From: Stefan Hajnoczi @ 2016-11-29 17:16 UTC (permalink / raw)
  To: Paolo Bonzini; +Cc: Stefan Hajnoczi, qemu-devel, qemu-stable

[-- Attachment #1: Type: text/plain, Size: 1319 bytes --]

On Tue, Nov 29, 2016 at 05:57:04PM +0100, Paolo Bonzini wrote:
> 
> 
> On 29/11/2016 17:22, Stefan Hajnoczi wrote:
> > On Tue, Nov 29, 2016 at 04:37:20PM +0100, Paolo Bonzini wrote:
> >> Building qemu fails in distributions where gcc enables PIE by default
> >> (e.g. Debian unstable) with:
> >>
> >> /usr/bin/ld: -r and -pie may not be used together
> >>
> >> You have to use -r instead of -Wl,-r to avoid gcc passing -pie to the linker
> >> when PIE is enabled and a relocatable object is passed.  However, clang
> >> does not know about -r, so try -Wl,-r first.
> >>
> >> Reported-by: Adrian Bunk <bunk@stusta.de>
> >> Cc: qemu-stable@nongnu.org
> >> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
> >> ---
> >>  configure | 10 ++++++++--
> >>  rules.mak |  2 +-
> >>  2 files changed, 9 insertions(+), 3 deletions(-)
> > 
> > Thanks, applied to my staging tree:
> > https://github.com/stefanha/qemu/commits/staging
> 
> Okay, then I'll send my pull request without this one.

FWIW I applied the pull request with the broken -r fix.  Then I applied
this patch on top (and added a note to the commit description explaining
this was a refinement).  I've also merged your newest pull request for
-rc2.

Hopefully this got us into a more or less the state you expected? :)

Stefan

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 455 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] [PATCH] rules.mak: Also try -r to build modules
  2016-11-29 17:16     ` Stefan Hajnoczi
@ 2016-11-29 17:43       ` Paolo Bonzini
  0 siblings, 0 replies; 5+ messages in thread
From: Paolo Bonzini @ 2016-11-29 17:43 UTC (permalink / raw)
  To: Stefan Hajnoczi; +Cc: Stefan Hajnoczi, qemu-devel, qemu-stable



On 29/11/2016 18:16, Stefan Hajnoczi wrote:
> FWIW I applied the pull request with the broken -r fix.  Then I applied
> this patch on top (and added a note to the commit description explaining
> this was a refinement).  I've also merged your newest pull request for
> -rc2.

Ok, that pull request (as expected) is a no-op if you kept v1 in the
tree.  I thought you hadn't because you didn't mention fixing the
mini-conflict here.

Paolo

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2016-11-29 17:44 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-11-29 15:37 [Qemu-devel] [PATCH] rules.mak: Also try -r to build modules Paolo Bonzini
2016-11-29 16:22 ` Stefan Hajnoczi
2016-11-29 16:57   ` Paolo Bonzini
2016-11-29 17:16     ` Stefan Hajnoczi
2016-11-29 17:43       ` Paolo Bonzini

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).