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 9bd5fa7 commit 14c15f4Copy full SHA for 14c15f4
builds/runtimes/python3
@@ -45,4 +45,9 @@ find "${OUT_PREFIX}" \( -type d -a \( -name test -o -name tests \) \) -exec rm -
45
# Remove spare /
46
LOCATION=${OUT_PREFIX%?}
47
48
+# Create links to SQLITE headers so Python can call them at runtime
49
+mkdir -p ${OUT_PREFIX}/include ${OUT_PREFIX}/lib/x86_64-linux-gnu
50
+cp /usr/include/sqlite3*.h ${OUT_PREFIX}/include
51
+ln -fs $(realpath /usr/lib/x86_64-linux-gnu/libsqlite3.so) ${OUT_PREFIX}/lib/x86_64-linux-gnu/libsqlite3.so
52
+
53
ln $LOCATION/bin/python3 $LOCATION/bin/python
0 commit comments