qemu-commits
[Top][All Lists]
Advanced

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

[Qemu-commits] [qemu/qemu] 5b5e30: configure: QEMU_INCLUDES are the same


From: GitHub
Subject: [Qemu-commits] [qemu/qemu] 5b5e30: configure: QEMU_INCLUDES are the same for all subt...
Date: Thu, 18 Apr 2013 08:00:13 -0700

  Branch: refs/heads/master
  Home:   https://github.com/qemu/qemu
  Commit: 5b5e30370147ce3495b7509238e88ef9a6d873ec
      
https://github.com/qemu/qemu/commit/5b5e30370147ce3495b7509238e88ef9a6d873ec
  Author: Paolo Bonzini <address@hidden>
  Date:   2013-04-18 (Thu, 18 Apr 2013)

  Changed paths:
    M configure

  Log Message:
  -----------
  configure: QEMU_INCLUDES are the same for all subtargets

Reviewed-by: Peter Maydell <address@hidden>
Signed-off-by: Paolo Bonzini <address@hidden>
Signed-off-by: Edgar E. Iglesias <address@hidden>


  Commit: ca98ac830f4e3a7d7729ec1ff22d54d97c86dcbd
      
https://github.com/qemu/qemu/commit/ca98ac830f4e3a7d7729ec1ff22d54d97c86dcbd
  Author: Paolo Bonzini <address@hidden>
  Date:   2013-04-18 (Thu, 18 Apr 2013)

  Changed paths:
    M linux-user/elfload.c

  Log Message:
  -----------
  elfload: fix size of ABI-dependent fields in core dumps

Some fields in core dumps are 32-bit in 32-or-64 environments (ppc64abi32,
sparc32plus).  Use abi_long/ulong for those.

Also, the fields of target_elf_siginfo are ints.  Use tswap32 to convert them.

Reviewed-by: Peter Maydell <address@hidden>
Signed-off-by: Paolo Bonzini <address@hidden>
Signed-off-by: Edgar E. Iglesias <address@hidden>


  Commit: a29f998d04a515e389ec4d5aa76ba5f585f4e540
      
https://github.com/qemu/qemu/commit/a29f998d04a515e389ec4d5aa76ba5f585f4e540
  Author: Paolo Bonzini <address@hidden>
  Date:   2013-04-18 (Thu, 18 Apr 2013)

  Changed paths:
    M linux-user/elfload.c

  Log Message:
  -----------
  elfload: fix size of registers for N32

Registers are 64-bit in size for the MIPS n32 ABI.  Define
target_elf_greg_t accordingly, and use the correct function
to do endian swaps.

Reviewed-by: Peter Maydell <address@hidden>
Signed-off-by: Paolo Bonzini <address@hidden>
Signed-off-by: Edgar E. Iglesias <address@hidden>


  Commit: 86cd7b2d486b6c80df41f48dffbdcc055a85faa1
      
https://github.com/qemu/qemu/commit/86cd7b2d486b6c80df41f48dffbdcc055a85faa1
  Author: Paolo Bonzini <address@hidden>
  Date:   2013-04-18 (Thu, 18 Apr 2013)

  Changed paths:
    M linux-user/elfload.c

  Log Message:
  -----------
  elfload: use tswapreg consistently in elf_core_copy_regs

Reviewed-by: Peter Maydell <address@hidden>
Signed-off-by: Paolo Bonzini <address@hidden>
Signed-off-by: Edgar E. Iglesias <address@hidden>


  Commit: 1ddd592fd3b00227a61d5cd890c51b51847a415b
      
https://github.com/qemu/qemu/commit/1ddd592fd3b00227a61d5cd890c51b51847a415b
  Author: Paolo Bonzini <address@hidden>
  Date:   2013-04-18 (Thu, 18 Apr 2013)

  Changed paths:
    M configure
    M include/exec/cpu-defs.h
    M include/exec/user/abitypes.h
    M linux-user/elfload.c

  Log Message:
  -----------
  elfload: use abi_short/ushort instead of target_short/ushort

The alignment is a characteristic of the ABI, not the CPU.

Signed-off-by: Paolo Bonzini <address@hidden>
Signed-off-by: Edgar E. Iglesias <address@hidden>


  Commit: f8fd4fc4cd9138576cb1cec15c6ac9416e51eeb8
      
https://github.com/qemu/qemu/commit/f8fd4fc4cd9138576cb1cec15c6ac9416e51eeb8
  Author: Paolo Bonzini <address@hidden>
  Date:   2013-04-18 (Thu, 18 Apr 2013)

  Changed paths:
    M configure
    M include/exec/cpu-defs.h
    M include/exec/user/abitypes.h
    M linux-user/elfload.c

  Log Message:
  -----------
  elfload: use abi_int/uint instead of target_int/uint

The alignment is a characteristic of the ABI, not the CPU.

Signed-off-by: Paolo Bonzini <address@hidden>
Signed-off-by: Edgar E. Iglesias <address@hidden>


  Commit: 6cfd9b5251c1d03c60f9ebc95fa98670db8f3e09
      
