blob: e6a35957c2fb038e45004b967cc271606ac5d6dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# DP: libgo: Overwrite the setcontext_clobbers_tls check on mips*
--- a/src/libgo/configure.ac
+++ b/src/libgo/configure.ac
@@ -793,6 +793,14 @@ main ()
CFLAGS="$CFLAGS_hold"
LIBS="$LIBS_hold"
])
+dnl overwrite for the mips* 64bit multilibs, fails on some buildds
+if test "$libgo_cv_lib_setcontext_clobbers_tls" = "yes"; then
+ case "$target" in
+ mips*-linux-*)
+ AC_MSG_WARN([FIXME: overwrite setcontext_clobbers_tls for $target:$ptr_type_size])
+ libgo_cv_lib_setcontext_clobbers_tls=no ;;
+ esac
+fi
if test "$libgo_cv_lib_setcontext_clobbers_tls" = "yes"; then
AC_DEFINE(SETCONTEXT_CLOBBERS_TLS, 1,
[Define if setcontext clobbers TLS variables])
|