diff options
author | Pablo Galindo Salgado <Pablogsal@gmail.com> | 2021-11-21 01:08:50 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-21 01:08:50 (GMT) |
commit | c9c4444d9f11ae80c2c4cc7d40b6718419d81a97 (patch) | |
tree | 5feef111609a1ecfe4b714e9f3ef62f3014c3552 /Makefile.pre.in | |
parent | f7638dd0f90b2afd9295ee179119f4a29859953a (diff) | |
download | cpython-c9c4444d9f11ae80c2c4cc7d40b6718419d81a97.zip cpython-c9c4444d9f11ae80c2c4cc7d40b6718419d81a97.tar.gz cpython-c9c4444d9f11ae80c2c4cc7d40b6718419d81a97.tar.bz2 |
Refactor parser compilation units into specific components (GH-29676)
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index 11ffdaa..fc4def8 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -331,6 +331,8 @@ LIBFFI_INCLUDEDIR= @LIBFFI_INCLUDEDIR@ PEGEN_OBJS= \ Parser/pegen.o \ + Parser/pegen_errors.o \ + Parser/action_helpers.o \ Parser/parser.o \ Parser/string_parser.o \ Parser/peg_api.o |