diff options
author | Benjamin Peterson <benjamin@python.org> | 2016-10-20 22:37:00 -0700 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2016-10-20 22:37:00 -0700 |
commit | 4510e6de9d38987c5b00ce416da19fe9ffc2dde9 (patch) | |
tree | 4cdd80cbb86933dfbfa6edefb1f6966afa6b3183 /PCbuild | |
parent | a83636247e3de138e017a04474236ef5aa8b4f4a (diff) | |
download | cpython-git-4510e6de9d38987c5b00ce416da19fe9ffc2dde9.tar.gz |
mark dtrace stubs as static inline; remove stubs
C99 inline semantics don't work everywhere. (https://bugs.python.org/issue28092)
We don't want these to have external visibility anyway.
Diffstat (limited to 'PCbuild')
-rw-r--r-- | PCbuild/pythoncore.vcxproj | 1 | ||||
-rw-r--r-- | PCbuild/pythoncore.vcxproj.filters | 3 |
2 files changed, 0 insertions, 4 deletions
diff --git a/PCbuild/pythoncore.vcxproj b/PCbuild/pythoncore.vcxproj index 769c643657..963da89c44 100644 --- a/PCbuild/pythoncore.vcxproj +++ b/PCbuild/pythoncore.vcxproj @@ -356,7 +356,6 @@ <ClCompile Include="..\Python\ceval.c" /> <ClCompile Include="..\Python\codecs.c" /> <ClCompile Include="..\Python\compile.c" /> - <ClCompile Include="..\Python\dtrace_stubs.c" /> <ClCompile Include="..\Python\dynamic_annotations.c" /> <ClCompile Include="..\Python\dynload_win.c" /> <ClCompile Include="..\Python\errors.c" /> diff --git a/PCbuild/pythoncore.vcxproj.filters b/PCbuild/pythoncore.vcxproj.filters index a45b9d91e1..762210d459 100644 --- a/PCbuild/pythoncore.vcxproj.filters +++ b/PCbuild/pythoncore.vcxproj.filters @@ -851,9 +851,6 @@ <ClCompile Include="..\Python\compile.c"> <Filter>Python</Filter> </ClCompile> - <ClCompile Include="..\Python\dtrace_stubs.c"> - <Filter>Python</Filter> - </ClCompile> <ClCompile Include="..\Python\dynamic_annotations.c"> <Filter>Python</Filter> </ClCompile> |