1
2
3
4
5
6
7
8
9
10
11
12 | --- qtbase-opensource-src-5.4.0+dfsg.orig/config.tests/unix/bsymbolic_functions.test
+++ qtbase-opensource-src-5.4.0+dfsg/config.tests/unix/bsymbolic_functions.test
@@ -6,6 +6,9 @@ VERBOSE=$2
cat >>bsymbolic_functions.c << EOF
+#if !(defined(__i386) || defined(__i386__) || defined(__x86_64) || defined(__x86_64__) || defined(__amd64))
+#error "Symbolic function binding on this architecture may be broken, disabling it (see QTBUG-36129)."
+#endif
int main() { return 0; }
EOF
|