]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-112532: Fix peg generator build.py for mimalloc build (gh-113492)
authorDonghee Na <donghee.na@python.org>
Tue, 26 Dec 2023 17:54:16 +0000 (17:54 +0000)
committerGitHub <noreply@github.com>
Tue, 26 Dec 2023 17:54:16 +0000 (02:54 +0900)
gh-112532: Fix peg generator for mimalloc build

Tools/peg_generator/pegen/build.py

index 7df39a3b0ae48edc17255888e8389514c61b69e2..00295c984d1bb6bc11fa26ed4e59bd78f4b396b1 100644 (file)
@@ -139,6 +139,7 @@ def compile_c_extension(
     ]
     include_dirs = [
         str(MOD_DIR.parent.parent.parent / "Include" / "internal"),
+        str(MOD_DIR.parent.parent.parent / "Include" / "internal" / "mimalloc"),
         str(MOD_DIR.parent.parent.parent / "Parser"),
         str(MOD_DIR.parent.parent.parent / "Parser" / "lexer"),
         str(MOD_DIR.parent.parent.parent / "Parser" / "tokenizer"),