1. 01 9月, 2014 2 次提交
  2. 24 8月, 2014 1 次提交
  3. 22 8月, 2014 2 次提交
  4. 15 8月, 2014 2 次提交
  5. 09 8月, 2014 1 次提交
    • M
      l2tpv3 (configure): it is linux-specific · bff6cb72
      Michael Tokarev 提交于
      Some non-linux systems, for example a system with
      FreeBSD kernel and glibc, may declare struct mmsghdr
      (in glibc) but may not have linux-specific header
      file linux/ip.h.  The actual implementation in qemu
      includes this linux-specific header file unconditionally,
      so compilation fails if it is not present.  Include
      this header in the configure test too.
      Signed-off-by: NMichael Tokarev <mjt@tls.msk.ru>
      bff6cb72
  6. 10 7月, 2014 1 次提交
    • M
      Enforce stack protector usage · 3b463a3f
      Miroslav Rezanina 提交于
      If --enable-stack-protector is used is used, configure script try to use
      --fstack-protector-strong. In case it's not supported, --fstack-protector-all
      is enabled. If both protectors are not supported, configure does not use
      any protector at all without any notification.
      
      This patch reports error when user requests stack protector to be used and
      both protector modes are not supported. Behavior is not changed in case
      user do not use any of --enable-stack-protector/--disable-stack-protector.
      Signed-off-by: NMiroslav Rezanina <mrezanin@redhat.com>
      [Fix non-POSIX operator in test. - Paolo]
      Signed-off-by: NPaolo Bonzini <pbonzini@redhat.com>
      3b463a3f
  7. 02 7月, 2014 1 次提交
  8. 01 7月, 2014 1 次提交
  9. 28 6月, 2014 1 次提交
  10. 25 6月, 2014 1 次提交
  11. 23 6月, 2014 2 次提交
  12. 19 6月, 2014 3 次提交
  13. 18 6月, 2014 1 次提交
  14. 16 6月, 2014 3 次提交
  15. 11 6月, 2014 2 次提交
  16. 10 6月, 2014 2 次提交
  17. 09 6月, 2014 1 次提交
    • L
      trace: Multi-backend tracing · 5b808275
      Lluís Vilanova 提交于
      Adds support to compile QEMU with multiple tracing backends at the same time.
      
      For example, you can compile QEMU with:
      
        $ ./configure --enable-trace-backends=ftrace,dtrace
      
      Where 'ftrace' can be handy for having an in-flight record of events, and 'dtrace' can be later used to extract more information from the system.
      
      This patch allows having both available without recompiling QEMU.
      Signed-off-by: NLluís Vilanova <vilanova@ac.upc.edu>
      Signed-off-by: NStefan Hajnoczi <stefanha@redhat.com>
      5b808275
  18. 24 5月, 2014 3 次提交
    • R
      tcg-mips: Layout executable and code_gen_buffer · 479eb121
      Richard Henderson 提交于
      Choosing good addresses for them means we can use JAL for helper calls.
      Reviewed-by: NPaolo Bonzini <pbonzini@redhat.com>
      Signed-off-by: NRichard Henderson <rth@twiddle.net>
      479eb121
    • P
      configure: Put tempfiles in a subdir of the build directory · 8cd05ab6
      Peter Maydell 提交于
      When libtool support was added to configure, the new temporary files
      were left out of the list of files cleaned up on exit; this results
      in a lot of stale .lo files being left around in /tmp. Worse, libtool
      creates a /tmp/.libs directory which we can't easily clean up.
      
      Put all our temporary files in a single temporary directory created
      as a subdirectory of the build directory, so we can easily clean it up,
      and don't need fragile or complicated code for creation to avoid it
      clashing with temporary directories from other instances of QEMU
      configure or being subject to attack from adversaries who can write
      to /tmp.
      
      Since the temporaries now live in the build tree, we have no
      need to jump through hoops with a trap handler to try to remove
      them when configure exits; this fixes some weird bugs where hitting
      ^C during a configure run wouldn't actually make it stop, because
      we would run the trap handler but then not stop. (It is possible
      to get the trap handler semantics right but it is convoluted largely
      because of bugs in dash, so it is simpler to just avoid it.)
      
      Note that "temporary files go in the build directory, not /tmp" is
      the way autoconf behaves.
      Signed-off-by: NPeter Maydell <peter.maydell@linaro.org>
      Reviewed-by: NEric Blake <eblake@redhat.com>
      Signed-off-by: NMichael Tokarev <mjt@tls.msk.ru>
      8cd05ab6
    • S
      configure: Automatically select GTK+ 3.0 if GTK+ 2.0 is unavailable · 9e04c683
      Stefan Weil 提交于
      The configure option --with-gtkabi=3.0 is still supported, but no longer
      needed when GTK+-2.0 is missing. When no GTK+ ABI is selected by the
      user, configure first tries 2.0, then 3.0.
      
      For some platforms (e.g. Windows) newer binaries of GTK+ are only
      available for GTK+ 3.0. Now building on these platforms is a little bit
      easier.
      Signed-off-by: NStefan Weil <sw@weilnetz.de>
      Signed-off-by: NMichael Tokarev <mjt@tls.msk.ru>
      9e04c683
  19. 16 5月, 2014 1 次提交
  20. 15 5月, 2014 1 次提交
  21. 10 5月, 2014 1 次提交
    • M
      libcacard: remove libcacard-specific CFLAGS and LIBS from global vars · 9d171bd9
      Michael Tokarev 提交于
      Currently all what's needed for single file libcacard/vcard_emul_nss.c
      (libnss cflags) and hw/usb/ccid-card-emulated.c (libcacard includes)
      together with the libs is added to global QEMU_CFLAGS and libs_softmmu.
      
      Use the cflags only where really used (for two mentioned files), and
      libs only where needed.
      
      While at it, rename variables to better reflect reality: libcacard_*
      is really nss_*.
      
      This needs a bit more tweaking: $(NSS_LIBS) should not contain $glib_libs
      (ditto for _cflags).  But in order to fix it, some more preparations
      should be made first.  So add a FIXME comment.
      Signed-off-by: NMichael Tokarev <mjt@tls.msk.ru>
      Signed-off-by: NPaolo Bonzini <pbonzini@redhat.com>
      9d171bd9
  22. 09 5月, 2014 1 次提交
  23. 08 5月, 2014 3 次提交
    • S
      configure: Show trace output file conditionally · e00e36fb
      Stefan Weil 提交于
      It is only used with the simple trace backend.
      Signed-off-by: NStefan Weil <sw@weilnetz.de>
      Signed-off-by: NStefan Hajnoczi <stefanha@redhat.com>
      e00e36fb
    • M
      configure: remove bashism · 4fc00556
      Michael Tokarev 提交于
      Commit e26110cf added a check for shacmd to create a hash
      for modules.  This check in configure is using bash construct &>
      to redirect both stdout and stderr, which does fun things on some
      shells.  Get rid of it, use standard redirection instead.
      Signed-off-by: NMichael Tokarev <mjt@tls.msk.ru>
      Reviewed-by: NFam Zheng <famz@redhat.com>
      4fc00556
    • M
      configure: make source tree build more robust · cab00a5a
      Michael S. Tsirkin 提交于
      When source directory can be arrived at by two paths,
      configure might misdetect an out of tree build.
      The simplest way to trigger the problem is running
      configure using a full path. E.g. (<firstpath> refers to qemu source
      tree):
          ln -s <firstpath> <secondpath>
          cd <firstpath>
          <secondpath>/configure
      
      A more practical way is when make runs configure automatically:
      
      1. cd <firstpath>/; ./configure
          SRC_PATH=<firstpath>/ is written into config_host.mak
      2. cd <secondpath>/; touch configure; make
          make now runs <firstpath>/configure, so configure
          assumes it's an out of tree build
      
      When this happens configure overwrites parts of
      the current tree with symlinks.
      
      Make the test more robust: look for configure
      in the current directory.
      If there - we know it's a source build!
      Signed-off-by: NMichael S. Tsirkin <mst@redhat.com>
      cab00a5a
  24. 03 5月, 2014 1 次提交
    • R
      linux-user: remove configure option for setting uname release · e586822a
      Riku Voipio 提交于
      --enable-uname-release was a rather heavyweight hammer, as it allows
      providing values less that UNAME_MINIMUM_RELEASE. Also, it affects
      all built linux-user targets, which in most cases is not what user
      wants.
      
      Now that we have UNAME_MINIMUM_RELEASE for all linux-user platforms,
      we can drop --enable-uname-release and the related CONFIG_UNAME_RELEASE
      define.
      
      Users can still override the variable with QEMU_UNAME=2.6.32 or -r
      command line option. If distributors need to update a minimum version
      for a specific target, it can be done by updating UNAME_MINIMUM_RELEASE.
      Signed-off-by: NRiku Voipio <riku.voipio@linaro.org>
      e586822a
  25. 29 4月, 2014 2 次提交