X-Git-Url: https://git.tld-linux.org/?p=packages%2Fqemu.git;a=blobdiff_plain;f=x32.patch;fp=x32.patch;h=0000000000000000000000000000000000000000;hp=e135219113f804049520db9fa88b9aba3822609e;hb=a88d43c91bb8fc8473e55b4fbab26977cf785626;hpb=810e993853339796adbd38050aae54c803eea854 diff --git a/x32.patch b/x32.patch deleted file mode 100644 index e135219..0000000 --- a/x32.patch +++ /dev/null @@ -1,31 +0,0 @@ ---- qemu-2.2.0/configure~ 2015-03-26 19:52:14.000000000 +0100 -+++ qemu-2.2.0/configure 2015-03-26 19:56:34.255072716 +0100 -@@ -1904,7 +1904,7 @@ - libseccomp_minver="2.2.0" - if test "$seccomp" != "no" ; then - case "$cpu" in -- i386|x86_64|mips) -+ i386|x86_64|x32|mips) - ;; - arm|aarch64) - libseccomp_minver="2.2.3" -@@ -6148,7 +6148,7 @@ - - # Mac OS X ships with a broken assembler - roms= --if { test "$cpu" = "i386" || test "$cpu" = "x86_64"; } && \ -+if { test "$cpu" = "i386" || test "$cpu" = "x86_64" || test "$cpu" = "x32"; } && \ - test "$targetos" != "Darwin" && test "$targetos" != "SunOS" && \ - test "$softmmu" = yes ; then - # Different host OS linkers have different ideas about the name of the ELF ---- qemu-2.6.0/include/qemu/atomic.h~ 2016-07-17 18:37:57.000000000 +0200 -+++ qemu-2.6.0/include/qemu/atomic.h 2016-07-17 18:38:33.485893530 +0200 -@@ -20,7 +20,7 @@ - /* Compiler barrier */ - #define barrier() ({ asm volatile("" ::: "memory"); (void)0; }) - --#ifdef __ATOMIC_RELAXED -+#if defined(__ATOMIC_RELAXED) && !defined(__ILP32__) - /* For C11 atomic ops */ - - /* Manual memory barriers