From: Anthony Liguori <anthony@codemonkey.ws>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [5699] Move the things that aren't target specific to libqemu_common.a.
Date: Tue, 11 Nov 2008 21:20:16 +0000 [thread overview]
Message-ID: <E1L00em-0005lG-KI@cvs.savannah.gnu.org> (raw)
Revision: 5699
http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=5699
Author: aliguori
Date: 2008-11-11 21:20:14 +0000 (Tue, 11 Nov 2008)
Log Message:
-----------
Move the things that aren't target specific to libqemu_common.a.
This will improve the build time.
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Modified Paths:
--------------
trunk/Makefile
trunk/Makefile.target
trunk/net.c
Modified: trunk/Makefile
===================================================================
--- trunk/Makefile 2008-11-11 20:57:30 UTC (rev 5698)
+++ trunk/Makefile 2008-11-11 21:20:14 UTC (rev 5699)
@@ -78,6 +78,8 @@
OBJS+=usb-serial.o usb-net.o
OBJS+=sd.o ssi-sd.o
OBJS+=bt.o bt-host.o bt-vhci.o bt-l2cap.o bt-sdp.o bt-hci.o bt-hid.o usb-bt.o
+OBJS+=buffered_file.o migration.o migration-tcp.o net.o qemu-sockets.o
+OBJS+=qemu-char.o aio.o net-checksum.o
ifdef CONFIG_BRLAPI
OBJS+= baum.o
@@ -86,6 +88,8 @@
ifdef CONFIG_WIN32
OBJS+=tap-win32.o
+else
+OBJS+=migration-exec.o
endif
AUDIO_OBJS = audio.o noaudio.o wavaudio.o mixeng.o
Modified: trunk/Makefile.target
===================================================================
--- trunk/Makefile.target 2008-11-11 20:57:30 UTC (rev 5698)
+++ trunk/Makefile.target 2008-11-11 21:20:14 UTC (rev 5699)
@@ -587,16 +587,15 @@
# System emulator target
ifndef CONFIG_USER_ONLY
-OBJS=vl.o osdep.o monitor.o pci.o loader.o isa_mmio.o machine.o net-checksum.o
-OBJS+=fw_cfg.o aio.o buffered_file.o migration.o migration-tcp.o qemu-char.o
-OBJS+=net.o qemu-sockets.o
+OBJS=vl.o osdep.o monitor.o pci.o loader.o isa_mmio.o machine.o
+OBJS+=fw_cfg.o
ifdef CONFIG_KVM
OBJS+=kvm.o kvm-all.o
endif
ifdef CONFIG_WIN32
OBJS+=block-raw-win32.o
else
-OBJS+=block-raw-posix.o migration-exec.o
+OBJS+=block-raw-posix.o
endif
LIBS+=-lz
Modified: trunk/net.c
===================================================================
--- trunk/net.c 2008-11-11 20:57:30 UTC (rev 5698)
+++ trunk/net.c 2008-11-11 21:20:14 UTC (rev 5699)
@@ -21,24 +21,13 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
-#include "hw/hw.h"
-#include "hw/boards.h"
-#include "hw/usb.h"
-#include "hw/pcmcia.h"
-#include "hw/pc.h"
-#include "hw/audiodev.h"
-#include "hw/isa.h"
-#include "hw/baum.h"
-#include "hw/bt.h"
+#include "qemu-common.h"
#include "net.h"
#include "console.h"
#include "sysemu.h"
-#include "gdbstub.h"
#include "qemu-timer.h"
#include "qemu-char.h"
-#include "block.h"
#include "audio/audio.h"
-#include "migration.h"
#include <unistd.h>
#include <fcntl.h>
reply other threads:[~2008-11-11 21:20 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=E1L00em-0005lG-KI@cvs.savannah.gnu.org \
--to=anthony@codemonkey.ws \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).