qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [Qemu-trivial] [PATCH 4/4] fix compilation when reconfi


From: Paolo Bonzini
Subject: Re: [Qemu-devel] [Qemu-trivial] [PATCH 4/4] fix compilation when reconfiguring without dtrace backend
Date: Mon, 09 May 2011 08:53:17 +0200
User-agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.15) Gecko/20110307 Fedora/3.1.9-0.39.b3pre.fc14 Lightning/1.0b3pre Mnenhy/0.8.3 Thunderbird/3.1.9

On 05/08/2011 01:15 PM, Stefan Hajnoczi wrote:
I think the real problem is that dependencies need to be regenerated
after ./configure?

There are three ways to do that, the trivial but wrong one, and the correct but overzealous one:

- delete .d files. This forces regeneration of dependencies, but if you do not correspondingly delete .o files, you will likely have an incomplete build (possibly _nothing_ will be built).

- delete .d and .o files. This forces regeneration of dependencies and recompilation. True, a lot of distros are using ccache nowadays, but still this will cause a complete walk of all directories to pass those files to ccache and relink the executables. It will likely take a minute or three.

- detect changes in the configuration and, if those happen, delete .d and .o files. This is the correct one, and for one what the Linux kernel makefiles do, but also the biggest effort to implement.

Paolo



reply via email to

[Prev in Thread] Current Thread [Next in Thread]