summaryrefslogtreecommitdiffstats
path: root/PCbuild9/bz2.vcproj
Commit message (Collapse)AuthorAgeFilesLines
* Merged revisions 59371-59375 via svnmerge fromChristian Heimes2007-12-051-2/+2
| | | | | | | | | | | | | | | 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. ........
* Revert change of bz2.vcprojChristian Heimes2007-11-221-4/+0
|
* Fixed PGO buildsChristian Heimes2007-11-221-0/+4
| | | | The intermediate PG instrument build now lands in Platform-pgi and the final optimized build in Platform-pgo.
* when building with VC 2008, turn off unicode as default mode for the win32 API.Amaury Forgeot d'Arc2007-11-211-7/+7
| | | | | For example, MessageBox takes char* parameters. If you want to pass unicode strings, use MessageBoxW explicitely.
* Removed character set = unicode as requested by AmauryChristian Heimes2007-11-211-63/+1
| | | | 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.
* Added configurations and files for profile guided optimization (PGO).Christian Heimes2007-11-201-8/+300
|
* Report #1473 Drop _EXPORTS macros in PCbuild9Christian Heimes2007-11-201-4/+0
| | | | 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.
* I've spend some time to automate more steps of the build process. Now bzip2, ↵Christian Heimes2007-11-191-4/+12
| | | | | | bsddb, sqlite and openssl are automatically build by prelink steps. I had to use some tricks to build openssl for 32 and 64bit CPUs in two separate build dirs.
* Removed ReleaseAMD64 and replaced it with platform x64. The x64 builds fine ↵Christian Heimes2007-11-191-4/+72
| | | | except of the modules that depend on external libraries like tkinter and openssl. And I can't test the build on my 32bit CPU.
* Initial import of new PCbuild9 for VS 2008. It partly based on PCbuild and ↵Christian Heimes2007-11-171-0/+243
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.