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
e7da2f83
Kaydet (Commit)
e7da2f83
authored
Eyl 12, 2016
tarafından
Steve Dower
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Make PGO use usual build directory on Windows.
üst
654a7bdf
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1 addition
and
10 deletions
+1
-10
pyproject.props
PCbuild/pyproject.props
+0
-1
python.props
PCbuild/python.props
+0
-1
buildrelease.bat
Tools/msi/buildrelease.bat
+1
-8
No files found.
PCbuild/pyproject.props
Dosyayı görüntüle @
e7da2f83
...
@@ -7,7 +7,6 @@
...
@@ -7,7 +7,6 @@
<OutDir
Condition=
"!HasTrailingSlash($(OutDir))"
>
$(OutDir)\
</OutDir>
<OutDir
Condition=
"!HasTrailingSlash($(OutDir))"
>
$(OutDir)\
</OutDir>
<Py_IntDir
Condition=
"'$(Py_IntDir)' == ''"
>
$(MSBuildThisFileDirectory)obj\
</Py_IntDir>
<Py_IntDir
Condition=
"'$(Py_IntDir)' == ''"
>
$(MSBuildThisFileDirectory)obj\
</Py_IntDir>
<IntDir>
$(Py_IntDir)\$(ArchName)_$(Configuration)\$(ProjectName)\
</IntDir>
<IntDir>
$(Py_IntDir)\$(ArchName)_$(Configuration)\$(ProjectName)\
</IntDir>
<IntDir
Condition=
"$(Configuration) == 'PGInstrument' or $(Configuration) == 'PGUpdate'"
>
$(Py_IntDir)\$(ArchName)_PGO\$(ProjectName)\
</IntDir>
<TargetName
Condition=
"'$(TargetName)' == ''"
>
$(ProjectName)
</TargetName>
<TargetName
Condition=
"'$(TargetName)' == ''"
>
$(ProjectName)
</TargetName>
<TargetName>
$(TargetName)$(PyDebugExt)
</TargetName>
<TargetName>
$(TargetName)$(PyDebugExt)
</TargetName>
<GenerateManifest>
false
</GenerateManifest>
<GenerateManifest>
false
</GenerateManifest>
...
...
PCbuild/python.props
Dosyayı görüntüle @
e7da2f83
...
@@ -25,7 +25,6 @@
...
@@ -25,7 +25,6 @@
-->
-->
<ArchName
Condition=
"'$(ArchName)' == '' and $(Platform) == 'x64'"
>
amd64
</ArchName>
<ArchName
Condition=
"'$(ArchName)' == '' and $(Platform) == 'x64'"
>
amd64
</ArchName>
<ArchName
Condition=
"'$(ArchName)' == ''"
>
win32
</ArchName>
<ArchName
Condition=
"'$(ArchName)' == ''"
>
win32
</ArchName>
<ArchName
Condition=
"$(Configuration) == 'PGInstrument' or $(Configuration) == 'PGUpdate'"
>
$(ArchName)-pgo
</ArchName>
<!-- Root directory of the repository -->
<!-- Root directory of the repository -->
<PySourcePath
Condition=
"'$(PySourcePath)' == ''"
>
$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)\..\))
</PySourcePath>
<PySourcePath
Condition=
"'$(PySourcePath)' == ''"
>
$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)\..\))
</PySourcePath>
...
...
Tools/msi/buildrelease.bat
Dosyayı görüntüle @
e7da2f83
...
@@ -111,16 +111,10 @@ if "%1" EQU "x86" (
...
@@ -111,16 +111,10 @@ if "%1" EQU "x86" (
set BUILD_PLAT=Win32
set BUILD_PLAT=Win32
set OUTDIR_PLAT=win32
set OUTDIR_PLAT=win32
set OBJDIR_PLAT=x86
set OBJDIR_PLAT=x86
) else if "%~2" NEQ "" (
call "%PCBUILD%env.bat" amd64
set PGO=%~2
set BUILD=%PCBUILD%amd64-pgo\
set BUILD_PLAT=x64
set OUTDIR_PLAT=amd64
set OBJDIR_PLAT=x64
) else (
) else (
call "%PCBUILD%env.bat" amd64
call "%PCBUILD%env.bat" amd64
set BUILD=%PCBUILD%amd64\
set BUILD=%PCBUILD%amd64\
set PGO=%~2
set BUILD_PLAT=x64
set BUILD_PLAT=x64
set OUTDIR_PLAT=amd64
set OUTDIR_PLAT=amd64
set OBJDIR_PLAT=x64
set OBJDIR_PLAT=x64
...
@@ -177,7 +171,6 @@ if not "%SKIPBUILD%" EQU "1" (
...
@@ -177,7 +171,6 @@ if not "%SKIPBUILD%" EQU "1" (
)
)
set BUILDOPTS=/p:Platform=%1 /p:BuildForRelease=true /p:DownloadUrl=%DOWNLOAD_URL% /p:DownloadUrlBase=%DOWNLOAD_URL_BASE% /p:ReleaseUri=%RELEASE_URI%
set BUILDOPTS=/p:Platform=%1 /p:BuildForRelease=true /p:DownloadUrl=%DOWNLOAD_URL% /p:DownloadUrlBase=%DOWNLOAD_URL_BASE% /p:ReleaseUri=%RELEASE_URI%
if "%PGO%" NEQ "" set BUILDOPTS=%BUILDOPTS% /p:PGOBuildPath=%BUILD%
msbuild "%D%bundle\releaselocal.wixproj" /t:Rebuild %BUILDOPTS% %CERTOPTS% /p:RebuildAll=true
msbuild "%D%bundle\releaselocal.wixproj" /t:Rebuild %BUILDOPTS% %CERTOPTS% /p:RebuildAll=true
if errorlevel 1 exit /B
if errorlevel 1 exit /B
msbuild "%D%bundle\releaseweb.wixproj" /t:Rebuild %BUILDOPTS% %CERTOPTS% /p:RebuildAll=false
msbuild "%D%bundle\releaseweb.wixproj" /t:Rebuild %BUILDOPTS% %CERTOPTS% /p:RebuildAll=false
...
...
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