Staging
v0.8.1
https://github.com/python/cpython
Revision 66e63170d9aa8cf41a772b0d22b20c47636d24f5 authored by Stefan Krah on 23 August 2012, 13:53:45 UTC, committed by Stefan Krah on 23 August 2012, 13:53:45 UTC
1 parent f21587e
Raw File
Tip revision: 66e63170d9aa8cf41a772b0d22b20c47636d24f5 authored by Stefan Krah on 23 August 2012, 13:53:45 UTC
Issue #15770: Check invalid arguments in test function. Patch by Victor Stinner.
Tip revision: 66e6317
x64.props
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <PropertyGroup Label="UserMacros" Condition="'$(HOST_PYTHON)'!=''">
    <PythonExe>$(HOST_PYTHON)</PythonExe>
  </PropertyGroup>
  <ItemDefinitionGroup>
    <ClCompile>
      <AdditionalOptions>/USECL:MS_OPTERON /GS- %(AdditionalOptions)</AdditionalOptions>
      <PreprocessorDefinitions>_WIN64;_M_X64;%(PreprocessorDefinitions)</PreprocessorDefinitions>
    </ClCompile>
    <Link>
      <TargetMachine>MachineX64</TargetMachine>
    </Link>
  </ItemDefinitionGroup>
  <ItemGroup>
    <BuildMacro Include="PythonExe">
      <Value>$(PythonExe)</Value>
    </BuildMacro>
  </ItemGroup>
</Project>
back to top