mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Complete revamp of PCBuild8 directory. Use subdirectories for each project under the main pcbuild solution. Now make extensive use of property sheets to simplify project configuration. x64 build fully supported, and the process for building PGO version (Profiler Guided Optimization) simplified. All projects are now present, except _ssl, which needs to be reimplemented. Also, some of the projects that require external libraries need extra work to fully compile on x64.
This commit is contained in:
parent
714e19a7bd
commit
7a0da19087
63 changed files with 13367 additions and 13681 deletions
|
@ -20,10 +20,7 @@
|
|||
#endif
|
||||
#endif
|
||||
|
||||
#ifdef SUBWCREV
|
||||
#define SVNVERSION "$WCRANGE$$WCMODS?M:$"
|
||||
#endif
|
||||
|
||||
const char *
|
||||
Py_GetBuildInfo(void)
|
||||
{
|
||||
|
@ -40,9 +37,9 @@ Py_GetBuildInfo(void)
|
|||
const char *
|
||||
_Py_svnversion(void)
|
||||
{
|
||||
#ifdef SVNVERSION
|
||||
return SVNVERSION;
|
||||
#else
|
||||
/* the following string can be modified by subwcrev.exe */
|
||||
static const char svnversion[] = SVNVERSION;
|
||||
if (!strstr(svnversion, "$"))
|
||||
return svnversion; /* it was interpolated */
|
||||
return "exported";
|
||||
#endif
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue