From 764d422bd2f9f2074fc19c47eed9dfe428e621ba Mon Sep 17 00:00:00 2001 From: Tamas Nepusz Date: Sun, 29 Dec 2024 13:34:48 +0100 Subject: [PATCH] Add missing parser files to Python 3.13 Linux and macOS builds --- cpython-unix/build-cpython.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpython-unix/build-cpython.sh b/cpython-unix/build-cpython.sh index 31536f3a..70727c56 100755 --- a/cpython-unix/build-cpython.sh +++ b/cpython-unix/build-cpython.sh @@ -989,7 +989,7 @@ ${BUILD_PYTHON} ${ROOT}/fix_shebangs.py ${ROOT}/out/python/install # Also copy object files so they can be linked in a custom manner by # downstream consumers. -OBJECT_DIRS="Objects Parser Parser/pegen Programs Python Python/deepfreeze" +OBJECT_DIRS="Objects Parser Parser/lexer Parser/pegen Parser/tokenizer Programs Python Python/deepfreeze" OBJECT_DIRS="${OBJECT_DIRS} Modules" for ext in _blake2 cjkcodecs _ctypes _ctypes/darwin _decimal _expat _hacl _io _multiprocessing _sha3 _sqlite _sre _testinternalcapi _xxtestfuzz ; do OBJECT_DIRS="${OBJECT_DIRS} Modules/${ext}"