1. 24 12月, 2012 1 次提交
  2. 22 12月, 2012 1 次提交
  3. 19 12月, 2012 6 次提交
  4. 15 12月, 2012 1 次提交
  5. 09 12月, 2012 1 次提交
    • P
      configure: Default to 'cc', not 'gcc' · e49d021e
      Peter Maydell 提交于
      Default to 'cc' as our compiler, rather than 'gcc'. We used to have
      to insist on gcc when we still kept the CPU env in a fixed global
      register, but this is no longer necessary and we will now compile OK
      on clang as well as gcc.  Using 'cc' should generally result in us
      using the most standard and maintained system compiler for the
      platform.  (For instance on newer MacOS X 'gcc' exists but is an
      elderly compiler provided mostly for legacy reasons, and 'cc'
      (which is clang) is definitely the better choice.) On Linux there
      will generally be no user-visible change since cc will be gcc.
      
      This changeover necessitates a slight reworking of how we set the
      'cc' variable, because GNU cross toolchains generally provide a
      '${cross_prefix}gcc' but not a '${cross_prefix}cc'.
      Signed-off-by: NPeter Maydell <peter.maydell@linaro.org>
      Signed-off-by: NBlue Swirl <blauwirbel@gmail.com>
      e49d021e
  6. 08 12月, 2012 1 次提交
  7. 07 12月, 2012 2 次提交
  8. 29 11月, 2012 1 次提交
  9. 19 11月, 2012 1 次提交
  10. 18 11月, 2012 1 次提交
  11. 14 11月, 2012 3 次提交
  12. 04 11月, 2012 1 次提交
  13. 03 11月, 2012 1 次提交
  14. 01 11月, 2012 2 次提交
  15. 31 10月, 2012 1 次提交
  16. 28 10月, 2012 1 次提交
  17. 27 10月, 2012 2 次提交
  18. 22 10月, 2012 1 次提交
  19. 20 10月, 2012 1 次提交
  20. 19 10月, 2012 1 次提交
  21. 12 10月, 2012 2 次提交
  22. 09 10月, 2012 1 次提交
  23. 08 10月, 2012 1 次提交
    • G
      spice: raise requirement to 0.12 · 67be6726
      Gerd Hoffmann 提交于
      With the next qemu version (1.3) we are going to bump the qxl device
      revision to 4.  The new features available require a recent spice-server
      version, so raise up the bar.  Otherwise we would end up with different
      qxl revisions depending on the spice-server version installed, which
      would be a major PITA when it comes to compat properties.
      
      Clear out a big bunch of #ifdefs which are not needed any more.
      Signed-off-by: NGerd Hoffmann <kraxel@redhat.com>
      67be6726
  24. 06 10月, 2012 1 次提交
  25. 05 10月, 2012 2 次提交
  26. 28 9月, 2012 1 次提交
  27. 26 9月, 2012 2 次提交
    • H
      usb-redir: Adjust pkg-config check for usbredirparser .pc file rename (v2) · 8b626aa7
      Hans de Goede 提交于
      The usbredir 0.5 release introduced the new API for 64 bit packet ids, but
      it kept the libusbredirparser.pc name as is, meaning that older versions of
      qemu will still have their pkg-config check for usbredirparser fulfilled,
      and build with the usb-redir device. Due to the API change there will be
      some compiler warnings, but the build will succeed, however the usb-redir
      device will be broken on 32 bit machines.
      
      To solve this a new usbredir-0.5.2 release is coming, which renames the
      libusbredirparser.pc file to libusbredirparser-0.5.pc, so that it will no
      longer fulfill the pkg-config check of the qemu-1.2 and older releases,
      stopping the (silent) breakage. This patch adjusts qemu master's configure
      to properly detect the new usbredir release.
      
      Changes in v2:
      -Not only use the new .pc name in the check but also when getting cflags
       and libs!
      Signed-off-by: NHans de Goede <hdegoede@redhat.com>
      Signed-off-by: NGerd Hoffmann <kraxel@redhat.com>
      8b626aa7
    • S
      configure: Allow builds without any system or user emulation · 8bdd3d49
      Stefan Weil 提交于
      The old code aborted configure when no emulation target was selected.
      Even after removing the 'exit 1', it tried to read from STDIN
      when QEMU was configured with
      
          configure' '--disable-user' '--disable-system'
      
      This is fixed here.
      Signed-off-by: NStefan Weil <sw@weilnetz.de>
      Signed-off-by: NAnthony Liguori <aliguori@us.ibm.com>
      8bdd3d49