diff options
author | Irit Katriel <1055913+iritkatriel@users.noreply.github.com> | 2024-09-09 17:21:51 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-09 17:21:51 (GMT) |
commit | 1a9d8917a38e3eb190506025b9444730ed821449 (patch) | |
tree | 169b669c8337c31e2d7dcea785a441af0baa089b /PCbuild | |
parent | 65fcaa38ada727b504ec60ae283caf8e3ebbb845 (diff) | |
download | cpython-1a9d8917a38e3eb190506025b9444730ed821449.zip cpython-1a9d8917a38e3eb190506025b9444730ed821449.tar.gz cpython-1a9d8917a38e3eb190506025b9444730ed821449.tar.bz2 |
gh-121404: split compile.c into compile.c and codegen.c (#123651)
Diffstat (limited to 'PCbuild')
-rw-r--r-- | PCbuild/_freeze_module.vcxproj | 1 | ||||
-rw-r--r-- | PCbuild/_freeze_module.vcxproj.filters | 3 | ||||
-rw-r--r-- | PCbuild/pythoncore.vcxproj | 1 | ||||
-rw-r--r-- | PCbuild/pythoncore.vcxproj.filters | 3 |
4 files changed, 8 insertions, 0 deletions
diff --git a/PCbuild/_freeze_module.vcxproj b/PCbuild/_freeze_module.vcxproj index 962d754..743e6e2 100644 --- a/PCbuild/_freeze_module.vcxproj +++ b/PCbuild/_freeze_module.vcxproj @@ -194,6 +194,7 @@ <ClCompile Include="..\Python\bootstrap_hash.c" /> <ClCompile Include="..\Python\ceval.c" /> <ClCompile Include="..\Python\codecs.c" /> + <ClCompile Include="..\Python\codegen.c" /> <ClCompile Include="..\Python\compile.c" /> <ClCompile Include="..\Python\context.c" /> <ClCompile Include="..\Python\critical_section.c" /> diff --git a/PCbuild/_freeze_module.vcxproj.filters b/PCbuild/_freeze_module.vcxproj.filters index 86146f7..0887a47 100644 --- a/PCbuild/_freeze_module.vcxproj.filters +++ b/PCbuild/_freeze_module.vcxproj.filters @@ -97,6 +97,9 @@ <ClCompile Include="..\Python\perf_jit_trampoline.c"> <Filter>Source Files</Filter> </ClCompile> + <ClCompile Include="..\Python\codegen.c"> + <Filter>Source Files</Filter> + </ClCompile> <ClCompile Include="..\Python\compile.c"> <Filter>Source Files</Filter> </ClCompile> diff --git a/PCbuild/pythoncore.vcxproj b/PCbuild/pythoncore.vcxproj index dbb18ba..6399eac 100644 --- a/PCbuild/pythoncore.vcxproj +++ b/PCbuild/pythoncore.vcxproj @@ -581,6 +581,7 @@ <ClCompile Include="..\Python\brc.c" /> <ClCompile Include="..\Python\ceval.c" /> <ClCompile Include="..\Python\codecs.c" /> + <ClCompile Include="..\Python\codegen.c" /> <ClCompile Include="..\Python\compile.c" /> <ClCompile Include="..\Python\context.c" /> <ClCompile Include="..\Python\critical_section.c" /> diff --git a/PCbuild/pythoncore.vcxproj.filters b/PCbuild/pythoncore.vcxproj.filters index 0759109..23f2e9c 100644 --- a/PCbuild/pythoncore.vcxproj.filters +++ b/PCbuild/pythoncore.vcxproj.filters @@ -1298,6 +1298,9 @@ <ClCompile Include="..\Python\codecs.c"> <Filter>Python</Filter> </ClCompile> + <ClCompile Include="..\Python\codegen.c"> + <Filter>Python</Filter> + </ClCompile> <ClCompile Include="..\Python\compile.c"> <Filter>Python</Filter> </ClCompile> |