https://github.com/qemu/qemu/commit/6cfd9b5251c1d03c60f9ebc95fa98670db8f3e09
  Author: Paolo Bonzini <address@hidden>
  Date:   2013-04-18 (Thu, 18 Apr 2013)

  Changed paths:
    M configure
    M include/exec/cpu-defs.h
    M include/exec/user/abitypes.h

  Log Message:
  -----------
  elfload: only give abi_long/ulong the alignment specified by the target

Previously, this was done for target_long/ulong, and propagated to
abi_long/ulong via a typedef.  But target_long/ulong should not
have any specific alignment, it is never used to access guest
memory.

Signed-off-by: Paolo Bonzini <address@hidden>
Signed-off-by: Edgar E. Iglesias <address@hidden>


  Commit: 918fc54caff20b1810c633a63bf6d6c5499bd5dd
      
https://github.com/qemu/qemu/commit/918fc54caff20b1810c633a63bf6d6c5499bd5dd
  Author: Paolo Bonzini <address@hidden>
  Date:   2013-04-18 (Thu, 18 Apr 2013)

  Changed paths:
    M configure
    M include/exec/cpu-defs.h
    M include/exec/user/abitypes.h
    M linux-user/elfload.c

  Log Message:
  -----------
  elfload: use abi_llong/ullong instead of target_llong/ullong

The alignment is a characteristic of the ABI, not the CPU.

Signed-off-by: Paolo Bonzini <address@hidden>
Signed-off-by: Edgar E. Iglesias <address@hidden>


  Commit: 727e52838c709f542d4306849567bf3d8c64479e
      
https://github.com/qemu/qemu/commit/727e52838c709f542d4306849567bf3d8c64479e
  Author: Paolo Bonzini <address@hidden>
  Date:   2013-04-18 (Thu, 18 Apr 2013)

  Changed paths:
    M configure

  Log Message:
  -----------
  configure: move CONFIG_QEMU_LDST_OPTIMIZATION to config-host.mak

Reviewed-by: Peter Maydell <address@hidden>
Signed-off-by: Paolo Bonzini <address@hidden>
Signed-off-by: Edgar E. Iglesias <address@hidden>


  Commit: f544a488e55d3c504b65b6209199a977df9b24b9
      
https://github.com/qemu/qemu/commit/f544a488e55d3c504b65b6209199a977df9b24b9
  Author: Paolo Bonzini <address@hidden>
  Date:   2013-04-18 (Thu, 18 Apr 2013)

  Changed paths:
    M Makefile.target
    M configure

  Log Message:
  -----------
  configure: move common libraries to config-host.mak

Move -lm to the end of the line, so that it can be picked up as a
dependency by pixman in the static build case.

Reviewed-by: Peter Maydell <address@hidden>
Signed-off-by: Paolo Bonzini <address@hidden>
Signed-off-by: Edgar E. Iglesias <address@hidden>


  Commit: 2b6b7099fb17ab9efa51c430e348ee88d6fbcef2
      
https://github.com/qemu/qemu/commit/2b6b7099fb17ab9efa51c430e348ee88d6fbcef2
  Author: Paolo Bonzini <address@hidden>
  Date:   2013-04-18 (Thu, 18 Apr 2013)

  Changed paths:
    M configure
    M default-configs/lm32-softmmu.mak
    M hw/display/Makefile.objs

  Log Message:
  -----------
  configure: eliminate target_libs_softmmu

Signed-off-by: Paolo Bonzini <address@hidden>
Signed-off-by: Edgar E. Iglesias <address@hidden>


  Commit: 15c08efebde85a564b68285a4b6999f673ce422f
      
https://github.com/qemu/qemu/commit/15c08efebde85a564b68285a4b6999f673ce422f
  Author: Paolo Bonzini <address@hidden>
  Date:   2013-04-18 (Thu, 18 Apr 2013)

  Changed paths:
    M configure
    M include/hw/xen/xen.h

  Log Message:
  -----------
  configure: CONFIG_NO_XEN is duplicated

We already define it in Makefile.target.  But we need to avoid a
curious double negation in order to eliminate it.

Tested-by: Stefano Stabellini <address@hidden>
Reviewed-by: Peter Maydell <address@hidden>
Signed-off-by: Paolo Bonzini <address@hidden>
Signed-off-by: Edgar E. Iglesias <address@hidden>


  Commit: 09dada400328d75daf79e3eca1e48e024fec148d
      
https://github.com/qemu/qemu/commit/09dada400328d75daf79e3eca1e48e024fec148d
  Author: Paolo Bonzini <address@hidden>
  Date:   2013-04-18 (Thu, 18 Apr 2013)

  Changed paths:
    M configure

  Log Message:
  -----------
  configure: remove duplicate test

We already had a test to add -march=i486 when needed.  Make the
existing test independent of vhost-net, so that it is also used
under Win32.

Signed-off-by: Paolo Bonzini <address@hidden>
Signed-off-by: Edgar E. Iglesias <address@hidden>


Compare: https://github.com/qemu/qemu/compare/a540f158db41...09dada400328

reply via email to

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