Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
4c5ad945
Kaydet (Commit)
4c5ad945
authored
Ock 30, 2016
tarafından
Zachary Ware
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #25934: Default to /fp:strict for ICC builds
üst
407b62f3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
5 deletions
+14
-5
pyproject.props
PCbuild/pyproject.props
+3
-0
python.props
PCbuild/python.props
+11
-5
No files found.
PCbuild/pyproject.props
Dosyayı görüntüle @
4c5ad945
...
...
@@ -50,6 +50,9 @@
<WholeProgramOptimization>
false
</WholeProgramOptimization>
<RuntimeLibrary>
MultiThreadedDebugDLL
</RuntimeLibrary>
</ClCompile>
<ClCompile
Condition=
"$(ICCBuild) == 'true'"
>
<FloatingPointModel>
Strict
</FloatingPointModel>
</ClCompile>
<Link>
<AdditionalLibraryDirectories>
$(OutDir);%(AdditionalLibraryDirectories)
</AdditionalLibraryDirectories>
<GenerateDebugInformation>
true
</GenerateDebugInformation>
...
...
PCbuild/python.props
Dosyayı görüntüle @
4c5ad945
...
...
@@ -7,12 +7,18 @@
Use the latest available version of Visual Studio to build. To override
this and build with an earlier version, pass "/p:PlatformToolset=v100"
(for example) when building.
We set BasePlatformToolset for ICC's benefit, it's otherwise ignored.
-->
<PlatformToolset
Condition=
"'$(PlatformToolset)' == '' and '$(VCTargetsPath14)' != ''"
>
v140
</PlatformToolset>
<PlatformToolset
Condition=
"'$(PlatformToolset)' == '' and '$(VCTargetsPath12)' != ''"
>
v120
</PlatformToolset>
<PlatformToolset
Condition=
"'$(PlatformToolset)' == '' and '$(VCTargetsPath11)' != ''"
>
v110
</PlatformToolset>
<PlatformToolset
Condition=
"'$(PlatformToolset)' == '' and '$(VCTargetsPath10)' != ''"
>
v100
</PlatformToolset>
<BasePlatformToolset
Condition=
"'$(BasePlatformToolset)' == '' and '$(VCTargetsPath14)' != ''"
>
v140
</BasePlatformToolset>
<BasePlatformToolset
Condition=
"'$(BasePlatformToolset)' == '' and '$(VCTargetsPath12)' != ''"
>
v120
</BasePlatformToolset>
<BasePlatformToolset
Condition=
"'$(BasePlatformToolset)' == '' and '$(VCTargetsPath11)' != ''"
>
v110
</BasePlatformToolset>
<BasePlatformToolset
Condition=
"'$(BasePlatformToolset)' == '' and '$(VCTargetsPath10)' != ''"
>
v100
</BasePlatformToolset>
<PlatformToolset
Condition=
"'$(PlatformToolset)' == ''"
>
$(BasePlatformToolset)
</PlatformToolset>
<ICCBuild>
false
</ICCBuild>
<ICCBuild
Condition=
"$(PlatformToolset.StartsWith(`Intel C++ Compiler`))"
>
true
</ICCBuild>
<!--
Convincing MSVC/MSBuild to prefer our platform names is too difficult,
so we define our own constant ArchName and use wherever we need it.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment