You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: configure
+19-1Lines changed: 19 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -16747,7 +16747,7 @@ fi
16747
16747
16748
16748
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for glibc dtv allocation bug" >&5
16749
16749
$as_echo_n "checking for glibc dtv allocation bug... " >&6; }
16750
-
if test "x`${SPINDLE_SOURCE_ROOT}/scripts/dtvtest/run_dtvtest.sh ${SPINDLE_SOURCE_ROOT}/scripts/dtvtest ${SPINDLE_BUILD_ROOT}/dtvtest '$CC' '$CFLAGS'`" == "x0"; then
16750
+
if ${SPINDLE_SOURCE_ROOT}/scripts/dtvtest/run_dtvtest.sh ${SPINDLE_SOURCE_ROOT}/scripts/dtvtest ${SPINDLE_BUILD_ROOT}/dtvtest '$CC' '$CFLAGS'; then
if ${SPINDLE_SOURCE_ROOT}/scripts/locale_tls_fault/tls_locale_fault.sh ${SPINDLE_SOURCE_ROOT}/scripts/locale_tls_fault ${SPINDLE_BUILD_ROOT}/locale_tls_fault $CC; then
if test "x`${SPINDLE_SOURCE_ROOT}/scripts/dtvtest/run_dtvtest.sh ${SPINDLE_SOURCE_ROOT}/scripts/dtvtest ${SPINDLE_BUILD_ROOT}/dtvtest '$CC' '$CFLAGS'`" == "x0"; then
90
+
if ${SPINDLE_SOURCE_ROOT}/scripts/dtvtest/run_dtvtest.sh ${SPINDLE_SOURCE_ROOT}/scripts/dtvtest ${SPINDLE_BUILD_ROOT}/dtvtest '$CC' '$CFLAGS'; then
91
91
DTV_ALLOC_BUG=0
92
92
AC_MSG_RESULT([no])
93
93
else
@@ -96,6 +96,17 @@ else
96
96
fi
97
97
AC_DEFINE_UNQUOTED([DTV_ALLOCATION_BUG],[$DTV_ALLOC_BUG],[Defined if GLIBC has an allocation bug])
98
98
99
+
AC_MSG_CHECKING([for locale tls fault glibc bug])
100
+
if ${SPINDLE_SOURCE_ROOT}/scripts/locale_tls_fault/tls_locale_fault.sh ${SPINDLE_SOURCE_ROOT}/scripts/locale_tls_fault ${SPINDLE_BUILD_ROOT}/locale_tls_fault $CC; then
101
+
LOCALE_FAULT_BUG=0
102
+
AC_MSG_RESULT([no])
103
+
else
104
+
LOCALE_FAULT_BUG=1
105
+
AC_MSG_RESULT([yes])
106
+
fi
107
+
AC_DEFINE_UNQUOTED([NEWTHREAD_LOCALE_BUG],[$LOCALE_FAULT_BUG],[Defined if GLIBC has locale TLS bug])
108
+
109
+
99
110
#OS Detection
100
111
AC_ARG_ENABLE(bluegene,
101
112
[AS_HELP_STRING([--enable-bluegene],[Build Spindle for BlueGene/Q])],
0 commit comments