We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2682452 commit cf98cb7Copy full SHA for cf98cb7
cpython-unix/build-libX11.sh
@@ -99,6 +99,11 @@ if [ -n "${CROSS_COMPILING}" ]; then
99
esac
100
fi
101
102
+# Avoid dlopen("libXcursor.so.1") from the OS, which can go horribly wrong. We
103
+# might not need to avoid this if we switch to shipping X11 as shared
104
+# libraries, and ideally if we ship libXcursor ourselves.
105
+EXTRA_FLAGS="${EXTRA_FLAGS} --disable-loadable-xcursor"
106
+
107
# CC_FOR_BUILD is here because configure doesn't look for `clang` when
108
# cross-compiling. So we force it.
109
CFLAGS="${EXTRA_TARGET_CFLAGS} -fPIC -I/tools/deps/include" \
0 commit comments