From: Juan Quintela <quintela@redhat.com>
To: "Chen Wei-Ren (陳韋任)" <chenwj@iis.sinica.edu.tw>
Cc: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH 5/6] Makefile.objs: Remove libqemu_common.a target
Date: Tue, 08 Nov 2011 17:34:26 +0100 [thread overview]
Message-ID: <m3ty6ea7zh.fsf@neno.neno> (raw)
In-Reply-To: <1320757785-20894-1-git-send-email-chenwj@iis.sinica.edu.tw> ("Chen Wei-Ren (陳韋任)"'s message of "Tue, 8 Nov 2011 21:09:45 +0800")
"Chen Wei-Ren (陳韋任)" <chenwj@iis.sinica.edu.tw> wrote:
> From: Chen Wen-Ren <chenwj@iis.sinica.edu.tw>
>
> Remove libqemu_common.a target from Makefile.objs.
Have you build this? without this files qemu is not going to work.
Perhaps the naming is wrong, and we should change common-obj to
something else, but it is still needed to get things working as
expected.
Later, Juan.
> Signed-off-by: Chen Wei-Ren <chenwj@iis.sinica.edu.tw>
> ---
> Makefile.objs | 104 ---------------------------------------------------------
> 1 files changed, 0 insertions(+), 104 deletions(-)
>
> diff --git a/Makefile.objs b/Makefile.objs
> index d7a6539..ba8879c 100644
> --- a/Makefile.objs
> +++ b/Makefile.objs
> @@ -68,110 +68,6 @@ endif
> fsdev-obj-$(CONFIG_VIRTFS) += $(addprefix fsdev/, $(fsdev-nested-y))
>
> ######################################################################
> -# libqemu_common.a: Target independent part of system emulation. The
> -# long term path is to suppress *all* target specific code in case of
> -# system emulation, i.e. a single QEMU executable should support all
> -# CPUs and machines.
> -
> -common-obj-y = $(block-obj-y) blockdev.o
> -common-obj-y += $(net-obj-y)
> -common-obj-y += $(qobject-obj-y)
> -common-obj-$(CONFIG_LINUX) += $(fsdev-obj-$(CONFIG_LINUX))
> -common-obj-y += readline.o console.o cursor.o
> -common-obj-y += $(oslib-obj-y)
> -common-obj-$(CONFIG_WIN32) += os-win32.o
> -common-obj-$(CONFIG_POSIX) += os-posix.o
> -
> -common-obj-y += tcg-runtime.o host-utils.o main-loop.o
> -common-obj-y += irq.o input.o
> -common-obj-$(CONFIG_PTIMER) += ptimer.o
> -common-obj-$(CONFIG_MAX7310) += max7310.o
> -common-obj-$(CONFIG_WM8750) += wm8750.o
> -common-obj-$(CONFIG_TWL92230) += twl92230.o
> -common-obj-$(CONFIG_TSC2005) += tsc2005.o
> -common-obj-$(CONFIG_LM832X) += lm832x.o
> -common-obj-$(CONFIG_TMP105) += tmp105.o
> -common-obj-$(CONFIG_STELLARIS_INPUT) += stellaris_input.o
> -common-obj-$(CONFIG_SSD0303) += ssd0303.o
> -common-obj-$(CONFIG_SSD0323) += ssd0323.o
> -common-obj-$(CONFIG_ADS7846) += ads7846.o
> -common-obj-$(CONFIG_MAX111X) += max111x.o
> -common-obj-$(CONFIG_DS1338) += ds1338.o
> -common-obj-y += i2c.o smbus.o smbus_eeprom.o
> -common-obj-y += eeprom93xx.o
> -common-obj-y += scsi-disk.o cdrom.o
> -common-obj-y += scsi-generic.o scsi-bus.o
> -common-obj-y += hid.o
> -common-obj-y += usb.o usb-hub.o usb-$(HOST_USB).o usb-hid.o usb-msd.o usb-wacom.o
> -common-obj-y += usb-serial.o usb-net.o usb-bus.o usb-desc.o
> -common-obj-$(CONFIG_SSI) += ssi.o
> -common-obj-$(CONFIG_SSI_SD) += ssi-sd.o
> -common-obj-$(CONFIG_SD) += sd.o
> -common-obj-y += bt.o bt-host.o bt-vhci.o bt-l2cap.o bt-sdp.o bt-hci.o bt-hid.o usb-bt.o
> -common-obj-y += bt-hci-csr.o
> -common-obj-y += buffered_file.o migration.o migration-tcp.o
> -common-obj-y += qemu-char.o savevm.o #aio.o
> -common-obj-y += msmouse.o ps2.o
> -common-obj-y += qdev.o qdev-properties.o
> -common-obj-y += block-migration.o iohandler.o
> -common-obj-y += pflib.o
> -common-obj-y += bitmap.o bitops.o
> -
> -common-obj-$(CONFIG_BRLAPI) += baum.o
> -common-obj-$(CONFIG_POSIX) += migration-exec.o migration-unix.o migration-fd.o
> -common-obj-$(CONFIG_WIN32) += version.o
> -
> -common-obj-$(CONFIG_SPICE) += ui/spice-core.o ui/spice-input.o ui/spice-display.o spice-qemu-char.o
> -
> -audio-obj-y = audio.o noaudio.o wavaudio.o mixeng.o
> -audio-obj-$(CONFIG_SDL) += sdlaudio.o
> -audio-obj-$(CONFIG_OSS) += ossaudio.o
> -audio-obj-$(CONFIG_SPICE) += spiceaudio.o
> -audio-obj-$(CONFIG_COREAUDIO) += coreaudio.o
> -audio-obj-$(CONFIG_ALSA) += alsaaudio.o
> -audio-obj-$(CONFIG_DSOUND) += dsoundaudio.o
> -audio-obj-$(CONFIG_FMOD) += fmodaudio.o
> -audio-obj-$(CONFIG_ESD) += esdaudio.o
> -audio-obj-$(CONFIG_PA) += paaudio.o
> -audio-obj-$(CONFIG_WINWAVE) += winwaveaudio.o
> -audio-obj-$(CONFIG_AUDIO_PT_INT) += audio_pt_int.o
> -audio-obj-$(CONFIG_AUDIO_WIN_INT) += audio_win_int.o
> -audio-obj-y += wavcapture.o
> -common-obj-y += $(addprefix audio/, $(audio-obj-y))
> -
> -ui-obj-y += keymaps.o
> -ui-obj-$(CONFIG_SDL) += sdl.o sdl_zoom.o x_keymap.o
> -ui-obj-$(CONFIG_COCOA) += cocoa.o
> -ui-obj-$(CONFIG_CURSES) += curses.o
> -vnc-obj-y += vnc.o d3des.o
> -vnc-obj-y += vnc-enc-zlib.o vnc-enc-hextile.o
> -vnc-obj-y += vnc-enc-tight.o vnc-palette.o
> -vnc-obj-y += vnc-enc-zrle.o
> -vnc-obj-$(CONFIG_VNC_TLS) += vnc-tls.o vnc-auth-vencrypt.o
> -vnc-obj-$(CONFIG_VNC_SASL) += vnc-auth-sasl.o
> -ifdef CONFIG_VNC_THREAD
> -vnc-obj-y += vnc-jobs-async.o
> -else
> -vnc-obj-y += vnc-jobs-sync.o
> -endif
> -common-obj-y += $(addprefix ui/, $(ui-obj-y))
> -common-obj-$(CONFIG_VNC) += $(addprefix ui/, $(vnc-obj-y))
> -
> -common-obj-y += iov.o acl.o
> -common-obj-$(CONFIG_POSIX) += compatfd.o
> -common-obj-y += notify.o event_notifier.o
> -common-obj-y += qemu-timer.o qemu-timer-common.o
> -
> -slirp-obj-y = cksum.o if.o ip_icmp.o ip_input.o ip_output.o
> -slirp-obj-y += slirp.o mbuf.o misc.o sbuf.o socket.o tcp_input.o tcp_output.o
> -slirp-obj-y += tcp_subr.o tcp_timer.o udp.o bootp.o tftp.o arp_table.o
> -common-obj-$(CONFIG_SLIRP) += $(addprefix slirp/, $(slirp-obj-y))
> -
> -# xen backend driver support
> -common-obj-$(CONFIG_XEN_BACKEND) += xen_backend.o xen_devconfig.o
> -common-obj-$(CONFIG_XEN_BACKEND) += xen_console.o xenfb.o xen_disk.o xen_nic.o
> -
> -######################################################################
> # libuser
>
> user-obj-y =
<#secure method=pgpmime mode=sign>
next prev parent reply other threads:[~2011-11-08 16:36 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-11-08 13:09 [Qemu-devel] [PATCH 5/6] Makefile.objs: Remove libqemu_common.a target Chen Wei-Ren (陳韋任)
2011-11-08 16:34 ` Juan Quintela [this message]
2011-11-08 16:57 ` 陳韋任
2011-11-08 17:08 ` 陳韋任
2011-11-08 21:31 ` Juan Quintela
2011-11-08 21:49 ` Andreas Färber
2011-11-09 2:02 ` 陳韋任
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=m3ty6ea7zh.fsf@neno.neno \
--to=quintela@redhat.com \
--cc=chenwj@iis.sinica.edu.tw \
--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 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.