We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a597e4e commit b2aff13Copy full SHA for b2aff13
cpython-macos/build-cpython.sh
@@ -49,6 +49,11 @@ for d in Modules Objects Parser Programs Python; do
49
cp -av $d/*.o ${ROOT}/out/python/build/$d/
50
done
51
52
+# The object files need to be linked against library dependencies. So copy
53
+# library files as well.
54
+mkdir ${ROOT}/out/python/lib
55
+cp -av ${DEPS_DIR}/lib/*.a ${ROOT}/out/python/lib/
56
+
57
# config.c defines _PyImport_Inittab and extern references to modules, which
58
# downstream consumers may want to strip. We bundle config.c and config.c.in so
59
# a custom one can be produced downstream.
0 commit comments