mirror of
git://code.qt.io/qt/qt5.git
synced 2026-01-04 22:17:45 +08:00
Visual Studio 2022 is the first msvc having natively support for
building and debugging ARM64 apps.
Provisioning needed to take new Get-CpuArchitecture
helpers.ps1 function into use in several installations.
Requirements for other branches
- Get-CpuArchitecture helpers.ps1 function
- Skip qtwebengine with Windows 11 ARM (QTBUG-124632)
List of excluded installations in Windows on ARM:
- Could be added later
- MinGW - QTQAINFRA-6079
- DirectX SDK for RTA
- libclang
- mcuexpresso
- fbx for msvc2022
- Ruby
- For python
- conan
- emsdk
- Not supported yet
- FFmpeg
- Msys2 (for FFmpeg QTBUG-124399)
- MySQL
- PostgreSQL
- Java JDK
- Strawberry Perl
Task-number: QTQAINFRA-6111
Task-number: QTQAINFRA-6109
Task-number: QTQAINFRA-5855
Change-Id: I4130e78add53f8a6e05eb41b7617b3f9ca802178
Reviewed-by: Tero Heikkinen <tero.heikkinen@qt.io>
Reviewed-by: Heikki Halmet <heikki.halmet@qt.io>
Reviewed-by: Simo Fält <simo.falt@qt.io>
86 lines
3.1 KiB
PowerShell
86 lines
3.1 KiB
PowerShell
# Copyright (C) 2019 The Qt Company Ltd.
|
|
# Copyright (C) 2017 Pelagicore AG
|
|
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
|
|
|
# This script installs Python $version.
|
|
# Python3 is required for building some qt modules.
|
|
param(
|
|
[Int32]$archVer,
|
|
[string]$sha1,
|
|
[string]$install_path,
|
|
[string]$version,
|
|
[bool]$setDefault=$false
|
|
)
|
|
. "$PSScriptRoot\helpers.ps1"
|
|
|
|
$package = "C:\Windows\temp\python-$version.exe"
|
|
|
|
# check bit version
|
|
$cpu_arch = Get-CpuArchitecture
|
|
Write-Host "Installing $cpu_arch Python"
|
|
switch ($cpu_arch) {
|
|
arm64 {
|
|
$externalUrl = "https://www.python.org/ftp/python/$version/python-$version-arm64.exe"
|
|
$internalUrl = "http://ci-files01-hki.ci.qt.io/input/windows/python-$version-arm64.exe"
|
|
Break
|
|
}
|
|
x64 {
|
|
if ($archVer -eq "64") {
|
|
$externalUrl = "https://www.python.org/ftp/python/$version/python-$version-amd64.exe"
|
|
$internalUrl = "http://ci-files01-hki.ci.qt.io/input/windows/python-$version-amd64.exe"
|
|
} else {
|
|
$externalUrl = "https://www.python.org/ftp/python/$version/python-$version.exe"
|
|
$internalUrl = "http://ci-files01-hki.ci.qt.io/input/windows/python-$version.exe"
|
|
}
|
|
}
|
|
default {
|
|
throw "Unknown architecture $cpu_arch"
|
|
}
|
|
}
|
|
|
|
Write-Host "Fetching from URL..."
|
|
Download $externalUrl $internalUrl $package
|
|
Verify-Checksum $package $sha1
|
|
Write-Host "Installing $package..."
|
|
Run-Executable "$package" "/q TargetDir=$install_path"
|
|
Remove "$package"
|
|
|
|
# For cross-compilation we export some helper env variable
|
|
if (($archVer -eq 32) -And (Is64BitWinHost)) {
|
|
if ($setDefault) {
|
|
Set-EnvironmentVariable "PYTHON3_32_PATH" "$install_path"
|
|
Set-EnvironmentVariable "PIP3_32_PATH" "$install_path\Scripts"
|
|
}
|
|
Set-EnvironmentVariable "PYTHON$version-32_PATH" "$install_path"
|
|
Set-EnvironmentVariable "PIP$version-32_PATH" "$install_path\Scripts"
|
|
} else {
|
|
if ($setDefault) {
|
|
Set-EnvironmentVariable "PYTHON3_PATH" "$install_path"
|
|
Set-EnvironmentVariable "PIP3_PATH" "$install_path\Scripts"
|
|
}
|
|
Set-EnvironmentVariable "PYTHON$version-64_PATH" "$install_path"
|
|
Set-EnvironmentVariable "PIP$version-64_PATH" "$install_path\Scripts"
|
|
}
|
|
|
|
|
|
# Install python virtual env
|
|
if (IsProxyEnabled) {
|
|
$proxy = Get-Proxy
|
|
Write-Host "Using proxy ($proxy) with pip"
|
|
$pip_args = "--proxy=$proxy"
|
|
}
|
|
|
|
Write-Host "Upgrade pip3 to the latest version available."
|
|
Run-Executable "$install_path\python.exe" "-m pip install --upgrade pip"
|
|
|
|
Write-Host "Configure pip"
|
|
Run-Executable "$install_path\python.exe" "-m pip config --user set global.index https://ci-files01-hki.ci.qt.io/input/python_module_cache"
|
|
Run-Executable "$install_path\python.exe" "-m pip config --user set global.extra-index-url https://pypi.org/simple/"
|
|
Run-Executable "$install_path\Scripts\pip3.exe" "$pip_args install virtualenv wheel html5lib"
|
|
|
|
# Install PyPDF2 for QSR documentation
|
|
Run-Executable "$install_path\Scripts\pip3.exe" "$pip_args install PyPDF2"
|
|
|
|
Write-Output "Python3-$archVer = $version" >> ~/versions.txt
|
|
|