diff options
author | Donghee Na <donghee.na@python.org> | 2023-12-26 17:54:16 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-26 17:54:16 (GMT) |
commit | e5cce70df71b5d89c045d4712203f54198188b65 (patch) | |
tree | 0447c439f52d012b4c8fd9c43cf79ef942d56362 | |
parent | acf3bcc8861983dcd6896682283a480450f9a1e3 (diff) | |
download | cpython-e5cce70df71b5d89c045d4712203f54198188b65.zip cpython-e5cce70df71b5d89c045d4712203f54198188b65.tar.gz cpython-e5cce70df71b5d89c045d4712203f54198188b65.tar.bz2 |
gh-112532: Fix peg generator build.py for mimalloc build (gh-113492)
gh-112532: Fix peg generator for mimalloc build
-rw-r--r-- | Tools/peg_generator/pegen/build.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Tools/peg_generator/pegen/build.py b/Tools/peg_generator/pegen/build.py index 7df39a3..00295c9 100644 --- a/Tools/peg_generator/pegen/build.py +++ b/Tools/peg_generator/pegen/build.py @@ -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"), |