qemu-devel
[Top][All Lists]
Advanced

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

[Qemu-devel] [PATCH v2 08/15] docker: Add clang test


From: Fam Zheng
Subject: [Qemu-devel] [PATCH v2 08/15] docker: Add clang test
Date: Tue, 16 Feb 2016 20:39:52 +0800

The configure options are suggested by John Snow <address@hidden>.

Signed-off-by: Fam Zheng <address@hidden>
---
 tests/docker/test-clang | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)
 create mode 100755 tests/docker/test-clang

diff --git a/tests/docker/test-clang b/tests/docker/test-clang
new file mode 100755
index 0000000..212f481
--- /dev/null
+++ b/tests/docker/test-clang
@@ -0,0 +1,28 @@
+#!/bin/bash -e
+#
+# Compile and check with clang.
+#
+# Copyright (c) 2016 Red Hat Inc.
+#
+# Authors:
+#  Fam Zheng <address@hidden>
+#
+# This work is licensed under the terms of the GNU GPL, version 2
+# or (at your option) any later version. See the COPYING file in
+# the top-level directory.
+
+. common.rc
+
+requires clang
+
+mkdir build
+cd build
+# -fsanitize=undefined is broken on Fedora 23, skip it for now
+# See also: https://bugzilla.redhat.com/show_bug.cgi?id=1263834
+#OPTS="$OPTS --extra-cflags=-fsanitize=undefined \
+    #--extra-cflags=-fno-sanitize=float-divide-by-zero"
+build_qemu \
+    --target-list=x86_64-softmmu,aarch64-softmmu \
+    --enable-debug --cxx=clang++ --cc=clang --host-cc=clang \
+    $OPTS
+make $MAKEFLAGS check
-- 
2.4.3




reply via email to

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