forked from pool/lalapps
19 lines
805 B
Diff
19 lines
805 B
Diff
Index: lalapps-10.0.1/configure.ac
|
|
===================================================================
|
|
--- lalapps-10.0.1.orig/configure.ac
|
|
+++ lalapps-10.0.1/configure.ac
|
|
@@ -271,6 +271,13 @@ AM_CPPFLAGS="-I\$(top_srcdir)/src ${AM_C
|
|
# RedHat-derived systems.
|
|
AC_SUBST([pkgpythondir], ["\${pkgpyexecdir}"])
|
|
|
|
+# testWeave_* results have tolerance issues that show up in some archs, use only for x86_64
|
|
+# See https://git.ligo.org/lscsoft/lalsuite/-/issues/105
|
|
+AC_MSG_CHECKING([if arch is non-x86_64 so weave tests should be disabled])
|
|
+AC_DEFINE([SKIP_WEAVE_TESTS], [0], [Set to 1 for non-x86_64 architectures])
|
|
+AS_IF([test x"$(arch)" != "xx86_64"], AC_MSG_RESULT([yes]), AC_MSG_RESULT([no]))
|
|
+AM_CONDITIONAL([SKIP_WEAVE_TESTS], [test x"$(arch)" != "xx86_64"])
|
|
+
|
|
# output
|
|
AC_OUTPUT
|
|
AC_MSG_NOTICE([
|