libunwind-devel
[Top][All Lists]
Advanced

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

[Libunwind-devel] [PATCH] add --disable-tests option


From: Королев Сергей
Subject: [Libunwind-devel] [PATCH] add --disable-tests option
Date: Wed, 11 May 2016 22:48:55 +0300

Allows to skip tests build.

---
 Makefile.am  |  6 +++++-
 configure.ac | 13 +++++++++++--
 2 files changed, 16 insertions(+), 3 deletions(-)

diff --git a/Makefile.am b/Makefile.am
index 6a3ed9e..d245304 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -42,12 +42,16 @@ endif
 
 nodist_include_HEADERS = include/libunwind-common.h
 
-SUBDIRS = src tests
+SUBDIRS = src
 
 if CONFIG_DOCS
 SUBDIRS += doc
 endif
 
+if CONFIG_TESTS
+SUBDIRS += tests
+endif
+
 noinst_HEADERS = include/dwarf.h include/dwarf_i.h include/dwarf-eh.h \
  include/compiler.h include/libunwind_i.h include/mempool.h \
  include/remote.h \
diff --git a/configure.ac b/configure.ac
index 85d78f8..44e0d25 100644
--- a/configure.ac
+++ b/configure.ac
@@ -129,6 +129,10 @@ AC_ARG_ENABLE(documentation,
  AS_HELP_STRING([--disable-documentation],[Disable generating the man pages]),,
  [enable_documentation=yes])
 
+AC_ARG_ENABLE(tests,
+ AS_HELP_STRING([--disable-tests],[Disable tests build]),,
+ [enable_tests=yes])
+
 AC_MSG_CHECKING([if we should build libunwind-setjmp])
 AC_MSG_RESULT([$enable_setjmp])
 
@@ -396,8 +400,13 @@ if test "x$enable_documentation" = "xyes"; then
   AC_CONFIG_FILES(doc/Makefile doc/common.tex)
 fi
 
-AC_CONFIG_FILES(Makefile src/Makefile tests/Makefile tests/check-namespace.sh
- include/libunwind-common.h
+AM_CONDITIONAL([CONFIG_TESTS], [test x$enable_tests = xyes])
+if test "x$enable_tests" = "xyes"; then
+  AC_CONFIG_FILES(tests/Makefile tests/check-namespace.sh)
+fi
+
+AC_CONFIG_FILES(Makefile src/Makefile
+                include/libunwind-common.h
                 include/libunwind.h include/tdep/libunwind_i.h)
 AC_CONFIG_FILES(src/unwind/libunwind.pc src/coredump/libunwind-coredump.pc
                 src/ptrace/libunwind-ptrace.pc src/setjmp/libunwind-setjmp.pc
-- 
1.9.1

reply via email to

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