All of lore.kernel.org
 help / color / mirror / Atom feed
* Qemu installation error from source
@ 2020-06-26  0:47 Asmita Jha
  2020-06-29 13:12 ` Stefan Hajnoczi
  0 siblings, 1 reply; 5+ messages in thread
From: Asmita Jha @ 2020-06-26  0:47 UTC (permalink / raw)
  To: qemu-devel, qemu-stable


[-- Attachment #1.1: Type: text/plain, Size: 333 bytes --]

Greetings,
I had been trying to install qemu from the source. I tried both the methods
given on https://www.qemu.org/downloads/#source
And also as given on https://wiki.qemu.org/Hosts/Linux

But in all cases ,I am getting same error every time. Screenshot attached.
Request you all to kindly look into this.

Thanks & Regards
Asmita

[-- Attachment #1.2: Type: text/html, Size: 735 bytes --]

[-- Attachment #2: Selection_305.png --]
[-- Type: image/png, Size: 79719 bytes --]

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

* Re: Qemu installation error from source
  2020-06-26  0:47 Qemu installation error from source Asmita Jha
@ 2020-06-29 13:12 ` Stefan Hajnoczi
  2020-07-01  0:34   ` Asmita Jha
  0 siblings, 1 reply; 5+ messages in thread
From: Stefan Hajnoczi @ 2020-06-29 13:12 UTC (permalink / raw)
  To: Asmita Jha; +Cc: qemu-devel, qemu-stable

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

On Fri, Jun 26, 2020 at 06:17:06AM +0530, Asmita Jha wrote:
> Greetings,
> I had been trying to install qemu from the source. I tried both the methods
> given on https://www.qemu.org/downloads/#source
> And also as given on https://wiki.qemu.org/Hosts/Linux
> 
> But in all cases ,I am getting same error every time. Screenshot attached.
> Request you all to kindly look into this.

Could it be that you have a statically compiled libbz2 but are building
a dynamically linked QEMU?

Does QEMU ./configure --static ... help?

Stefan

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

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

* Re: Qemu installation error from source
  2020-06-29 13:12 ` Stefan Hajnoczi
@ 2020-07-01  0:34   ` Asmita Jha
  2020-07-28 10:37     ` Stefan Hajnoczi
  0 siblings, 1 reply; 5+ messages in thread
From: Asmita Jha @ 2020-07-01  0:34 UTC (permalink / raw)
  To: Stefan Hajnoczi; +Cc: qemu-devel, qemu-stable


[-- Attachment #1.1: Type: text/plain, Size: 935 bytes --]

Hi Stefan,
Thanks  for your response. I am not sure I compiled libbz2.
Because while installing qemu from source , I just followed the steps as
mentioned in wiki.
I am noob in this field.

I tried using ./configure --static, it gave an error as attached in
screenshot.

Thanks & Regards
Asmita


On Mon, 29 Jun 2020 at 18:42, Stefan Hajnoczi <stefanha@gmail.com> wrote:

> On Fri, Jun 26, 2020 at 06:17:06AM +0530, Asmita Jha wrote:
> > Greetings,
> > I had been trying to install qemu from the source. I tried both the
> methods
> > given on https://www.qemu.org/downloads/#source
> > And also as given on https://wiki.qemu.org/Hosts/Linux
> >
> > But in all cases ,I am getting same error every time. Screenshot
> attached.
> > Request you all to kindly look into this.
>
> Could it be that you have a statically compiled libbz2 but are building
> a dynamically linked QEMU?
>
> Does QEMU ./configure --static ... help?
>
> Stefan
>

[-- Attachment #1.2: Type: text/html, Size: 1566 bytes --]

[-- Attachment #2: Selection_325.png --]
[-- Type: image/png, Size: 177994 bytes --]

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

* Re: Qemu installation error from source
  2020-07-01  0:34   ` Asmita Jha
@ 2020-07-28 10:37     ` Stefan Hajnoczi
  2020-07-28 11:22       ` Asmita Jha
  0 siblings, 1 reply; 5+ messages in thread
From: Stefan Hajnoczi @ 2020-07-28 10:37 UTC (permalink / raw)
  To: Asmita Jha; +Cc: qemu-devel, qemu-stable

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

On Wed, Jul 01, 2020 at 06:04:33AM +0530, Asmita Jha wrote:
> Thanks  for your response. I am not sure I compiled libbz2.
> Because while installing qemu from source , I just followed the steps as
> mentioned in wiki.
> I am noob in this field.
> 
> I tried using ./configure --static, it gave an error as attached in
> screenshot.

In the screenshot the linker cannot find the library dependencies needed
to build QEMU.

There are Dockerfiles that show how to build QEMU on a number of Linux
distributions. For example, the Fedora Dockerfile is here:
tests/docker/dockerfiles/fedora.docker

This could help you in setting up the environment (which packages are
needed, etc).

Stefan

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

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

* Re: Qemu installation error from source
  2020-07-28 10:37     ` Stefan Hajnoczi
@ 2020-07-28 11:22       ` Asmita Jha
  0 siblings, 0 replies; 5+ messages in thread
From: Asmita Jha @ 2020-07-28 11:22 UTC (permalink / raw)
  To: Stefan Hajnoczi; +Cc: qemu-devel, qemu-stable

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

Thanks for the information. Yes this helps.

Regards
Asmita

On Tue, Jul 28, 2020, 4:07 PM Stefan Hajnoczi <stefanha@gmail.com> wrote:

> On Wed, Jul 01, 2020 at 06:04:33AM +0530, Asmita Jha wrote:
> > Thanks  for your response. I am not sure I compiled libbz2.
> > Because while installing qemu from source , I just followed the steps as
> > mentioned in wiki.
> > I am noob in this field.
> >
> > I tried using ./configure --static, it gave an error as attached in
> > screenshot.
>
> In the screenshot the linker cannot find the library dependencies needed
> to build QEMU.
>
> There are Dockerfiles that show how to build QEMU on a number of Linux
> distributions. For example, the Fedora Dockerfile is here:
> tests/docker/dockerfiles/fedora.docker
>
> This could help you in setting up the environment (which packages are
> needed, etc).
>
> Stefan
>

[-- Attachment #2: Type: text/html, Size: 1271 bytes --]

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

end of thread, other threads:[~2020-07-28 11:23 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-06-26  0:47 Qemu installation error from source Asmita Jha
2020-06-29 13:12 ` Stefan Hajnoczi
2020-07-01  0:34   ` Asmita Jha
2020-07-28 10:37     ` Stefan Hajnoczi
2020-07-28 11:22       ` Asmita Jha

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.