]> git.proxmox.com Git - qemu.git/blobdiff - configure
vhost build fix for i386
[qemu.git] / configure
index 38e3724f3371bf398c5a596bdd088b7aacb82cc4..9bfe917c5712aeee6cf7782511ea7991a262a6ff 100755 (executable)
--- a/configure
+++ b/configure
@@ -2509,6 +2509,29 @@ if test "$trace_backend" = "dtrace"; then
   fi
 fi
 
+##########################################
+# __sync_fetch_and_and requires at least -march=i486. Many toolchains
+# use i686 as default anyway, but for those that don't, an explicit
+# specification is necessary
+if test $vhost_net = "yes" && test $cpu = "i386"; then
+  cat > $TMPC << EOF
+int sfaa(unsigned *ptr)
+{
+  return __sync_fetch_and_and(ptr, 0);
+}
+
+int main(int argc, char **argv)
+{
+  int val = 42;
+  sfaa(&val);
+  return val;
+}
+EOF
+  if ! compile_prog "" "" ; then
+    CFLAGS+="-march=i486"
+  fi
+fi
+
 ##########################################
 # End of CC checks
 # After here, no more $cc or $ld runs