qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] Compile/link errors
@ 2012-02-24 17:11 Gerhard Wiesinger
  2012-02-24 17:27 ` Anthony Liguori
  0 siblings, 1 reply; 4+ messages in thread
From: Gerhard Wiesinger @ 2012-02-24 17:11 UTC (permalink / raw)
  To: qemu-devel

Hello,

I'm having compile/link errors on 
85f38553031b1a6e07f786c9ab0d403af7252b4f:
   LINK  x86_64-softmmu/qemu-system-x86_64
../libhw64/virtio-pci.o: In function `virtio_scsi_exit_pci':
/root/download/qemu/git/qemu/hw/virtio-pci.c:956: undefined reference to 
`virtio_scsi_exit'
../libhw64/virtio-pci.o: In function `virtio_scsi_init_pci':
/root/download/qemu/git/qemu/hw/virtio-pci.c:939: undefined reference to 
`virtio_scsi_init'
collect2: ld returned 1 exit status

Clean compile.

Any ideas?

Ciao,
Gerhard

--
http://www.wiesinger.com/

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

* Re: [Qemu-devel] Compile/link errors
  2012-02-24 17:11 [Qemu-devel] Compile/link errors Gerhard Wiesinger
@ 2012-02-24 17:27 ` Anthony Liguori
  2012-02-24 18:09   ` Andreas Färber
  0 siblings, 1 reply; 4+ messages in thread
From: Anthony Liguori @ 2012-02-24 17:27 UTC (permalink / raw)
  To: Gerhard Wiesinger; +Cc: qemu-devel

On 02/24/2012 11:11 AM, Gerhard Wiesinger wrote:
> Hello,
>
> I'm having compile/link errors on 85f38553031b1a6e07f786c9ab0d403af7252b4f:
> LINK x86_64-softmmu/qemu-system-x86_64
> ../libhw64/virtio-pci.o: In function `virtio_scsi_exit_pci':
> /root/download/qemu/git/qemu/hw/virtio-pci.c:956: undefined reference to
> `virtio_scsi_exit'
> ../libhw64/virtio-pci.o: In function `virtio_scsi_init_pci':
> /root/download/qemu/git/qemu/hw/virtio-pci.c:939: undefined reference to
> `virtio_scsi_init'
> collect2: ld returned 1 exit status
>
> Clean compile.
>
> Any ideas?

You have a stale configuration file.  A 'make distclean' should help.

Regards,

Anthony Liguori

> Ciao,
> Gerhard
>
> --
> http://www.wiesinger.com/
>
>

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

* Re: [Qemu-devel] Compile/link errors
  2012-02-24 17:27 ` Anthony Liguori
@ 2012-02-24 18:09   ` Andreas Färber
  2012-02-24 18:24     ` Anthony Liguori
  0 siblings, 1 reply; 4+ messages in thread
From: Andreas Färber @ 2012-02-24 18:09 UTC (permalink / raw)
  To: Anthony Liguori; +Cc: Gerhard Wiesinger, Paolo Bonzini, qemu-devel

Am 24.02.2012 18:27, schrieb Anthony Liguori:
> On 02/24/2012 11:11 AM, Gerhard Wiesinger wrote:
>> Hello,
>>
>> I'm having compile/link errors on
>> 85f38553031b1a6e07f786c9ab0d403af7252b4f:
>> LINK x86_64-softmmu/qemu-system-x86_64
>> ../libhw64/virtio-pci.o: In function `virtio_scsi_exit_pci':
>> /root/download/qemu/git/qemu/hw/virtio-pci.c:956: undefined reference to
>> `virtio_scsi_exit'
>> ../libhw64/virtio-pci.o: In function `virtio_scsi_init_pci':
>> /root/download/qemu/git/qemu/hw/virtio-pci.c:939: undefined reference to
>> `virtio_scsi_init'
>> collect2: ld returned 1 exit status
>>
>> Clean compile.
>>
>> Any ideas?
> 
> You have a stale configuration file.  A 'make distclean' should help.

Such errors indicate a dependency issue that should be fixed though.
(Same error here. Rebuilding after rm -rf * worked.)

When I change target-specific default configs it always seemed to work
okay, is pci.mak different in any way? Or maybe some make target is
lacking a dependency on the regenerated config files?

Andreas

-- 
SUSE LINUX Products GmbH, Maxfeldstr. 5, 90409 Nürnberg, Germany
GF: Jeff Hawn, Jennifer Guild, Felix Imendörffer; HRB 16746 AG Nürnberg

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

* Re: [Qemu-devel] Compile/link errors
  2012-02-24 18:09   ` Andreas Färber
@ 2012-02-24 18:24     ` Anthony Liguori
  0 siblings, 0 replies; 4+ messages in thread
From: Anthony Liguori @ 2012-02-24 18:24 UTC (permalink / raw)
  To: Andreas Färber; +Cc: Gerhard Wiesinger, Paolo Bonzini, qemu-devel

On 02/24/2012 12:09 PM, Andreas Färber wrote:
> Am 24.02.2012 18:27, schrieb Anthony Liguori:
>> On 02/24/2012 11:11 AM, Gerhard Wiesinger wrote:
>>> Hello,
>>>
>>> I'm having compile/link errors on
>>> 85f38553031b1a6e07f786c9ab0d403af7252b4f:
>>> LINK x86_64-softmmu/qemu-system-x86_64
>>> ../libhw64/virtio-pci.o: In function `virtio_scsi_exit_pci':
>>> /root/download/qemu/git/qemu/hw/virtio-pci.c:956: undefined reference to
>>> `virtio_scsi_exit'
>>> ../libhw64/virtio-pci.o: In function `virtio_scsi_init_pci':
>>> /root/download/qemu/git/qemu/hw/virtio-pci.c:939: undefined reference to
>>> `virtio_scsi_init'
>>> collect2: ld returned 1 exit status
>>>
>>> Clean compile.
>>>
>>> Any ideas?
>>
>> You have a stale configuration file.  A 'make distclean' should help.
>
> Such errors indicate a dependency issue that should be fixed though.
> (Same error here. Rebuilding after rm -rf * worked.)
>
> When I change target-specific default configs it always seemed to work
> okay, is pci.mak different in any way? Or maybe some make target is
> lacking a dependency on the regenerated config files?

%/config-devices.mak: default-configs/%.mak

I think you could add default-configs/pci.mak to this stanza and it would have 
regenerated here.

Regards,

Anthony Liguori

>
> Andreas
>

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

end of thread, other threads:[~2012-02-24 18:24 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-24 17:11 [Qemu-devel] Compile/link errors Gerhard Wiesinger
2012-02-24 17:27 ` Anthony Liguori
2012-02-24 18:09   ` Andreas Färber
2012-02-24 18:24     ` Anthony Liguori

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