summaryrefslogtreecommitdiffstats
path: root/PCbuild9/pythoncore.vcproj
Commit message (Collapse)AuthorAgeFilesLines
* Merged revisions 59371-59375 via svnmerge fromChristian Heimes2007-12-051-4/+4
| | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r59374 | georg.brandl | 2007-12-05 22:52:40 +0100 (Wed, 05 Dec 2007) | 2 lines Add Ross Light, a GHOP student, to ACKs. ........ r59375 | christian.heimes | 2007-12-05 22:57:25 +0100 (Wed, 05 Dec 2007) | 2 lines The macros _WIN32, _WIN64 and _M_X64 are defined by the compiler. The VS 2008 IDE doesn't know about (some) of the macros and can display wrong information. In my case a section #ifdef _WIN64 was grayed out although the platform was x64. I've added the macros to pyproject.vsprops and x64.vsprops. I've also added a paragraph about the property files to the readme and fixed the order of pyupdate > pyinstrument. ........
* Merged revisions 59245-59254 via svnmerge fromChristian Heimes2007-12-011-8/+8
| | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r59245 | georg.brandl | 2007-11-30 23:04:45 +0100 (Fri, 30 Nov 2007) | 2 lines Move lchmod() docs to correct place, and add versionadded tags. ........ r59249 | christian.heimes | 2007-11-30 23:36:10 +0100 (Fri, 30 Nov 2007) | 2 lines Backport of -r59242:59246 from py3k Fixed problem with regrtest caused by the additional of objects to _abcoll. ........ r59253 | christian.heimes | 2007-12-01 02:03:20 +0100 (Sat, 01 Dec 2007) | 1 line Although pyconfig.h claims that WIN32 is obsolete it is still required for the locale module. locale.getdefaultlocale() fails silently w/o the WIN32 macro. ........ r59254 | christian.heimes | 2007-12-01 12:20:10 +0100 (Sat, 01 Dec 2007) | 3 lines Feature #1534 Added PyFloat_GetMax(), PyFloat_GetMin() and PyFloat_GetInfo() to the float API. Added a dictionary sys.float_info with information about the internal floating point type to the sys module. ........
* Merged revisions 59234-59238 via svnmerge fromChristian Heimes2007-11-301-16/+16
| | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r59237 | facundo.batista | 2007-11-30 18:15:25 +0100 (Fri, 30 Nov 2007) | 4 lines Reordering of __new__ to minimize isinstance() calls to most used types. Thanks Mark Dickinson. ........ r59238 | christian.heimes | 2007-11-30 20:18:08 +0100 (Fri, 30 Nov 2007) | 6 lines Removed or replaced some more deprecated preprocessor macros. Moved the _DEBUG and NDEBUG macros to two new property files. Fixed #1527 Problem with static libs on Windows Updated README.txt ........
* Fixed PGO buildsChristian Heimes2007-11-221-4/+4
| | | | The intermediate PG instrument build now lands in Platform-pgi and the final optimized build in Platform-pgo.
* Removed character set = unicode as requested by AmauryChristian Heimes2007-11-211-21/+4
| | | | Removed more project configs in order to use the defaults defined in the property files. The 'sed' tool was more than helpful for the job.
* Patch +1478 from Joseph ArmbrusterChristian Heimes2007-11-211-3/+3
| | | | pythoncore.vcproj fails to generate buildinfo (when spaces in path)
* Fixes for #1473 and #1476Christian Heimes2007-11-201-1/+1
| | | | | Added debug builds to make_versioninfo Removed some more defines
* Added configurations and files for profile guided optimization (PGO).Christian Heimes2007-11-201-4/+316
|
* Report #1473 Drop _EXPORTS macros in PCbuild9Christian Heimes2007-11-201-6/+4
| | | | I've removed a bunch of obsolete defines. I've also taken the opportunity to fix the pre-link event of sqlite3 and some optimization flags.
* Fixed build order of the _ssl project. The openssl project needs to come ↵Christian Heimes2007-11-191-0/+6
| | | | | | first because the makefile puts the header files in the right place. Added some optimization flags to the Release builds of pythoncore and the executables.
* Removed ReleaseAMD64 and replaced it with platform x64. The x64 builds fine ↵Christian Heimes2007-11-191-13/+93
| | | | except of the modules that depend on external libraries like tkinter and openssl. And I can't test the build on my 32bit CPU.
* Fixed some build issues and updated docs.Christian Heimes2007-11-171-4/+3
|
* Initial import of new PCbuild9 for VS 2008. It partly based on PCbuild and ↵Christian Heimes2007-11-171-0/+1379
partly hand crafted with some idea from PCbuild8. I've recreated all the extension module projects. The new directory needs some more love and care but it works. I'm not able to test the AMD64 build. The new tree is heavily using the *.vcprops property sheets. Please set any global settings in the property sheets.