summaryrefslogtreecommitdiffstats
path: root/PCbuild8
Commit message (Collapse)AuthorAgeFilesLines
* The new float repr causes too much trouble and pain. I'm disabling the ↵Christian Heimes2007-12-111-2/+2
| | | | | | | feature until we have sorted out the issues on all machines. 64bit machines seem to have issues and Guido has reported even worse. Guido: It's pretty bad actually -- repr(1e5) comes out as '1.0'... Ditto for repr(1eN) for most N... Both in 2.6 and in 3.0...
* Backport of r59456:59458 from py3k to trunkChristian Heimes2007-12-101-0/+4
| | | | | | Issue #1580: New free format floating point representation based on "Floating-Point Printer Sample Code", by Robert G. Burger. For example repr(11./5) now returns '2.2' instead of '2.2000000000000002'. Thanks to noam for the patch! I had to modify doubledigits.c slightly to support X64 and IA64 machines on Windows. I also added the new file to the three project files.
* Patch #1105: Explain that one needs to build the solutionMartin v. Löwis2007-09-051-0/+7
| | | | to get dependencies right.
* copy built files to the PCBuild directory, where tools likeMark Hammond2007-07-041-1/+12
| | | | distutils or external build processes can find them.
* Remove the rgbimgmodule from PCBuild8Kristján Valur Jónsson2007-05-261-4/+0
|
* Minor fix of PCBuild8/_ctypes vcproj, moving include dir into the .vsprops file.Kristján Valur Jónsson2007-05-042-8/+12
|
* Update the pcbuild8 solution. Straightened out the _ctypes project by using ↵Kristján Valur Jónsson2007-05-044-68/+342
| | | | a .vsproj file and a masm64.rules file to avoid redundancy
* Fix pcbuild8 after recent overhaul: Added the version resource to ↵Kristján Valur Jónsson2007-05-036-5/+34
| | | | | | python26.dll. Adjust stacksize to 2Mb and made large address aware for 32 bits, and set stacksize to 3Mb for 64 bits. Todo: Set .dll optimized load addresses, and side-by-side packaging of the python26.dll.
* Fix building _ctypes.pyd for x64 / Windows.Thomas Heller2007-05-031-0/+139
|
* Complete revamp of PCBuild8 directory. Use subdirectories for each project ↵Kristján Valur Jónsson2007-04-3060-13670/+13352
| | | | 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.
* Prepare collections module for pure python code entries.Raymond Hettinger2007-02-281-1/+1
|
* update to (c) years to include 2007Anthony Baxter2007-01-061-2/+2
|
* Update the PCBuild8 solution.Kristján Valur Jónsson2006-09-0518-1818/+1764
| | | | | | | | Facilitate cross-compilation by having binaries in separate Win32 and x64 directories. Rationalized configs by making proper use of platforms/configurations. Remove pythoncore_pgo project. Add new PGIRelease and PGORelease configurations to perform Profile Guided Optimisation. Removed I64 support, but this can be easily added by copying the x64 platform settings.
* Fixup the PCBuild8 project directory. exceptions.c have moved to Objects, ↵Kristján Valur Jónsson2006-05-316-334/+30
| | | | and the functionalmodule.c has been replaced with _functoolsmodule.c. Other minor changes to .vcproj files and .sln to fix compilation
* Added missing svn:eol-style property to text files.Tim Peters2006-05-2830-10308/+10308
|
* Add a PCBuild8 build directory for building with Visual Studio .NET 2005. ↵Kristján Valur Jónsson2006-05-2738-0/+14409
Contains a special project to perform profile guided optimizations on the pythoncore.dll, by instrumenting and running pybench.py