axmol/1k/1kiss.ps1

1977 lines
67 KiB
PowerShell
Raw Normal View History

2023-06-29 19:46:52 +08:00
# //////////////////////////////////////////////////////////////////////////////////////////
# // A multi-platform support c++11 library with focus on asynchronous socket I/O for any
# // client application.
# //////////////////////////////////////////////////////////////////////////////////////////
2023-12-15 22:29:23 +08:00
#
2023-06-29 19:46:52 +08:00
# The MIT License (MIT)
2023-12-15 22:29:23 +08:00
#
# Copyright (c) 2012-2024 HALX99
2023-12-15 22:29:23 +08:00
#
2023-06-29 19:46:52 +08:00
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
2023-12-15 22:29:23 +08:00
#
2023-06-29 19:46:52 +08:00
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
2023-12-15 22:29:23 +08:00
#
2023-06-29 19:46:52 +08:00
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
2023-12-15 22:29:23 +08:00
#
#
# The 1k/1kiss.ps1, the core script of project 1kiss(1k)
2023-06-29 19:46:52 +08:00
# options
# -p: build target platform: win32,winrt(winuwp),linux,android,osx(mac),ios,tvos,watchos,wasm
2023-12-15 22:29:23 +08:00
# for android: will search ndk in sdk_root which is specified by env:ANDROID_HOME first,
2023-06-29 19:46:52 +08:00
# if not found, by default will install ndk-r16b or can be specified by option: -cc 'ndk-r23c'
# -a: build arch: x86,x64,armv7,arm64
# -d: the build workspace, i.e project root which contains root CMakeLists.txt, empty use script run working directory aka cwd
2023-09-28 13:07:09 +08:00
# -cc: The C/C++ compiler toolchain: clang, msvc, gcc(mingw) or empty use default installed on current OS
2023-06-29 19:46:52 +08:00
# msvc: msvc-120, msvc-141
# ndk: ndk-r16b, ndk-r16b+
2023-08-30 08:34:33 +08:00
# -xt: cross build tool, default: cmake, for android can be gradlew, can be path of cross build tool program
2023-11-06 00:19:44 +08:00
# -xc: cross build tool configure options: i.e. -xc '-Dbuild'
# -xb: cross build tool build options: i.e. -xb '--config','Release'
# -prefix: the install location for missing tools in system, default is "$HOME/.1kiss"
2023-08-30 08:34:33 +08:00
# -sdk: specific windows sdk version, i.e. -sdk '10.0.19041.0', leave empty, cmake will auto choose latest avaiable
2023-12-15 22:29:23 +08:00
# -setupOnly: this param present, only execute step: setup
2023-08-30 08:34:33 +08:00
# -configOnly: if this param present, will skip build step
2023-06-29 19:46:52 +08:00
# support matrix
2023-09-28 13:07:09 +08:00
# | OS | Build targets | C/C++ compiler toolchain | Cross Build tool |
# +----------+----------------------+---------------------------+------------------|
# | Windows | win32,winrt | msvc,clang,gcc(mingw) | cmake |
2023-09-28 13:07:09 +08:00
# | Linux | linux,android | gcc,ndk | cmake,gradle |
# | macOS | osx,ios,tvos,watchos | xcode | cmake |
2023-12-15 22:29:23 +08:00
# android gradle, there a two props:
# - -P__1K_CMAKE_VERSION
# - -P__1k_ARCHS
# startsWith('__1K') indicate 1k gradle props
# startsWith('_1K') indicate it's a cmake config option
2023-06-29 19:46:52 +08:00
#
2023-08-30 08:34:33 +08:00
param(
[switch]$configOnly,
2023-09-23 11:33:12 +08:00
[switch]$setupOnly,
[switch]$forceConfig,
[switch]$ndkOnly,
[switch]$rebuild
2023-08-30 08:34:33 +08:00
)
2023-06-29 19:46:52 +08:00
$myRoot = $PSScriptRoot
$HOST_WIN = 0 # targets: win,uwp,android
2023-12-15 22:29:23 +08:00
$HOST_LINUX = 1 # targets: linux,android
$HOST_MAC = 2 # targets: android,ios,osx(macos),tvos,watchos
# 0: windows, 1: linux, 2: macos
2023-11-06 00:19:44 +08:00
$Global:IsWin = $IsWindows -or ("$env:OS" -eq 'Windows_NT')
2024-05-24 01:18:30 +08:00
if ($Global:IsWin) { $HOST_OS = $HOST_WIN }
else {
2024-05-24 01:18:30 +08:00
if ($IsLinux) { $HOST_OS = $HOST_LINUX }
elseif ($IsMacOS) { $HOST_OS = $HOST_MAC }
else {
throw "Unsupported host OS to run 1k/1kiss.ps1"
}
}
2024-05-24 01:18:30 +08:00
$Global:ENV_PATH_SEP = @(':', ';')[$IsWin]
$Global:EXE_SUFFIX = @('', '.exe')[$IsWin]
2023-11-29 23:19:04 +08:00
$Script:cmake_generator = $null
2023-11-06 00:19:44 +08:00
2024-01-19 00:12:19 +08:00
# import VersionEx
2024-01-19 20:33:40 +08:00
. (Join-Path $PSScriptRoot 'extensions.ps1')
2024-01-19 00:12:19 +08:00
2024-05-18 23:30:26 +08:00
class _1kiss {
[void] println($msg) {
Write-Host "1kiss: $msg"
}
[void] print($msg) {
Write-Host "1kiss: $msg" -NoNewline
}
[System.Boolean] isfile([string]$path) {
2024-03-22 23:37:16 +08:00
return $path -and (Test-Path $path -PathType Leaf)
}
[System.Boolean] isdir([string]$path) {
2024-03-22 23:37:16 +08:00
return $path -and (Test-Path $path -PathType Container)
}
[void] mkdirs([string]$path) {
2023-09-01 01:06:58 +08:00
if (!(Test-Path $path -PathType Container)) {
New-Item $path -ItemType Directory 1>$null
}
}
[void] rmdirs([string]$path) {
if ($this.isdir($path)) {
$this.println("Deleting $path ...")
Remove-Item $path -Recurse -Force
}
}
[void] del([string]$path) {
if ($this.isfile($path)) {
$this.println("Deleting $path ...")
Remove-Item $path -Force
}
}
[void] mv([string]$path, [string]$dest) {
if ($this.isdir($path) -and !$this.isdir($dest)) {
Move-Item $path $dest
}
}
2024-05-24 01:18:30 +08:00
[void] addpath([string]$path) { $this.addpath($path, $false) }
[void] addpath([string]$path, [bool]$append) {
if (!$path -or $env:PATH.Contains($path)) { return }
if (!$append) { $env:PATH = "$path$Global:ENV_PATH_SEP$env:PATH" }
else { $env:PATH = "$env:PATH$Global:ENV_PATH_SEP$path" }
}
[void] pause($msg) {
$shoud_pause = $false
2023-11-29 23:19:04 +08:00
do {
if (!$Global:IsWin) { break }
$myProcess = [System.Diagnostics.Process]::GetCurrentProcess()
2023-11-29 23:19:04 +08:00
if ($myProcess.ProcessName.EndsWith('_ise')) { break }
$parentProcess = $myProcess.Parent
if (!$parentProcess) {
$myPID = $myProcess.Id
$instance = Get-WmiObject Win32_Process -Filter "ProcessId = $myPID"
2023-11-29 23:19:04 +08:00
$parentProcess = Get-Process -Id $instance.ParentProcessID -ErrorAction SilentlyContinue
if (!$parentProcess) { break }
}
2023-12-15 22:29:23 +08:00
2023-11-29 23:19:04 +08:00
$executed_from_explorer = ($parentProcess.ProcessName -like "explorer")
if ($executed_from_explorer) {
$procesCmdLineArgs = "$([System.Environment]::GetCommandLineArgs())"
2024-03-22 23:37:16 +08:00
if ($procesCmdLineArgs.Contains('.ps1') -and !$procesCmdLineArgs.Contains('-noexit')) {
$shoud_pause = $true
}
}
2023-11-29 23:19:04 +08:00
} while ($false)
if ($shoud_pause) {
2023-11-29 23:19:04 +08:00
$this.print("$msg, press any key to continue . . .")
cmd /c pause 1>$null
}
else {
$this.println($msg)
}
}
2023-09-06 12:36:24 +08:00
2024-05-24 01:18:30 +08:00
[bool] isabspath($path) {
return [IO.Path]::IsPathRooted($path)
}
2023-11-18 13:16:40 +08:00
# Get full path without exist check
2023-11-06 00:19:44 +08:00
[string] realpath($path) {
return $Global:ExecutionContext.SessionState.Path.GetUnresolvedProviderPathFromPSPath($path)
}
2023-12-15 22:29:23 +08:00
[string] hash($content) {
2023-09-06 12:36:24 +08:00
$stringAsStream = [System.IO.MemoryStream]::new()
$writer = [System.IO.StreamWriter]::new($stringAsStream)
$writer.write($content)
$writer.Flush()
$stringAsStream.Position = 0
return (Get-FileHash -InputStream $stringAsStream -Algorithm MD5).Hash
}
}
2024-05-18 23:30:26 +08:00
$1k = [_1kiss]::new()
# ---------------------- manifest --------------------
2023-07-02 00:53:41 +08:00
# mode:
# x.y.z+ : >=
# x.y.z : ==
# * : any
# x.y.z~x2.y2.z2 : range
$manifest = @{
2024-03-24 05:11:41 +08:00
msvc = '14.39+'; # cl.exe @link.exe 14.39 VS2022 17.9.x
ndk = 'r23c';
2024-04-27 23:32:27 +08:00
xcode = '13.0.0+'; # range
# _EMIT_STL_ERROR(STL1000, "Unexpected compiler version, expected Clang xx.x.x or newer.");
# clang-cl msvc14.37 require 16.0.0+
# clang-cl msvc14.40 require 17.0.0+
llvm = '17.0.6+';
2023-07-02 00:53:41 +08:00
gcc = '9.0.0+';
2024-05-24 01:18:30 +08:00
cmake = '3.23.0+';
ninja = '1.10.0+';
2024-03-22 23:37:16 +08:00
python = '3.8.0+';
2024-07-20 02:52:07 +08:00
jdk = '17.0.10+'; # jdk17+ works for android cmdlinetools 7.0+
2024-05-24 01:26:58 +08:00
emsdk = '3.1.53+';
2023-07-02 00:53:41 +08:00
cmdlinetools = '7.0+'; # android cmdlinetools
}
2024-05-22 01:23:28 +08:00
# the default generator of unix targets: linux, osx, ios, android, wasm
$cmake_generators = @{
'linux' = 'Unix Makefiles'
'android' = 'Ninja'
'wasm' = 'Ninja'
'wasm64' = 'Ninja'
'osx' = 'Xcode'
'ios' = 'Xcode'
'tvos' = 'Xcode'
'watchos' = 'Xcode'
}
$channels = @{}
2023-07-02 00:53:41 +08:00
# refer to: https://developer.android.com/studio#command-line-tools-only
2024-07-20 02:52:07 +08:00
$cmdlinetools_rev = '11076708' # 12.0
2023-07-02 00:53:41 +08:00
$android_sdk_tools = @{
'build-tools' = '34.0.0'
'platforms' = 'android-34'
}
2024-06-08 21:37:52 +08:00
# eva: evaluated_args
2023-07-06 12:18:33 +08:00
$options = @{
p = $null
a = $null
d = $null
cc = $null
t = '' # cb_target
xt = 'cmake'
prefix = $null
xc = @()
xb = @()
j = -1
O = -1
2024-04-02 22:31:34 +08:00
sdk = ''
minsdk = $null
dll = $false
u = $false # whether delete 1kdist cross-platform prebuilt folder: path/to/_x
2024-04-13 22:11:22 +08:00
dm = $false # dump compiler preprocessors
2024-05-21 23:40:01 +08:00
i = $false # perform install
2023-07-06 12:18:33 +08:00
}
2023-06-29 19:46:52 +08:00
$optName = $null
foreach ($arg in $args) {
if (!$optName) {
2023-12-15 22:29:23 +08:00
if ($arg.StartsWith('-')) {
2023-06-29 19:46:52 +08:00
$optName = $arg.SubString(1)
if ($optName.EndsWith(':')) {
$optName = $optName.TrimEnd(':')
2024-04-02 22:31:34 +08:00
}
$flag_tag = [string]$optName[0]
2024-05-21 23:40:01 +08:00
if ($flag_tag -in 'j', 'O') {
$flag_val = $null
if ([int]::TryParse($optName.substring(1), [ref] $flag_val)) {
$optName = $null
$options.$flag_tag = $flag_val
continue
}
}
2024-05-21 23:40:01 +08:00
if ($options[$optName] -is [bool]) {
2024-04-13 22:11:22 +08:00
$options[$optName] = $true
$optName = $null
}
2023-06-29 19:46:52 +08:00
}
}
else {
2023-06-29 19:46:52 +08:00
if ($options.Contains($optName)) {
$options[$optName] = $arg
}
else {
2024-05-18 23:30:26 +08:00
$1k.println("Warning: ignore unrecognized option: $optName")
2023-06-29 19:46:52 +08:00
}
$optName = $null
}
}
# job count
if ($options.j -eq -1) {
$options.j = $([Environment]::ProcessorCount)
}
# translate xtool args
if ($options.xc.GetType() -eq [string]) {
$options.xc = $options.xc.Split(' ')
}
if ($options.xb.GetType() -eq [string]) {
$options.xb = $options.xb.Split(' ')
}
2023-06-29 19:46:52 +08:00
$pwsh_ver = $PSVersionTable.PSVersion.ToString()
2024-01-19 00:12:19 +08:00
if ([VersionEx]$pwsh_ver -lt [VersionEx]"7.0") {
2023-09-13 03:37:49 +08:00
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
}
2023-06-29 19:46:52 +08:00
2023-11-18 13:16:40 +08:00
$osVer = if ($IsWin) { "Microsoft Windows $([System.Environment]::OSVersion.Version.ToString())" } else { $PSVersionTable.OS }
2024-03-24 05:11:41 +08:00
# arm64,x64
# uname -m: arm64/aarch64,x86_64
$HOST_CPU = [System.Runtime.InteropServices.RuntimeInformation, mscorlib]::OSArchitecture.ToString().ToLower()
2024-05-18 23:30:26 +08:00
$1k.println("PowerShell $pwsh_ver on $osVer")
2023-07-06 12:18:33 +08:00
2023-11-06 00:19:44 +08:00
# determine build target os
$TARGET_OS = $options.p
if (!$TARGET_OS) {
# choose host target if not specified by command line automatically
$TARGET_OS = $options.p = $('win32', 'linux', 'osx').Get($HOST_OS)
}
else {
2024-01-07 00:13:11 +08:00
$target_os_norm = @{winuwp = 'winrt'; mac = 'osx' }[$TARGET_OS]
if ($target_os_norm) {
$TARGET_OS = $target_os_norm
}
2023-11-06 00:19:44 +08:00
}
2024-01-12 00:27:16 +08:00
$Global:target_minsdk = $options.minsdk
if (!$Global:target_minsdk) {
$Global:target_minsdk = @{osx = '10.15'; winrt = '10.0.17763.0' }[$TARGET_OS]
}
2024-01-07 00:13:11 +08:00
# define some useful global vars
2024-01-12 00:27:16 +08:00
function eval($str, $raw = $false) {
if (!$raw) {
return Invoke-Expression "`"$str`""
}
else {
2024-01-12 00:27:16 +08:00
return Invoke-Expression $str
}
}
function create_symlink($sourcePath, $destPath) {
# try link ninja exist cmake bin directory
& "$myRoot\fsync.ps1" -s $sourcePath -d $destPath -l $true 2>$null
if (!$? -and $IsWin) {
# try runas admin again
$mklink_args = "-Command ""& ""$myRoot\fsync.ps1"" -s '$sourcePath' -d '$destPath' -l `$true 2>`$null"""
Write-Host "mklink_args={$mklink_args}"
Start-Process powershell -ArgumentList $mklink_args -WindowStyle Hidden -Wait -Verb runas
}
}
$Global:is_wasm = $TARGET_OS.StartsWith('wasm')
2024-03-24 05:11:41 +08:00
$Global:is_win32 = $TARGET_OS -eq 'win32'
$Global:is_winrt = $TARGET_OS -eq 'winrt'
$Global:is_mac = $TARGET_OS -eq 'osx'
$Global:is_linux = $TARGET_OS -eq 'linux'
$Global:is_android = $TARGET_OS -eq 'android'
$Global:is_ios = $TARGET_OS -eq 'ios'
$Global:is_tvos = $TARGET_OS -eq 'tvos'
$Global:is_watchos = $TARGET_OS -eq 'watchos'
2024-05-22 01:23:28 +08:00
$Global:is_ios_sim = $false
$Global:is_win_family = $Global:is_winrt -or $Global:is_win32
2024-01-12 00:27:16 +08:00
$Global:is_darwin_embed_family = $Global:is_ios -or $Global:is_tvos -or $Global:is_watchos
$Global:is_darwin_family = $Global:is_mac -or $Global:is_darwin_embed_family
2024-01-07 00:13:11 +08:00
$Global:is_gh_act = "$env:GITHUB_ACTIONS" -eq 'true'
2023-11-06 00:19:44 +08:00
2024-01-19 20:33:40 +08:00
$Script:cmake_ver = ''
$Script:use_msvcr14x = $null
$null = [bool]::TryParse($env:use_msvcr14x, [ref]$Script:use_msvcr14x)
2023-11-06 00:19:44 +08:00
if (!$is_wasm) {
$TARGET_CPU = $options.a
if (!$TARGET_CPU) {
$TARGET_CPU = @{'ios' = 'arm64'; 'tvos' = 'arm64'; 'watchos' = 'arm64'; 'android' = 'arm64'; }[$TARGET_OS]
if (!$TARGET_CPU) {
2024-03-24 05:11:41 +08:00
$TARGET_CPU = $HOST_CPU
2023-11-06 00:19:44 +08:00
}
$options.a = $TARGET_CPU
}
elseif ($TARGET_CPU -eq 'arm') {
$TARGET_CPU = $options.a = 'armv7'
2023-11-06 00:19:44 +08:00
}
2023-11-18 13:16:40 +08:00
}
else {
$TARGET_CPU = $options.a = '*'
2023-11-06 00:19:44 +08:00
}
2024-04-02 22:31:34 +08:00
$Global:darwin_sim_suffix = $null
if ($Global:is_darwin_embed_family) {
if ($options.sdk.StartsWith('sim')) {
$Global:darwin_sim_suffix = '_sim'
}
$Global:is_ios_sim = $Global:darwin_sim_suffix -or ($TARGET_CPU -eq 'x64')
}
$Global:is_darwin_embed_device = $Global:is_darwin_embed_family -and !$Global:is_ios_sim
2024-01-12 00:27:16 +08:00
2023-08-30 08:34:33 +08:00
if (!$setupOnly) {
2024-05-18 23:30:26 +08:00
$1k.println("$(Out-String -InputObject $options)")
2023-06-29 19:46:52 +08:00
}
$HOST_OS_NAME = $('windows', 'linux', 'macos').Get($HOST_OS)
# determine toolchain
$TOOLCHAIN = $options.cc
2023-12-15 22:29:23 +08:00
$toolchains = @{
'win32' = 'msvc';
'winrt' = 'msvc';
2023-12-15 22:29:23 +08:00
'linux' = 'gcc';
'android' = 'clang'; # xcode clang
'osx' = 'clang'; # xcode clang
'ios' = 'clang'; # xcode clang
'tvos' = 'clang'; # xcode clang
'watchos' = 'clang'; # xcode clang
'wasm' = 'clang'; # emcc clang
'wasm64' = 'clang'; # emcc clang
2023-06-29 19:46:52 +08:00
}
if (!$TOOLCHAIN) {
2023-11-06 00:19:44 +08:00
$TOOLCHAIN = $toolchains[$TARGET_OS]
2023-06-29 19:46:52 +08:00
}
2024-03-24 05:44:05 +08:00
if (!$TOOLCHAIN) {
throw "1kiss: Unsupported target os: $TARGET_OS"
}
2023-06-29 19:46:52 +08:00
$TOOLCHAIN_INFO = $TOOLCHAIN.Split('-')
$TOOLCHAIN_VER = $null
if ($TOOLCHAIN_INFO.Count -ge 2) {
$toolVer = $TOOLCHAIN_INFO[$TOOLCHAIN_INFO.Count - 1]
if ($toolVer -match "\d+") {
$TOOLCHAIN_NAME = $TOOLCHAIN_INFO[0..($TOOLCHAIN_INFO.Count - 2)] -join '-'
$TOOLCHAIN_VER = $toolVer
}
}
if (!$TOOLCHAIN_VER) {
$TOOLCHAIN_NAME = $TOOLCHAIN
}
$Global:is_clang = $TOOLCHAIN_NAME -eq 'clang'
$Global:is_msvc = $TOOLCHAIN_NAME -eq 'msvc'
$external_prefix = if ($options.prefix) { $options.prefix } else { Join-Path $HOME '.1kiss' }
2024-05-18 23:30:26 +08:00
if (!$1k.isdir($external_prefix)) {
$1k.mkdirs($external_prefix)
2023-06-29 19:46:52 +08:00
}
2024-05-18 23:30:26 +08:00
$1k.println("proj_dir=$((Get-Location).Path), external_prefix=$external_prefix")
2023-07-02 00:53:41 +08:00
2023-11-29 23:19:04 +08:00
# load toolset manifest
$manifest_file = Join-Path $myRoot 'manifest.ps1'
2024-05-18 23:30:26 +08:00
if ($1k.isfile($manifest_file)) {
2023-11-29 23:19:04 +08:00
. $manifest_file
}
2024-05-21 23:40:01 +08:00
# 1kdist
2024-02-01 22:38:30 +08:00
$sentry_file = Join-Path $myRoot '.gitee'
2024-05-18 23:30:26 +08:00
$mirror = if ($1k.isfile($sentry_file)) { 'gitee' } else { 'github' }
$mirror_url_base = @{'github' = 'https://github.com/'; 'gitee' = 'https://gitee.com/' }[$mirror]
2024-05-21 23:40:01 +08:00
$1kdist_url_base = $mirror_url_base
2024-05-18 23:30:26 +08:00
$mirror_conf_file = $1k.realpath("$myRoot/../manifest.json")
$mirror_current = $null
2024-05-21 23:40:01 +08:00
$devtools_url_base = $null
$1kdist_ver = $null
2024-05-18 23:30:26 +08:00
if ($1k.isfile($mirror_conf_file)) {
2024-02-01 22:38:30 +08:00
$mirror_conf = ConvertFrom-Json (Get-Content $mirror_conf_file -raw)
$mirror_current = $mirror_conf.mirrors.$mirror
2024-05-21 23:40:01 +08:00
$1kdist_url_base += $mirror_current.'1kdist'
$devtools_url_base += "$1kdist_url_base/devtools"
$1kdist_ver = $mirror_conf.versions.'1kdist'
$1kdist_url_base += "/$1kdist_ver"
}
function 1kdist_url($filename) {
return "$1kdist_url_base/$filename"
2024-02-01 22:38:30 +08:00
}
function devtool_url($filename) {
return "$devtools_url_base/$filename"
}
2023-11-18 13:16:40 +08:00
# accept x.y.z-rc1
function version_eq($ver1, $ver2) {
return $ver1 -eq $ver2
}
# $ver2: accept x.y.z-rc1
function version_ge($ver1, $ver2) {
$validatedVer = [Regex]::Match($ver1, '(\d+\.)+(-)?(\*|\d+)')
if ($validatedVer.Success) {
2024-01-19 00:12:19 +08:00
return [VersionEx]$validatedVer.Value -ge [VersionEx]$ver2
2023-11-18 13:16:40 +08:00
}
return $false
}
# $verMain and $verMax not accept x.y.z-rc1
function version_in_range($ver1, $verMin, $verMax) {
$validatedVer = [Regex]::Match($ver1, '(\d+\.)+(-)?(\*|\d+)')
if ($validatedVer.Success) {
2024-01-19 00:12:19 +08:00
$typedVer1 = [VersionEx]$validatedVer.Value
$typedVerMin = [VersionEx]$verMin
$typedVerMax = [VersionEx]$verMax
2023-11-18 13:16:40 +08:00
return $typedVer1 -ge $typedVerMin -and $typedVer1 -le $typedVerMax
}
return $false
}
# validate $env:PATH to avoid unexpected shell script behavior
if ([Regex]::Match($env:PATH, "`'|`"").Success) {
throw "Please remove any `' or `" from your PATH list"
}
# validate cmd follow symlink recurse
function validate_cmd_fs($source, $root) {
$fileinfo = Get-Item $source
if (!$fileinfo.Target) {
if ($source -ne $root) {
2024-05-18 23:30:26 +08:00
$1k.println("info: the cmd follow symlink $root ==> $source")
2023-11-18 13:16:40 +08:00
}
2023-12-15 22:29:23 +08:00
return $true
2023-11-18 13:16:40 +08:00
}
$target = $fileinfo.Target
if (![IO.Path]::IsPathRooted($target)) {
# convert symlink target to fullpath
2024-05-18 23:30:26 +08:00
$target = $1k.realpath($(Join-Path $(Split-Path $source -Parent) $target))
2023-11-18 13:16:40 +08:00
}
2024-05-18 23:30:26 +08:00
if (!$1k.isfile($target)) {
$1k.println("warning: the symlink target $root ==> $target is missing")
2023-11-18 13:16:40 +08:00
return $false
}
if ($target -eq $root) {
2024-05-18 23:30:26 +08:00
$1k.println("warning: detected cycle symlink for cmd $root")
2023-12-15 22:29:23 +08:00
return $true
2023-11-18 13:16:40 +08:00
}
return (validate_cmd_fs $target $root)
}
function validate_cmd($source) {
return (validate_cmd_fs $source $source)
}
function find_cmd($cmd) {
$cmd_info = (Get-Command $cmd -ErrorAction SilentlyContinue)
if ($cmd_info -and (validate_cmd $cmd_info.Source)) {
return $cmd_info
}
return $null
}
2024-01-12 01:25:37 +08:00
function find_prog($name, $path = $null, $mode = 'ONLY', $cmd = $null, $params = @('--version'), $silent = $false, $usefv = $false) {
2023-07-02 00:53:41 +08:00
if ($path) {
$storedPATH = $env:PATH
2023-07-06 12:18:33 +08:00
if ($mode -eq 'ONLY') {
$env:PATH = $path
}
elseif ($mode -eq 'BOTH') {
$env:PATH = "$path$ENV_PATH_SEP$env:PATH"
2023-07-06 12:18:33 +08:00
}
2023-07-02 00:53:41 +08:00
}
else {
$storedPATH = $null
}
2023-07-02 00:53:41 +08:00
if (!$cmd) { $cmd = $name }
$params = [array]$params
2023-07-02 00:53:41 +08:00
# try get match expr and preferred ver
$checkVerCond = $null
2024-07-25 22:32:16 +08:00
$minimalVer = ''
2023-07-02 00:53:41 +08:00
$preferredVer = ''
$requiredVer = $manifest[$name]
if ($requiredVer) {
2023-07-02 00:53:41 +08:00
$preferredVer = $null
2024-07-25 22:32:16 +08:00
if ($requiredVer -eq '*') {
2023-07-02 00:53:41 +08:00
$checkVerCond = '$True'
$preferredVer = 'latest'
2023-07-02 00:53:41 +08:00
}
else {
$verArr = $requiredVer.Split('~')
$isRange = $verArr.Count -gt 1
2024-07-25 22:32:16 +08:00
$minimalVer = $verArr[0]
2023-07-02 00:53:41 +08:00
$preferredVer = $verArr[$isRange]
2024-07-25 22:32:16 +08:00
if ($preferredVer.EndsWith('+')) {
$preferredVer = $preferredVer.TrimEnd('+')
if ($minimalVer.EndsWith('+')) { $minimalVer = $minimalVer.TrimEnd('+') }
$checkVerCond = '$(version_ge $foundVer $minimalVer)'
2024-07-27 00:22:28 +08:00
}
else {
2024-07-25 22:32:16 +08:00
if ($isRange) {
$checkVerCond = '$(version_in_range $foundVer $minimalVer $preferredVer)'
}
else {
$checkVerCond = '$(version_eq $foundVer $preferredVer)'
}
2023-07-02 00:53:41 +08:00
}
}
if (!$checkVerCond) {
throw "Invalid tool $name=$requiredVer in manifest"
}
}
# find command
2023-11-18 13:16:40 +08:00
$cmd_info = find_cmd $cmd
# needs restore immidiately since further cmd invoke maybe require system bins
if ($path) {
$env:PATH = "$path$ENV_PATH_SEP$storedPATH"
}
2023-07-02 00:53:41 +08:00
$found_rets = $null # prog_path,prog_version
2023-07-02 10:04:00 +08:00
if ($cmd_info) {
$prog_path = $cmd_info.Source
2023-07-02 10:48:59 +08:00
if (!$usefv) {
2024-01-12 01:25:37 +08:00
$verStr = $(. $cmd @params 2>$null) | Select-Object -First 1
2024-03-22 23:37:16 +08:00
if (!$verStr -or $verStr.Contains('--version')) {
2024-01-12 01:25:37 +08:00
$verInfo = $cmd_info.Version
$verStr = "$($verInfo.Major).$($verInfo.Minor).$($verInfo.Build)"
}
2024-01-19 00:12:19 +08:00
# can match x.y.z-rc3 or x.y.z-65a239b
$matchInfo = [Regex]::Match($verStr, '(\d+\.)+(\*|\d+)(\-[a-z0-9]+)?')
2024-01-12 01:25:37 +08:00
$foundVer = $matchInfo.Value
}
else {
2024-01-12 01:25:37 +08:00
$foundVer = "$($cmd_info.Version)"
}
2024-07-25 22:32:16 +08:00
[void]$minimalVer
2023-07-02 00:53:41 +08:00
if ($checkVerCond) {
$matched = Invoke-Expression $checkVerCond
if ($matched) {
2024-05-18 23:30:26 +08:00
if (!$silent) { $1k.println("Using ${name}: $prog_path, version: $foundVer") }
2023-07-02 00:53:41 +08:00
$found_rets = $prog_path, $foundVer
}
else {
2024-05-18 23:30:26 +08:00
# if (!$silent) { $1k.println("The installed ${name}: $prog_path, version: $foundVer not match required: $requiredVer") }
2023-07-02 00:53:41 +08:00
$found_rets = $null, $preferredVer
}
}
else {
2024-05-18 23:30:26 +08:00
if (!$silent) { $1k.println("Using ${name}: $prog_path, version: $foundVer") }
2023-07-02 00:53:41 +08:00
$found_rets = $prog_path, $foundVer
}
}
else {
if ($preferredVer) {
2024-05-18 23:30:26 +08:00
# if (!$silent) { $1k.println("Not found $name, needs install: $preferredVer") }
2023-07-02 00:53:41 +08:00
$found_rets = $null, $preferredVer
}
else {
throw "Not found $name, and it's not in manifest"
}
}
2023-06-29 19:46:52 +08:00
if ($storedPATH) {
2023-07-02 00:53:41 +08:00
$env:PATH = $storedPATH
}
return $found_rets
2023-06-29 19:46:52 +08:00
}
function exec_prog($prog, $params) {
# & $prog_name $params
for ($i = 0; $i -lt $params.Count; $i++) {
$param = "'"
$param += $params[$i]
$param += "'"
$params[$i] = $param
}
$strParams = "$params"
return Invoke-Expression -Command "$prog $strParams"
}
function download_file($url, $out) {
2024-05-18 23:30:26 +08:00
if ($1k.isfile($out)) { return }
$1k.println("Downloading $url to $out ...")
2023-11-12 19:54:03 +08:00
Invoke-WebRequest -Uri $url -OutFile $out
2023-06-29 19:46:52 +08:00
}
function download_and_expand($url, $out, $dest) {
2024-05-24 01:18:30 +08:00
download_file $url $out
2024-05-24 01:18:30 +08:00
try {
$1k.mkdirs($dest)
if ($out.EndsWith('.zip')) {
Expand-Archive -Path $out -DestinationPath $dest
}
2024-05-24 01:18:30 +08:00
elseif ($out.EndsWith('.tar.gz')) {
tar xf "$out" -C $dest
}
2024-05-24 01:18:30 +08:00
elseif ($out.EndsWith('.7z') -or $out.EndsWith('.exe')) {
7z x "$out" "-o$dest" -bsp1 -y | Out-Host
}
elseif ($out.EndsWith('.sh')) {
chmod 'u+x' "$out"
}
2024-05-24 01:18:30 +08:00
if (!$?) { throw "1kiss: Expand fail" }
}
2024-05-24 01:18:30 +08:00
catch {
Remove-Item $out -Force
throw "1kiss: Expand archive $out fail, please try again"
2024-05-22 21:42:04 +08:00
}
2024-05-24 01:18:30 +08:00
}
function resolve_path ($path) { if ($1k.isabspath($path)) { $path } else { Join-Path $external_prefix $path } }
function fetch_pkg($url, $exrep = $null) {
$name = Split-Path $url -Leaf
$out = Join-Path $external_prefix $name
$dest = $external_prefix
$pfn_rename = $null
if ($exrep) {
$exrep = $exrep.Split('=')
if ($exrep.Count -eq 1) {
$dest = resolve_path $exrep[0]
$inst_loc = $dest
}
else {
# >=2
$dest = $external_prefix
$inst_loc = resolve_path $exrep[1]
$pfn_rename = {
# move to plain folder name
$full_path = (Get-ChildItem -Path $external_prefix -Filter $exrep[0]).FullName
if ($full_path) {
$1k.mv($full_path, $inst_loc)
}
else {
throw "1kiss: rename $($exrep[0]) to $inst_loc fail"
}
}
}
}
2024-05-24 01:18:30 +08:00
else {
$dest = $external_prefix
$inst_loc = Join-Path $external_prefix $name
}
if ($1k.isdir($inst_loc)) { $1k.rmdirs($inst_loc) }
download_and_expand $url $out $dest
if ($pfn_rename) { &$pfn_rename }
}
# setup nuget, not add to path
function setup_nuget() {
if (!$manifest['nuget']) { return $null }
2023-11-06 00:19:44 +08:00
$nuget_bin = Join-Path $external_prefix 'nuget'
2023-09-25 01:16:09 +08:00
$nuget_prog, $nuget_ver = find_prog -name 'nuget' -path $nuget_bin -mode 'BOTH' -silent $true
2023-09-23 11:33:12 +08:00
if (!$nuget_prog) {
2024-05-18 23:30:26 +08:00
$1k.rmdirs($nuget_bin)
$1k.mkdirs($nuget_bin)
2023-09-23 11:33:12 +08:00
$nuget_prog = Join-Path $nuget_bin 'nuget.exe'
download_file "https://dist.nuget.org/win-x86-commandline/v$nuget_ver/nuget.exe" $nuget_prog
2024-05-18 23:30:26 +08:00
if (!$1k.isfile($nuget_prog)) {
2023-09-23 11:33:12 +08:00
throw "Install nuget fail"
}
}
2024-05-24 01:18:30 +08:00
$1k.addpath($nuget_bin)
2024-05-18 23:30:26 +08:00
$1k.println("Using nuget: $nuget_prog, version: $nuget_ver")
2023-09-23 11:33:12 +08:00
return $nuget_prog
}
# setup python3, not install automatically
# ensure python3.exe is python.exe to solve unexpected error, i.e.
# google gclient require python3.exe, on windows 10/11 will locate to
# a dummy C:\Users\halx99\AppData\Local\Microsoft\WindowsApps\python3.exe cause
# shit strange error
function setup_python3() {
if (!$manifest['python']) { return $null }
$python_prog, $python_ver = find_prog -name 'python'
if (!$python_prog) {
throw "python $($manifest['python']) required!"
}
$python3_prog, $_ = find_prog -name 'python' -cmd 'python3' -silent $true
if (!$python3_prog) {
$python3_prog = Join-Path (Split-Path $python_prog -Parent) (Split-Path $python_prog -Leaf).Replace('python', 'python3')
create_symlink $python_prog $python3_prog
}
}
# setup glslcc, not add to path
function setup_glslcc() {
if (!$manifest['glslcc']) { return $null }
2023-11-06 00:19:44 +08:00
$glslcc_bin = Join-Path $external_prefix 'glslcc'
$glslcc_prog, $glslcc_ver = find_prog -name 'glslcc' -path $glslcc_bin -mode 'BOTH'
if ($glslcc_prog) {
return $glslcc_prog
}
$suffix = $('win64.zip', 'linux.tar.gz', 'osx{0}.tar.gz').Get($HOST_OS)
2024-05-21 23:40:01 +08:00
if ($IsMacOS) {
if ([System.VersionEx]$glslcc_ver -ge [System.VersionEx]'1.9.4.1') {
$suffix = $suffix -f "-$HOST_CPU"
2024-05-21 23:40:01 +08:00
}
else {
$suffix = $suffix -f ''
}
}
$glscc_base_url = $mirror_current.glslcc
2024-05-24 01:18:30 +08:00
fetch_pkg "$mirror_url_base$glscc_base_url/v$glslcc_ver/glslcc-$glslcc_ver-$suffix" $glslcc_bin
2024-05-24 01:18:30 +08:00
$glslcc_prog = (Join-Path $glslcc_bin "glslcc$EXE_SUFFIX")
2024-05-18 23:30:26 +08:00
if ($1k.isfile($glslcc_prog)) {
$1k.println("Using glslcc: $glslcc_prog, version: $glslcc_ver")
return $glslcc_prog
}
throw "Install glslcc fail"
}
2023-09-13 16:00:33 +08:00
function setup_ninja() {
if (!$manifest['ninja']) { return $null }
$suffix = $('win', 'linux', 'mac').Get($HOST_OS)
2023-11-06 00:19:44 +08:00
$ninja_bin = Join-Path $external_prefix 'ninja'
2023-09-13 16:00:33 +08:00
$ninja_prog, $ninja_ver = find_prog -name 'ninja'
if ($ninja_prog) {
return $ninja_prog
}
$ninja_prog, $ninja_ver = find_prog -name 'ninja' -path $ninja_bin -silent $true
if (!$ninja_prog) {
2024-05-24 01:18:30 +08:00
fetch_pkg "https://github.com/ninja-build/ninja/releases/download/v$ninja_ver/ninja-$suffix.zip" $ninja_bin
2023-09-13 16:00:33 +08:00
}
2024-05-24 01:18:30 +08:00
$1k.addpath($ninja_bin)
$ninja_prog = (Join-Path $ninja_bin "ninja$EXE_SUFFIX")
2024-05-18 23:30:26 +08:00
$1k.println("Using ninja: $ninja_prog, version: $ninja_ver")
2023-09-13 16:00:33 +08:00
return $ninja_prog
}
2023-06-29 19:46:52 +08:00
# setup cmake
2024-04-24 01:39:49 +08:00
function setup_cmake($skipOS = $false, $scope = 'local') {
2023-09-13 16:00:33 +08:00
$cmake_prog, $cmake_ver = find_prog -name 'cmake'
2024-03-22 23:37:16 +08:00
if ($cmake_prog -and (!$skipOS -or $cmake_prog.Contains($myRoot))) {
2024-01-19 20:33:40 +08:00
return $cmake_prog, $cmake_ver
}
2023-11-06 00:19:44 +08:00
$cmake_root = $(Join-Path $external_prefix 'cmake')
$cmake_bin = Join-Path $cmake_root 'bin'
$cmake_prog, $cmake_ver = find_prog -name 'cmake' -path $cmake_bin -mode 'ONLY' -silent $true
if (!$cmake_prog) {
2024-05-18 23:30:26 +08:00
$1k.rmdirs($cmake_root)
2023-06-29 19:46:52 +08:00
$cmake_suffix = @(".zip", ".sh", ".tar.gz").Get($HOST_OS)
if ($HOST_OS -ne $HOST_MAC) {
$cmake_pkg_name = "cmake-$cmake_ver-$HOST_OS_NAME-x86_64"
}
else {
$cmake_pkg_name = "cmake-$cmake_ver-$HOST_OS_NAME-universal"
}
2023-11-06 00:19:44 +08:00
$cmake_pkg_path = Join-Path $external_prefix "$cmake_pkg_name$cmake_suffix"
2024-01-19 00:12:19 +08:00
$assemble_url = $channels['cmake']
if (!$assemble_url) {
$cmake_url = "https://github.com/Kitware/CMake/releases/download/v$cmake_ver/$cmake_pkg_name$cmake_suffix"
}
else {
2024-01-19 00:12:19 +08:00
$cmake_url = & $assemble_url -FileName "$cmake_pkg_name$cmake_suffix"
2023-06-29 19:46:52 +08:00
}
2023-11-06 00:19:44 +08:00
$cmake_dir = Join-Path $external_prefix $cmake_pkg_name
if ($IsMacOS) {
$cmake_app_contents = Join-Path $cmake_dir 'CMake.app/Contents'
}
2024-05-18 23:30:26 +08:00
if (!$1k.isdir($cmake_dir)) {
2024-05-24 01:18:30 +08:00
fetch_pkg $cmake_url
2023-06-29 19:46:52 +08:00
}
2024-05-18 23:30:26 +08:00
if ($1k.isdir($cmake_dir)) {
$cmake_root0 = $cmake_dir
if ($IsMacOS) {
$cmake_app_contents = Join-Path $cmake_dir 'CMake.app/Contents'
2024-05-18 23:30:26 +08:00
if ($1k.isdir($cmake_app_contents)) {
$cmake_root0 = $cmake_app_contents
}
sudo xattr -r -d com.apple.quarantine "$cmake_root0/bin/cmake"
}
2024-05-18 23:30:26 +08:00
$1k.mv($cmake_root0, $cmake_root)
2024-05-18 23:30:26 +08:00
if ($1k.isdir($cmake_dir)) {
$1k.rmdirs($cmake_dir)
}
}
elseif ($IsLinux) {
2024-05-21 23:40:01 +08:00
if ($scope -ne 'global') {
2024-05-18 23:30:26 +08:00
$1k.mkdirs($cmake_root)
2024-04-24 01:39:49 +08:00
& "$cmake_pkg_path" '--skip-license' '--exclude-subdir' "--prefix=$cmake_root" 1>$null 2>$null
2024-05-21 23:40:01 +08:00
}
else {
2024-04-24 01:39:49 +08:00
& "$cmake_pkg_path" '--skip-license' '--prefix=/usr/local' 1>$null 2>$null
}
2024-08-04 09:46:36 +08:00
if (!$?) { Remove-Item $cmake_pkg_path -Force }
2023-06-29 19:46:52 +08:00
}
$cmake_prog, $_ = find_prog -name 'cmake' -path $cmake_bin -silent $true
if (!$cmake_prog) {
2023-07-02 00:53:41 +08:00
throw "Install cmake $cmake_ver fail"
2023-06-29 19:46:52 +08:00
}
2023-12-15 22:29:23 +08:00
2024-05-18 23:30:26 +08:00
$1k.println("Using cmake: $cmake_prog, version: $cmake_ver")
2023-06-29 19:46:52 +08:00
}
2024-05-24 01:18:30 +08:00
$1k.addpath($cmake_bin)
2024-01-19 20:33:40 +08:00
return $cmake_prog, $cmake_ver
2023-09-13 16:00:33 +08:00
}
2023-09-13 16:00:33 +08:00
function ensure_cmake_ninja($cmake_prog, $ninja_prog) {
2023-11-18 13:16:40 +08:00
# ensure ninja in cmake_bin
$cmake_bin = Split-Path $cmake_prog -Parent
$cmake_ninja_prog, $__ = find_prog -name 'ninja' -path $cmake_bin -mode 'ONLY' -silent $true
if (!$cmake_ninja_prog) {
$ninja_symlink_target = Join-Path $cmake_bin (Split-Path $ninja_prog -Leaf)
# try link ninja exist cmake bin directory
create_symlink $ninja_prog $ninja_symlink_target
2023-11-18 13:16:40 +08:00
}
return $?
}
function setup_nsis() {
if (!$manifest['nsis']) { return $null }
2023-11-06 00:19:44 +08:00
$nsis_bin = Join-Path $external_prefix "nsis"
$nsis_prog, $nsis_ver = find_prog -name 'nsis' -cmd 'makensis' -params '/VERSION'
if ($nsis_prog) {
return $nsis_prog
}
$nsis_prog, $nsis_ver = find_prog -name 'nsis' -cmd 'makensis' -params '/VERSION' -path $nsis_bin -silent $true
if (!$nsis_prog) {
2024-05-24 01:18:30 +08:00
fetch_pkg "https://nchc.dl.sourceforge.net/project/nsis/NSIS%203/$nsis_ver/nsis-$nsis_ver.zip" "$nsis_bin-$nsis_ver=$nsis_bin"
}
2024-05-24 01:18:30 +08:00
$1k.addpath($nsis_bin)
$nsis_prog = (Join-Path $nsis_bin "makensis$EXE_SUFFIX")
2024-05-18 23:30:26 +08:00
$1k.println("Using nsis: $nsis_prog, version: $nsis_ver")
return $nsis_prog
}
function setup_nasm() {
if (!$manifest['nasm']) { return $null }
$nasm_prog, $nasm_ver = find_prog -name 'nasm' -path "$external_prefix/nasm" -mode 'BOTH' -silent $true
if (!$nasm_prog) {
2024-04-13 22:11:22 +08:00
if ($IsWin) {
$nasm_bin = Join-Path $external_prefix "nasm-$nasm_ver"
2024-05-18 23:30:26 +08:00
if (!$1k.isdir($nasm_bin)) {
2024-05-24 01:18:30 +08:00
fetch_pkg "https://www.nasm.us/pub/nasm/releasebuilds/$nasm_ver/win64/nasm-$nasm_ver-win64.zip"
}
2024-05-24 03:53:03 +08:00
$1k.addpath($nasm_bin)
}
elseif ($IsLinux) {
if ($(which dpkg)) {
sudo apt install nasm
}
}
elseif ($IsMacOS) {
brew install nasm
}
}
$nasm_prog, $nasm_ver = find_prog -name 'nasm' -path "$external_prefix/nasm" -mode 'BOTH' -silent $true
if ($nasm_prog) {
2024-05-18 23:30:26 +08:00
$1k.println("Using nasm: $nasm_prog, version: $nasm_ver")
}
}
function setup_jdk() {
if (!$manifest['jdk']) { return $null }
2024-03-24 05:11:41 +08:00
$arch_suffix = if ($HOST_CPU -eq 'x64') { 'x64' } else { 'aarch64' }
$suffix = $("windows-$arch_suffix.zip", "linux-$arch_suffix.tar.gz", "macOS-$arch_suffix.tar.gz").Get($HOST_OS)
2023-07-02 00:53:41 +08:00
$javac_prog, $jdk_ver = find_prog -name 'jdk' -cmd 'javac'
if ($javac_prog) {
2023-07-02 00:53:41 +08:00
return $javac_prog
}
2023-11-06 00:19:44 +08:00
$jdk_root = Join-Path $external_prefix "jdk"
2023-11-18 13:16:40 +08:00
$java_home = if (!$IsMacOS) { $jdk_root } else { Join-Path $jdk_root 'Contents/Home' }
$jdk_bin = Join-Path $java_home 'bin'
2023-12-15 22:29:23 +08:00
$javac_prog, $jdk_ver = find_prog -name 'jdk' -cmd 'javac' -path $jdk_bin -silent $true
if (!$javac_prog) {
2024-05-24 01:18:30 +08:00
fetch_pkg "https://aka.ms/download-jdk/microsoft-jdk-$jdk_ver-$suffix" "jdk-$jdk_ver+*=jdk"
}
$env:JAVA_HOME = $java_home
2023-07-02 00:53:41 +08:00
$env:CLASSPATH = ".;$java_home\lib\dt.jar;$java_home\lib\tools.jar"
2024-05-24 01:18:30 +08:00
$1k.addpath($jdk_bin)
2023-09-22 18:54:36 +08:00
$javac_prog = find_prog -name 'jdk' -cmd 'javac' -path $jdk_bin -mode 'ONLY' -silent $true
if (!$javac_prog) {
throw "Install jdk $jdk_ver fail"
}
2024-05-18 23:30:26 +08:00
$1k.println("Using jdk: $javac_prog, version: $jdk_ver")
2023-07-06 12:18:33 +08:00
return $javac_prog
}
2024-05-22 21:42:04 +08:00
function setup_7z() {
# ensure 7z_prog
$7z_cmd_info = Get-Command '7z' -ErrorAction SilentlyContinue
if (!$7z_cmd_info) {
if ($IsWin) {
2024-05-24 01:18:30 +08:00
$7z_prog = Join-Path $external_prefix '7z2301-x64/7z.exe'
2024-05-22 21:42:04 +08:00
if (!$1k.isfile($7z_prog)) {
2024-05-24 01:18:30 +08:00
fetch_pkg $(devtool_url '7z2301-x64.zip')
2024-05-22 21:42:04 +08:00
}
2024-05-24 01:18:30 +08:00
$7z_bin = Split-Path $7z_prog -Parent
$1k.addpath($7z_bin)
2024-05-22 21:42:04 +08:00
}
elseif ($IsLinux) {
if ($(which dpkg)) { sudo apt install p7zip-full }
}
elseif ($IsMacOS) {
brew install p7zip
}
$7z_cmd_info = Get-Command '7z' -ErrorAction SilentlyContinue
if (!$7z_cmd_info) {
throw "setup 7z fail"
}
}
}
function setup_llvm() {
if (!$manifest.Contains('llvm')) { return $null }
$clang_prog, $clang_ver = find_prog -name 'llvm' -cmd "clang"
if (!$clang_prog) {
2023-11-06 00:19:44 +08:00
$llvm_root = Join-Path $external_prefix 'LLVM'
$llvm_bin = Join-Path $llvm_root 'bin'
$clang_prog, $clang_ver = find_prog -name 'llvm' -cmd "clang" -path $llvm_bin -silent $true
2023-11-18 13:16:40 +08:00
if (!$clang_prog) {
2024-05-22 21:42:04 +08:00
setup_7z
2024-05-24 01:18:30 +08:00
fetch_pkg "https://github.com/llvm/llvm-project/releases/download/llvmorg-${clang_ver}/LLVM-${clang_ver}-win64.exe" 'LLVM'
$clang_prog, $clang_ver = find_prog -name 'llvm' -cmd "clang" -path $llvm_bin -silent $true
2023-11-18 13:16:40 +08:00
if (!$clang_prog) {
throw "setup $clang_ver fail"
}
}
2024-05-24 01:18:30 +08:00
$1k.addpath($llvm_bin)
2024-05-18 23:30:26 +08:00
$1k.println("Using llvm: $clang_prog, version: $clang_ver")
2023-08-25 16:57:38 +08:00
}
2023-06-29 19:46:52 +08:00
}
function setup_android_sdk() {
if (!$manifest['ndk']) { return $null }
2023-06-29 19:46:52 +08:00
$ndk_ver = $TOOLCHAIN_VER
if (!$ndk_ver) {
2023-07-02 00:53:41 +08:00
$ndk_ver = $manifest['ndk']
2023-06-29 19:46:52 +08:00
}
$IsGraterThan = if ($ndk_ver.EndsWith('+')) { '+' } else { $null }
if ($IsGraterThan) {
2023-06-29 19:46:52 +08:00
$ndk_ver = $ndk_ver.Substring(0, $ndk_ver.Length - 1)
}
2023-11-06 00:19:44 +08:00
$my_sdk_root = Join-Path $external_prefix 'adt/sdk'
$sdk_dirs = @("$env:ANDROID_HOME", "$env:ANDROID_SDK_ROOT", $my_sdk_root)
2023-06-29 19:46:52 +08:00
$ndk_minor_base = [int][char]'a'
2023-12-15 22:29:23 +08:00
2023-06-29 19:46:52 +08:00
# looking up require ndk installed in exists sdk roots
$sdk_root = $null
foreach ($sdk_dir in $sdk_dirs) {
2024-05-18 23:30:26 +08:00
if (!$sdk_dir -or !$1k.isdir($sdk_dir)) {
continue
}
2024-05-18 23:30:26 +08:00
$1k.println("Looking require $ndk_ver$IsGraterThan in $sdk_dir")
$sdk_root = $sdk_dir
$ndk_root = $null
$ndk_major = ($ndk_ver -replace '[^0-9]', '')
$ndk_minor_off = "$ndk_major".Length + 1
$ndk_minor = if ($ndk_minor_off -lt $ndk_ver.Length) { "$([int][char]$ndk_ver.Substring($ndk_minor_off) - $ndk_minor_base)" } else { '0' }
$ndk_rev_base = "$ndk_major.$ndk_minor"
$ndk_parent = Join-Path $sdk_dir 'ndk'
2024-05-18 23:30:26 +08:00
if (!$1k.isdir($ndk_parent)) {
continue
}
# find ndk in sdk
$ndks = [ordered]@{}
$ndk_rev_max = '0.0'
foreach ($item in $(Get-ChildItem -Path "$ndk_parent")) {
$ndkDir = $item.FullName
$sourceProps = "$ndkDir/source.properties"
2024-05-18 23:30:26 +08:00
if ($1k.isfile($sourceProps)) {
$verLine = $(Get-Content $sourceProps | Select-Object -Index 1)
$ndk_rev = $($verLine -split '=').Trim()[1].split('.')[0..1] -join '.'
$ndks.Add($ndk_rev, $ndkDir)
if ($ndk_rev_max -le $ndk_rev) {
$ndk_rev_max = $ndk_rev
2023-06-29 19:46:52 +08:00
}
}
}
if ($IsGraterThan) {
if ($ndk_rev_max -ge $ndk_rev_base) {
$ndk_root = $ndks[$ndk_rev_max]
2023-06-29 19:46:52 +08:00
}
}
else {
$ndk_root = $ndks[$ndk_rev_base]
}
2023-06-29 19:46:52 +08:00
if ($null -ne $ndk_root) {
2024-05-18 23:30:26 +08:00
$1k.println("Found $ndk_root in $sdk_root ...")
break
2023-06-29 19:46:52 +08:00
}
}
2024-05-18 23:30:26 +08:00
if (!$1k.isdir("$ndk_root")) {
2023-07-02 00:53:41 +08:00
$sdkmanager_prog, $sdkmanager_ver = $null, $null
2024-05-18 23:30:26 +08:00
if ($1k.isdir($sdk_root)) {
2023-11-12 19:54:03 +08:00
$cmdlinetools_bin = Join-Path $sdk_root 'cmdline-tools/latest/bin'
$sdkmanager_prog, $sdkmanager_ver = (find_prog -name 'cmdlinetools' -cmd 'sdkmanager' -path $cmdlinetools_bin -params "--version", "--sdk_root=$sdk_root")
2023-07-02 00:53:41 +08:00
}
else {
2023-11-06 00:19:44 +08:00
$sdk_root = Join-Path $external_prefix 'adt/sdk'
2024-05-18 23:30:26 +08:00
if (!$1k.isdir($sdk_root)) {
$1k.mkdirs($sdk_root)
2023-07-02 00:53:41 +08:00
}
2023-06-29 19:46:52 +08:00
}
if (!$sdkmanager_prog) {
2023-11-12 19:54:03 +08:00
$cmdlinetools_bin = Join-Path $external_prefix 'cmdline-tools/bin'
$sdkmanager_prog, $sdkmanager_ver = (find_prog -name 'cmdlinetools' -cmd 'sdkmanager' -path $cmdlinetools_bin -params "--version", "--sdk_root=$sdk_root")
2023-06-29 19:46:52 +08:00
$suffix = $('win', 'linux', 'mac').Get($HOST_OS)
if (!$sdkmanager_prog) {
2024-05-18 23:30:26 +08:00
$1k.println("Installing cmdlinetools version: $sdkmanager_ver ...")
2023-07-02 00:53:41 +08:00
$cmdlinetools_pkg_name = "commandlinetools-$suffix-$($cmdlinetools_rev)_latest.zip"
2023-11-06 00:19:44 +08:00
$cmdlinetools_pkg_path = Join-Path $external_prefix $cmdlinetools_pkg_name
2023-06-29 19:46:52 +08:00
$cmdlinetools_url = "https://dl.google.com/android/repository/$cmdlinetools_pkg_name"
download_file $cmdlinetools_url $cmdlinetools_pkg_path
2023-11-06 00:19:44 +08:00
Expand-Archive -Path $cmdlinetools_pkg_path -DestinationPath "$external_prefix/"
2023-11-12 19:54:03 +08:00
$sdkmanager_prog, $_ = (find_prog -name 'cmdlinetools' -cmd 'sdkmanager' -path $cmdlinetools_bin -params "--version", "--sdk_root=$sdk_root" -silent $True)
2023-06-29 19:46:52 +08:00
if (!$sdkmanager_prog) {
2023-07-02 00:53:41 +08:00
throw "Install cmdlinetools version: $sdkmanager_ver fail"
2023-06-29 19:46:52 +08:00
}
}
}
$matchInfos = (exec_prog -prog $sdkmanager_prog -params "--sdk_root=$sdk_root", '--list' | Select-String 'ndk;')
2023-06-29 19:46:52 +08:00
if ($null -ne $matchInfos -and $matchInfos.Count -gt 0) {
2024-05-18 23:30:26 +08:00
$1k.println("Not found suitable android ndk, installing ...")
2023-06-30 17:26:24 +08:00
2023-06-29 19:46:52 +08:00
$ndks = @{}
foreach ($matchInfo in $matchInfos) {
2023-06-29 19:46:52 +08:00
$fullVer = $matchInfo.Line.Trim().Split(' ')[0] # "ndk;23.2.8568313"
$verNums = $fullVer.Split(';')[1].Split('.')
$ndkVer = 'r'
$ndkVer += $verNums[0]
$ndk_minor = [int]$verNums[1]
if ($ndk_minor -gt 0) {
$ndkVer += [char]($ndk_minor_base + $ndk_minor)
}
if (!$ndks.Contains($ndkVer)) {
$ndks.Add($ndkVer, $fullVer)
}
}
$ndkFullVer = $ndks[$ndk_ver]
((1..10 | ForEach-Object { "yes"; Start-Sleep -Milliseconds 100 }) | . $sdkmanager_prog --licenses --sdk_root=$sdk_root) | Out-Host
if (!$ndkOnly) {
exec_prog -prog $sdkmanager_prog -params '--verbose', "--sdk_root=$sdk_root", 'platform-tools', 'cmdline-tools;latest', "platforms;$($android_sdk_tools['platforms'])", "build-tools;$($android_sdk_tools['build-tools'])", $ndkFullVer | Out-Host
}
else {
exec_prog -prog $sdkmanager_prog -params '--verbose', "--sdk_root=$sdk_root", $ndkFullVer | Out-Host
}
2023-06-29 19:46:52 +08:00
$fullVer = $ndkFullVer.Split(';')[1]
$ndk_root = (Resolve-Path -Path "$sdk_root/ndk/$fullVer").Path
}
}
return $sdk_root, $ndk_root
2023-06-29 19:46:52 +08:00
}
# enable emsdk emcmake
function setup_emsdk() {
2023-11-18 13:16:40 +08:00
$emcc_prog, $emcc_ver = find_prog -name 'emsdk' -cmd 'emcc' -silent $true
if (!$emcc_prog) {
# no suitable emcc toolchain found, use official emsdk to setup
2024-05-18 23:30:26 +08:00
$1k.println('Not found emcc toolchain in $env:PATH, setup emsdk ...')
2023-11-18 13:16:40 +08:00
$emsdk_cmd = (Get-Command emsdk -ErrorAction SilentlyContinue)
if (!$emsdk_cmd) {
$emsdk_root = Join-Path $external_prefix 'emsdk'
2024-05-18 23:30:26 +08:00
if (!$1k.isdir($emsdk_root)) {
2023-11-18 13:16:40 +08:00
git clone 'https://github.com/emscripten-core/emsdk.git' $emsdk_root
}
else {
git -C $emsdk_root pull
}
}
else {
2023-11-18 13:16:40 +08:00
$emsdk_root = Split-Path $emsdk_cmd.Source -Parent
}
$emcmake = (Get-Command emcmake -ErrorAction SilentlyContinue)
if (!$emcmake) {
Push-Location $emsdk_root
2024-05-24 01:26:58 +08:00
./emsdk install $emcc_ver
./emsdk activate $emcc_ver
2023-11-18 13:16:40 +08:00
. ./emsdk_env.ps1
Pop-Location
}
}
else {
2024-05-18 23:30:26 +08:00
$1k.println("Using emcc: $emcc_prog, version: $emcc_ver")
}
}
2024-01-12 00:27:16 +08:00
function setup_msvc() {
2024-01-12 01:25:37 +08:00
$cl_prog, $cl_ver = find_prog -name 'msvc' -cmd 'cl' -silent $true -usefv $true
if (!$cl_prog) {
2024-01-12 00:27:16 +08:00
if ($VS_INST) {
Import-Module "$VS_PATH\Common7\Tools\Microsoft.VisualStudio.DevShell.dll"
2024-07-27 00:22:28 +08:00
$dev_cmd_args = "-arch=$target_cpu -host_arch=x64 -no_logo"
if (!$manifest['msvc'].EndsWith('+')) { $dev_cmd_args += " -vcvars_ver=$cl_ver" }
Enter-VsDevShell -VsInstanceId $VS_INST.instanceId -SkipAutomaticLocation -DevCmdArguments $dev_cmd_args
2024-01-12 01:25:37 +08:00
$cl_prog, $cl_ver = find_prog -name 'msvc' -cmd 'cl' -silent $true -usefv $true
2024-05-18 23:30:26 +08:00
$1k.println("Using msvc: $cl_prog, version: $cl_ver")
}
else {
throw "Visual Studio not installed!"
}
}
# msvc14x support
if ($Script:use_msvcr14x) {
2024-03-22 23:37:16 +08:00
if (!"$env:LIB".Contains('msvcr14x')) {
$msvcr14x_root = $env:msvcr14x_ROOT
$env:Platform = $target_cpu
Invoke-Expression -Command "$msvcr14x_root\msvcr14x_nmake.ps1"
}
println "LIB=$env:LIB"
}
}
2024-04-27 23:32:27 +08:00
function setup_xcode() {
$xcode_prog, $xcode_ver = find_prog -name 'xcode' -cmd "xcodebuild" -params @('-version')
if (!$xcode_prog) {
throw "Missing Xcode, please install"
}
}
# google gn build system, current windows only for build angleproject/dawn on windows
function setup_gclient() {
$OutputEncoding = [console]::InputEncoding = [console]::OutputEncoding = New-Object System.Text.UTF8Encoding
if (!$ninja_prog) {
$ninja_prog = setup_ninja
}
2024-01-12 00:27:16 +08:00
if ($Global:is_win_family) {
setup_msvc
}
setup_python3
# setup gclient tool
# download depot_tools
# git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git $gclient_dir
$gclient_dir = Join-Path $external_prefix 'depot_tools'
2024-05-18 23:30:26 +08:00
if (!$1k.isdir($gclient_dir)) {
if ($IsWin) {
2024-05-18 23:30:26 +08:00
$1k.mkdirs($gclient_dir)
Invoke-WebRequest -Uri "https://storage.googleapis.com/chrome-infra/depot_tools.zip" -OutFile "${gclient_dir}.zip"
Expand-Archive -Path "${gclient_dir}.zip" -DestinationPath $gclient_dir
}
else {
git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git $gclient_dir
}
2024-01-12 01:25:37 +08:00
}
2024-05-24 01:18:30 +08:00
$1k.addpath($gclient_dir, $true)
$env:DEPOT_TOOLS_WIN_TOOLCHAIN = 0
}
2024-01-12 00:27:16 +08:00
#
# Find latest installed: Visual Studio 12 2013 +
# installationVersion
# instanceId EnterDevShell can use it
# result:
# $Global:VS_VERSION
# $Global:VS_INST
# $Global:VS_PATH
#
$Global:VS_VERSION = $null
$Global:VS_PATH = $null
$Global:VS_INST = $null
function find_vs_latest() {
2024-01-19 00:12:19 +08:00
$vs_version = [VersionEx]'12.0'
2024-01-12 00:27:16 +08:00
if (!$Global:VS_INST) {
$VSWHERE_EXE = "${env:ProgramFiles(x86)}\Microsoft Visual Studio\Installer\vswhere.exe"
$eap = $ErrorActionPreference
$ErrorActionPreference = 'SilentlyContinue'
$vs_installs = ConvertFrom-Json "$(&$VSWHERE_EXE -version '12.0' -format 'json')"
$ErrorActionPreference = $eap
if ($vs_installs) {
2024-01-12 00:27:16 +08:00
$vs_inst_latest = $null
foreach ($vs_inst in $vs_installs) {
2024-01-19 00:12:19 +08:00
$inst_ver = [VersionEx]$vs_inst.installationVersion
2024-01-12 00:27:16 +08:00
if ($vs_version -lt $inst_ver) {
$vs_version = $inst_ver
$vs_inst_latest = $vs_inst
}
}
$Global:VS_PATH = $vs_inst_latest.installationPath
$Global:VS_INST = $vs_inst_latest
}
}
$Global:VS_VERSION = $vs_version
}
2023-12-15 22:29:23 +08:00
# preprocess methods:
2023-06-29 19:46:52 +08:00
# <param>-inputOptions</param> [CMAKE_OPTIONS]
function preprocess_win([string[]]$inputOptions) {
$outputOptions = $inputOptions
2023-08-30 08:34:33 +08:00
if ($options.sdk) {
$outputOptions += "-DCMAKE_SYSTEM_VERSION=$($options.sdk)"
2023-07-02 21:23:56 +08:00
}
if ($Global:is_msvc) {
# Generate vs2019 on github ci
2023-06-29 19:46:52 +08:00
# Determine arch name
$arch = if ($options.a -eq 'x86') { 'Win32' } else { $options.a }
2023-06-29 19:46:52 +08:00
# arch
2024-01-19 00:12:19 +08:00
if ($VS_VERSION -ge [VersionEx]'16.0') {
2023-06-29 19:46:52 +08:00
$outputOptions += '-A', $arch
if ($TOOLCHAIN_VER) {
$outputOptions += "-Tv$TOOLCHAIN_VER"
}
}
else {
$gens = @{
'120' = 'Visual Studio 12 2013';
'140' = 'Visual Studio 14 2015'
"150" = 'Visual Studio 15 2017';
}
2023-11-29 23:19:04 +08:00
$Script:cmake_generator = $gens[$TOOLCHAIN_VER]
if (!$Script:cmake_generator) {
2023-06-29 19:46:52 +08:00
throw "Unsupported toolchain: $TOOLCHAIN"
}
if ($options.a -eq "x64") {
2023-11-29 23:19:04 +08:00
$Script:cmake_generator += ' Win64'
2023-06-29 19:46:52 +08:00
}
}
2023-12-15 22:29:23 +08:00
2023-06-29 19:46:52 +08:00
# platform
2024-01-12 00:27:16 +08:00
if ($Global:is_winrt) {
$outputOptions += '-DCMAKE_SYSTEM_NAME=WindowsStore', '-DCMAKE_SYSTEM_VERSION=10.0'
if ($Global:target_minsdk) {
$outputOptions += "-DCMAKE_VS_WINDOWS_TARGET_PLATFORM_MIN_VERSION=$Global:target_minsdk"
}
2023-06-29 19:46:52 +08:00
}
if ($options.dll) {
$outputOptions += '-DBUILD_SHARED_LIBS=TRUE'
}
}
elseif ($Global:is_clang) {
2023-11-06 00:19:44 +08:00
$outputOptions += '-DCMAKE_C_COMPILER=clang', '-DCMAKE_CXX_COMPILER=clang++'
2023-11-29 23:19:04 +08:00
$Script:cmake_generator = 'Ninja Multi-Config'
2023-06-29 19:46:52 +08:00
}
else {
# Generate mingw
2023-11-29 23:19:04 +08:00
$Script:cmake_generator = 'Ninja Multi-Config'
2023-06-29 19:46:52 +08:00
}
return $outputOptions
}
function preprocess_linux([string[]]$inputOptions) {
$outputOptions = $inputOptions
if ($Global:is_clang) {
$outputOptions += '-DCMAKE_C_COMPILER=clang', '-DCMAKE_CXX_COMPILER=clang++'
}
2023-06-29 19:46:52 +08:00
return $outputOptions
}
2023-07-02 00:53:41 +08:00
$ninja_prog = $null
2024-03-22 23:37:16 +08:00
$is_gradlew = $options.xt.Contains('gradlew')
2023-06-29 19:46:52 +08:00
function preprocess_andorid([string[]]$inputOptions) {
$outputOptions = $inputOptions
$t_archs = @{arm64 = 'arm64-v8a'; armv7 = 'armeabi-v7a'; x64 = 'x86_64'; x86 = 'x86'; }
2023-06-29 19:46:52 +08:00
2023-08-30 08:34:33 +08:00
if ($is_gradlew) {
if ($options.a.GetType() -eq [object[]]) {
$archlist = [string[]]$options.a
}
else {
$archlist = $options.a.Split(';')
}
for ($i = 0; $i -lt $archlist.Count; ++$i) {
$arch = $archlist[$i]
$archlist[$i] = $t_archs[$arch]
}
2023-12-15 22:29:23 +08:00
$archs = $archlist -join ':' # TODO: modify gradle, split by ';'
2024-01-19 20:33:40 +08:00
$outputOptions += "-P__1K_CMAKE_VERSION=$($Script:cmake_ver.TrimLast('-'))"
2023-12-15 22:29:23 +08:00
$outputOptions += "-P__1K_ARCHS=$archs"
$outputOptions += '--parallel', '--info'
2023-06-29 19:46:52 +08:00
}
else {
2023-11-18 13:16:40 +08:00
if (!$ndk_root) {
2023-11-06 00:19:44 +08:00
throw "ndk_root not specified!"
}
$cmake_toolchain_file = Join-Path $ndk_root 'build/cmake/android.toolchain.cmake'
$arch = $t_archs[$options.a]
2023-11-06 00:19:44 +08:00
$outputOptions += "-DCMAKE_TOOLCHAIN_FILE=$cmake_toolchain_file", "-DANDROID_ABI=$arch"
# If set to ONLY, then only the roots in CMAKE_FIND_ROOT_PATH will be searched
# If set to BOTH, then the host system paths and the paths in CMAKE_FIND_ROOT_PATH will be searched
# If set to NEVER, then the roots in CMAKE_FIND_ROOT_PATH will be ignored and only the host system root will be used
# CMAKE_FIND_ROOT_PATH is preferred for additional search directories when cross-compiling
# $outputOptions += '-DCMAKE_FIND_ROOT_PATH_MODE_PACKAGE=BOTH'
# $outputOptions += '-DCMAKE_FIND_ROOT_PATH_MODE_INCLUDE=BOTH'
# $outputOptions += '-DCMAKE_FIND_ROOT_PATH_MODE_LIBRARY=BOTH'
# by default, we want find host program only when cross-compiling
$outputOptions += '-DCMAKE_FIND_ROOT_PATH_MODE_PROGRAM=NEVER'
2023-06-29 19:46:52 +08:00
}
2023-12-15 22:29:23 +08:00
2023-06-29 19:46:52 +08:00
return $outputOptions
}
function preprocess_osx([string[]]$inputOptions) {
$outputOptions = $inputOptions
$arch = $options.a
if ($arch -eq 'x64') {
$arch = 'x86_64'
}
2023-11-06 00:19:44 +08:00
$outputOptions += "-DCMAKE_OSX_ARCHITECTURES=$arch"
if ($Global:target_minsdk) {
$outputOptions += "-DCMAKE_OSX_DEPLOYMENT_TARGET=$Global:target_minsdk"
}
2023-06-29 19:46:52 +08:00
return $outputOptions
}
# build ios famliy (ios,tvos,watchos)
function preprocess_ios([string[]]$inputOptions) {
$outputOptions = $inputOptions
$arch = $options.a
if ($arch -eq 'x64') {
$arch = 'x86_64'
}
2023-11-18 13:16:40 +08:00
if (!$cmake_toolchain_file) {
2023-11-06 00:19:44 +08:00
$cmake_toolchain_file = Join-Path $myRoot 'ios.cmake'
$outputOptions += "-DCMAKE_TOOLCHAIN_FILE=$cmake_toolchain_file", "-DARCHS=$arch"
if ($Global:is_tvos) {
2023-11-06 00:19:44 +08:00
$outputOptions += '-DPLAT=tvOS'
}
elseif ($Global:is_watchos) {
2023-11-06 00:19:44 +08:00
$outputOptions += '-DPLAT=watchOS'
}
if ($Global:is_ios_sim) {
2024-04-01 22:37:05 +08:00
$outputOptions += '-DSIMULATOR=TRUE'
}
2023-06-29 19:46:52 +08:00
}
return $outputOptions
}
function preprocess_wasm([string[]]$inputOptions) {
2024-04-13 22:11:22 +08:00
if ($options.p -eq 'wasm64') { $inputOptions += '-DCMAKE_C_FLAGS="-Wno-experimental -sMEMORY64"', '-DCMAKE_CXX_FLAGS="-Wno-experimental -sMEMORY64"', '-DEMSCRIPTEN_SYSTEM_PROCESSOR=x86_64' }
return $inputOptions
}
2023-06-29 19:46:52 +08:00
function validHostAndToolchain() {
$appleTable = @{
'host' = @{'macos' = $True };
'toolchain' = @{'clang' = $True; };
2023-06-29 19:46:52 +08:00
};
$validTable = @{
'win32' = @{
'host' = @{'windows' = $True };
2023-09-28 13:07:09 +08:00
'toolchain' = @{'msvc' = $True; 'clang' = $True; 'gcc' = $True };
2023-06-29 19:46:52 +08:00
};
'winrt' = @{
'host' = @{'windows' = $True };
2023-06-29 19:46:52 +08:00
'toolchain' = @{'msvc' = $True; };
};
'linux' = @{
'host' = @{'linux' = $True };
'toolchain' = @{'gcc' = $True; 'clang' = $True };
2023-06-29 19:46:52 +08:00
};
'android' = @{
'host' = @{'windows' = $True; 'linux' = $True; 'macos' = $True };
'toolchain' = @{'clang' = $True; };
2023-06-29 19:46:52 +08:00
};
'osx' = $appleTable;
'ios' = $appleTable;
'tvos' = $appleTable;
2023-06-29 19:46:52 +08:00
'watchos' = $appleTable;
'wasm' = @{
'host' = @{'windows' = $True; 'linux' = $True; 'macos' = $True };
'toolchain' = @{'clang' = $True; };
};
2024-04-13 22:11:22 +08:00
'wasm64' = @{
'host' = @{'windows' = $True; 'linux' = $True; 'macos' = $True };
'toolchain' = @{'clang' = $True; };
};
2023-06-29 19:46:52 +08:00
}
2023-11-06 00:19:44 +08:00
$validInfo = $validTable[$TARGET_OS]
2023-06-29 19:46:52 +08:00
$validOS = $validInfo.host[$HOST_OS_NAME]
if (!$validOS) {
2023-11-06 00:19:44 +08:00
throw "Can't build target $TARGET_OS on $HOST_OS_NAME"
2023-06-29 19:46:52 +08:00
}
$validToolchain = $validInfo.toolchain[$TOOLCHAIN_NAME]
if (!$validToolchain) {
2023-11-06 00:19:44 +08:00
throw "Can't build target $TARGET_OS with toolchain $TOOLCHAIN_NAME"
2023-06-29 19:46:52 +08:00
}
}
2023-12-15 22:29:23 +08:00
$proprocessTable = @{
'win32' = ${function:preprocess_win};
'winrt' = ${function:preprocess_win};
2023-12-15 22:29:23 +08:00
'linux' = ${function:preprocess_linux};
2023-06-29 19:46:52 +08:00
'android' = ${function:preprocess_andorid};
'osx' = ${function:preprocess_osx};
'ios' = ${function:preprocess_ios};
'tvos' = ${function:preprocess_ios};
2023-06-29 19:46:52 +08:00
'watchos' = ${function:preprocess_ios};
'wasm' = ${Function:preprocess_wasm};
2024-04-13 22:11:22 +08:00
'wasm64' = ${Function:preprocess_wasm};
2023-06-29 19:46:52 +08:00
}
validHostAndToolchain
########## setup build tools if not installed #######
$null = setup_glslcc
2023-07-06 12:18:33 +08:00
$cmake_prog, $Script:cmake_ver = setup_cmake
if ($Global:is_win_family) {
2024-01-12 00:27:16 +08:00
find_vs_latest
2023-07-02 00:53:41 +08:00
$nuget_prog = setup_nuget
2023-09-23 11:33:12 +08:00
}
if ($Global:is_win32) {
$nsis_prog = setup_nsis
if (!$Global:is_msvc) {
2023-09-13 16:00:33 +08:00
$ninja_prog = setup_ninja
2023-09-28 13:07:09 +08:00
}
if ($Global:is_clang) {
$null = setup_llvm
2023-06-29 19:46:52 +08:00
}
}
elseif ($Global:is_android) {
2023-09-13 16:00:33 +08:00
$ninja_prog = setup_ninja
2024-01-19 00:12:19 +08:00
# ensure ninja in cmake_bin
if (!(ensure_cmake_ninja $cmake_prog $ninja_prog)) {
$cmake_prog, $Script:cmake_ver = setup_cmake -Force
2024-01-19 00:12:19 +08:00
if (!(ensure_cmake_ninja $cmake_prog $ninja_prog)) {
2024-05-18 23:30:26 +08:00
$1k.println("Ensure ninja in cmake bin directory fail")
2024-01-19 00:12:19 +08:00
}
}
$null = setup_jdk # setup android sdk cmdlinetools require jdk
$sdk_root, $ndk_root = setup_android_sdk
$env:ANDROID_HOME = $sdk_root
$env:ANDROID_NDK = $ndk_root
2024-01-07 00:13:11 +08:00
# sync ndk env vars for some library required, i.e. will fix openssl issues:
# no NDK xxx-linux-android-gcc on $PATH at (eval 10) line 142.
# Note: github action vm also have follow env vars
$env:ANDROID_NDK_HOME = $ndk_root
$env:ANDROID_NDK_ROOT = $ndk_root
2024-01-09 01:07:05 +08:00
$ndk_host = @('windows', 'linux', 'darwin').Get($HOST_OS)
2024-01-07 00:13:11 +08:00
$env:ANDROID_NDK_BIN = Join-Path $ndk_root "toolchains/llvm/prebuilt/$ndk_host-x86_64/bin"
function active_ndk_toolchain() {
2024-05-24 01:18:30 +08:00
$1k.addpath($env:ANDROID_NDK_BIN)
2024-01-07 00:13:11 +08:00
$clang_prog, $clang_ver = find_prog -name 'clang'
}
2023-06-29 19:46:52 +08:00
}
elseif ($Global:is_wasm) {
2023-09-26 14:10:46 +08:00
$ninja_prog = setup_ninja
. setup_emsdk
}
2023-06-29 19:46:52 +08:00
$is_host_target = $Global:is_win32 -or $Global:is_linux -or $Global:is_mac
2023-08-30 08:34:33 +08:00
if (!$setupOnly) {
2024-01-12 00:27:16 +08:00
$BUILD_DIR = $null
2024-05-20 23:46:48 +08:00
$SOURCE_DIR = $null
2024-01-12 00:27:16 +08:00
2024-05-22 01:23:28 +08:00
function resolve_out_dir($prefix) {
2024-01-12 00:27:16 +08:00
if ($is_host_target) {
$out_dir = "${prefix}${TARGET_CPU}"
2024-01-12 00:27:16 +08:00
}
else {
$out_dir = "${prefix}${TARGET_OS}"
2024-01-12 00:27:16 +08:00
if ($TARGET_CPU -ne '*') {
$out_dir += "_$TARGET_CPU"
}
}
2024-04-02 22:31:34 +08:00
if ($Global:is_ios_sim) {
2024-04-01 22:37:05 +08:00
$out_dir += $Global:darwin_sim_suffix
}
2024-05-18 23:30:26 +08:00
return $1k.realpath($out_dir)
2024-01-12 00:27:16 +08:00
}
2023-07-06 12:18:33 +08:00
$stored_cwd = $(Get-Location).Path
if ($options.d) {
Set-Location $options.d
}
2023-06-29 19:46:52 +08:00
2024-03-22 23:37:16 +08:00
# parsing build optimize flag from build_options
$buildOptions = [array]$options.xb
$nopts = $buildOptions.Count
$optimize_flag = $null
if ($options.O -ne -1) {
$optimize_flag = @('Debug', 'MinSizeRel', 'RelWithDebInfo', 'Release')[$options.O]
}
2024-06-08 21:37:52 +08:00
$evaluated_build_args = @()
2024-03-22 23:37:16 +08:00
for ($i = 0; $i -lt $nopts; ++$i) {
$optv = $buildOptions[$i]
switch ($optv) {
'--config' {
$optimize_flag = $buildOptions[$i++ + 1]
}
'--target' {
$cmake_target = $buildOptions[$i++ + 1]
}
2024-06-08 21:37:52 +08:00
default {
$evaluated_build_args += $optv
}
}
2024-03-22 23:37:16 +08:00
}
2024-03-22 23:37:16 +08:00
if ($options.xt -ne 'gn') {
2024-06-08 21:37:52 +08:00
$BUILD_ALL_OPTIONS = $evaluated_build_args
2023-11-06 00:19:44 +08:00
if (!$optimize_flag) {
2024-05-22 01:23:28 +08:00
$optimize_flag = 'Release'
}
$BUILD_ALL_OPTIONS += '--config', $optimize_flag
# enter building steps
2024-05-18 23:30:26 +08:00
$1k.println("Building target $TARGET_OS on $HOST_OS_NAME with toolchain $TOOLCHAIN ...")
2023-06-29 19:46:52 +08:00
# step1. preprocess cross make options
$CONFIG_ALL_OPTIONS = [array]$(& $proprocessTable[$TARGET_OS] -inputOptions @() )
2023-06-29 19:46:52 +08:00
if (!$CONFIG_ALL_OPTIONS) {
$CONFIG_ALL_OPTIONS = @()
}
2023-06-29 19:46:52 +08:00
if ($options.u) {
2024-05-17 23:56:54 +08:00
$CONFIG_ALL_OPTIONS += '-D_1KFETCH_UPGRADE=TRUE'
2024-05-21 23:40:01 +08:00
}
else {
2024-05-18 23:30:26 +08:00
$CONFIG_ALL_OPTIONS += '-D_1KFETCH_UPGRADE=FALSE'
2024-04-09 02:42:25 +08:00
}
# determine generator, build_dir, inst_dir for non gradlew projects
if (!$is_gradlew) {
$INST_DIR = $null
$xopt_presets = 0
$xprefix_optname = '-DCMAKE_INSTALL_PREFIX='
$xopts = [array]$options.xc
2024-05-21 23:40:01 +08:00
$evaluated_xopts = @()
for ($opti = 0; $opti -lt $xopts.Count; ++$opti) {
$opt = $xopts[$opti]
if ($opt.StartsWith('-B')) {
2024-05-21 23:40:01 +08:00
if ($opt.Length -gt 2) {
$BUILD_DIR = $opt.Substring(2).Trim()
}
elseif (++$opti -lt $xopts.Count) {
$BUILD_DIR = $xopts[$opti]
}
++$xopt_presets
}
2024-05-21 23:40:01 +08:00
elseif ($opt.StartsWith('-S')) {
if ($opt.Length -gt 2) {
$SOURCE_DIR = $opt.Substring(2).Trim()
}
elseif (++$opti -lt $xopts.Count) {
$SOURCE_DIR = $xopts[$opti]
}
2024-05-20 23:46:48 +08:00
++$xopt_presets
}
2024-06-14 09:00:20 +08:00
elseif ($opt.startsWith('-G')) {
if ($opt.Length -gt 2) {
$cmake_generator = $opt.Substring(2).Trim()
}
elseif (++$opti -lt $xopts.Count) {
$cmake_generator = $xopts[$opti]
}
++$xopt_presets
}
elseif ($opt.StartsWith($xprefix_optname)) {
++$xopt_presets
$INST_DIR = $opt.SubString($xprefix_optname.Length)
}
2024-05-21 23:40:01 +08:00
else {
$evaluated_xopts += $opt
}
2023-07-06 12:18:33 +08:00
}
2024-06-14 09:00:20 +08:00
if (!$cmake_generator -and !$TARGET_OS.StartsWith('win')) {
$cmake_generator = $cmake_generators[$TARGET_OS]
if ($null -eq $cmake_generator) {
$cmake_generator = if (!$IsWin) { 'Unix Makefiles' } else { 'Ninja' }
}
}
if ($cmake_generator) {
$using_ninja = $cmake_generator.StartsWith('Ninja')
if (!$is_wasm) {
$CONFIG_ALL_OPTIONS += '-G', $cmake_generator
}
if ($cmake_generator -eq 'Unix Makefiles' -or $using_ninja) {
$CONFIG_ALL_OPTIONS += "-DCMAKE_BUILD_TYPE=$optimize_flag"
}
if ($using_ninja -and $Global:is_android) {
$CONFIG_ALL_OPTIONS += "-DCMAKE_MAKE_PROGRAM=$ninja_prog"
}
if ($cmake_generator -eq 'Xcode') {
setup_xcode
}
}
if (!$BUILD_DIR) {
2024-05-22 01:23:28 +08:00
$BUILD_DIR = resolve_out_dir 'build_'
2023-11-06 00:19:44 +08:00
}
if (!$INST_DIR) {
2024-05-22 01:23:28 +08:00
$INST_DIR = resolve_out_dir 'install_'
2023-11-06 00:19:44 +08:00
}
if ($rebuild) {
2024-05-18 23:30:26 +08:00
$1k.rmdirs($BUILD_DIR)
$1k.rmdirs($INST_DIR)
}
2023-11-06 00:19:44 +08:00
}
else {
# android gradle
# replace all cmake config options -DXXX to -P_1K_XXX
2024-05-21 23:40:01 +08:00
$evaluated_xopts = @()
foreach ($opt in $options.xc) {
if ($opt.startsWith('-D')) {
2024-05-21 23:40:01 +08:00
$evaluated_xopts += "-P_1K_$($opt.substring(2))"
}
elseif ($opt.startsWith('-P')) {
2024-05-21 23:40:01 +08:00
$evaluated_xopts += $opt
} # ignore unknown option type
2023-12-15 22:29:23 +08:00
}
}
2023-11-06 00:19:44 +08:00
# step2. apply additional cross make options
2024-05-21 23:40:01 +08:00
if ($evaluated_xopts.Count -gt 0) {
$1k.println("Apply additional cross make options: $($evaluated_xopts), Count={0}" -f $evaluated_xopts.Count)
$CONFIG_ALL_OPTIONS += $evaluated_xopts
}
2023-12-15 22:29:23 +08:00
2024-05-18 23:30:26 +08:00
$1k.println("CONFIG_ALL_OPTIONS=$CONFIG_ALL_OPTIONS, Count={0}" -f $CONFIG_ALL_OPTIONS.Count)
2023-06-29 19:46:52 +08:00
if ($Global:is_android -and $is_gradlew) {
$build_tool = (Get-Command $options.xt).Source
$build_tool_dir = Split-Path $build_tool -Parent
2024-01-19 20:33:40 +08:00
Push-Location $build_tool_dir
if (!$configOnly) {
if ($optimize_flag -eq 'Debug') {
& $build_tool assembleDebug $CONFIG_ALL_OPTIONS | Out-Host
}
else {
& $build_tool assembleRelease $CONFIG_ALL_OPTIONS | Out-Host
}
2023-09-28 13:07:09 +08:00
}
else {
if ($optimize_flag -eq 'Debug') {
& $build_tool configureCMakeDebug prepareKotlinBuildScriptModel $CONFIG_ALL_OPTIONS | Out-Host
}
else {
& $build_tool configureCMakeRelWithDebInfo prepareKotlinBuildScriptModel $CONFIG_ALL_OPTIONS | Out-Host
}
2023-09-28 13:07:09 +08:00
}
2024-01-19 20:33:40 +08:00
Pop-Location
2023-11-18 13:16:40 +08:00
}
else {
# step3. configure
$workDir = $(Get-Location).Path
2024-05-20 23:46:48 +08:00
$cmakeEntryFile = 'CMakeLists.txt'
2024-05-21 23:40:01 +08:00
$mainDep = if (!$SOURCE_DIR) { Join-Path $workDir $cmakeEntryFile } else { $(Join-Path $SOURCE_DIR $cmakeEntryFile) }
2024-05-18 23:30:26 +08:00
if ($1k.isfile($mainDep)) {
2024-01-19 20:33:40 +08:00
$mainDepChanged = $false
# A Windows file time is a 64-bit value that represents the number of 100-nanosecond
$tempFileItem = Get-Item $mainDep
$lastWriteTime = $tempFileItem.LastWriteTime.ToFileTimeUTC()
2024-05-18 23:30:26 +08:00
$tempFile = Join-Path $BUILD_DIR '1k_cache.txt'
2024-01-19 20:33:40 +08:00
$storeHash = 0
2024-05-18 23:30:26 +08:00
if ($1k.isfile($tempFile)) {
2024-01-19 20:33:40 +08:00
$storeHash = Get-Content $tempFile -Raw
}
2024-05-18 23:30:26 +08:00
$hashValue = $1k.hash("$CONFIG_ALL_OPTIONS#$lastWriteTime")
2024-01-19 20:33:40 +08:00
$mainDepChanged = "$storeHash" -ne "$hashValue"
2024-05-18 23:30:26 +08:00
$cmakeCachePath = $1k.realpath("$BUILD_DIR/CMakeCache.txt")
2024-05-18 23:30:26 +08:00
if ($mainDepChanged -or !$1k.isfile($cmakeCachePath) -or $forceConfig) {
2024-05-21 23:40:01 +08:00
$config_cmd = if (!$is_wasm) { 'cmake' } else { 'emcmake' }
if ($is_wasm) {
2024-04-13 22:11:22 +08:00
$CONFIG_ALL_OPTIONS = @('cmake') + $CONFIG_ALL_OPTIONS
2024-01-19 20:33:40 +08:00
}
2024-04-13 22:11:22 +08:00
if ($options.dm) {
2024-05-18 23:30:26 +08:00
$1k.println("Dumping compiler preprocessors ...")
2024-04-13 22:11:22 +08:00
$dm_dir = Join-Path $PSScriptRoot 'dm'
$dm_build_dir = Join-Path $dm_dir 'build'
&$config_cmd $CONFIG_ALL_OPTIONS -S $dm_dir -B $dm_build_dir | Out-Host ; Remove-Item $dm_build_dir -Recurse -Force
2024-05-18 23:30:26 +08:00
$1k.println("Finish dump compiler preprocessors")
}
$CONFIG_ALL_OPTIONS += '-B', $BUILD_DIR, "-DCMAKE_INSTALL_PREFIX=$INST_DIR"
2024-05-21 23:40:01 +08:00
if ($SOURCE_DIR) { $CONFIG_ALL_OPTIONS += '-S', $SOURCE_DIR }
$1k.println("CMake config command: $config_cmd $CONFIG_ALL_OPTIONS")
&$config_cmd $CONFIG_ALL_OPTIONS | Out-Host
2024-01-19 20:33:40 +08:00
Set-Content $tempFile $hashValue -NoNewline
}
2024-01-19 20:33:40 +08:00
if (!$configOnly) {
2024-03-23 00:51:46 +08:00
if (!$is_gradlew) {
2024-05-18 23:30:26 +08:00
if (!$1k.isfile($cmakeCachePath)) {
2024-01-19 20:33:40 +08:00
Set-Location $stored_cwd
throw "The cmake generate incomplete, pelase add '-f' to re-generate again"
}
}
2023-07-06 12:18:33 +08:00
2024-01-19 20:33:40 +08:00
# step4. build
# apply additional build options
2024-05-21 23:40:01 +08:00
$BUILD_ALL_OPTIONS += "--parallel", "$($options.j)"
2024-06-08 21:37:52 +08:00
if ($options.t) { $cmake_target = $options.t }
2024-05-21 23:40:01 +08:00
if ($cmake_target) { $BUILD_ALL_OPTIONS += '--target', $cmake_target }
$1k.println("BUILD_ALL_OPTIONS=$BUILD_ALL_OPTIONS, Count={0}" -f $BUILD_ALL_OPTIONS.Count)
2024-05-21 23:40:01 +08:00
# forward non-cmake args to underlaying build toolchain, must at last
2024-03-22 23:37:16 +08:00
if (($cmake_generator -eq 'Xcode') -and !$BUILD_ALL_OPTIONS.Contains('--verbose')) {
2024-01-19 20:33:40 +08:00
$BUILD_ALL_OPTIONS += '--', '-quiet'
}
2024-05-18 23:30:26 +08:00
$1k.println("cmake --build $BUILD_DIR $BUILD_ALL_OPTIONS")
2024-01-19 20:33:40 +08:00
cmake --build $BUILD_DIR $BUILD_ALL_OPTIONS | Out-Host
2024-06-02 00:27:51 +08:00
if (!$?) {
Set-Location $stored_cwd
exit $LASTEXITCODE
}
2024-05-21 23:40:01 +08:00
if ($options.i) {
$install_args = @($BUILD_DIR, '--config', $optimize_flag)
cmake --install $install_args | Out-Host
}
2024-01-19 20:33:40 +08:00
}
}
else {
2024-05-20 23:46:48 +08:00
$1k.println("Missing file: $cmakeEntryFile")
}
}
2024-01-19 20:33:40 +08:00
Set-Location $stored_cwd
}
else {
2024-01-11 01:42:58 +08:00
# google gclient/gn build system
# refer: https://chromium.googlesource.com/chromium/src/+/eca97f87e275a7c9c5b7f13a65ff8635f0821d46/tools/gn/docs/reference.md#args_specifies-build-arguments-overrides-examples
$stored_env_path = $null
2024-01-11 01:42:58 +08:00
$gn_buildargs_overrides = @()
if ($Global:is_winrt) {
2024-01-11 01:42:58 +08:00
$gn_buildargs_overrides += 'target_os=\"winuwp\"'
}
elseif ($Global:is_ios) {
2024-01-11 01:42:58 +08:00
$gn_buildargs_overrides += 'target_os=\"ios\"'
2024-04-02 22:31:34 +08:00
if ($Global:is_ios_sim) {
2024-01-11 01:42:58 +08:00
$gn_buildargs_overrides += 'target_environment=\"simulator\"'
}
}
elseif ($Global:is_android) {
2024-01-11 01:42:58 +08:00
$gn_buildargs_overrides += 'target_os=\"android\"'
$stored_env_path = $env:PATH
active_ndk_toolchain
}
2024-01-11 01:42:58 +08:00
$gn_target_cpu = if ($TARGET_CPU -ne 'armv7') { $TARGET_CPU } else { 'arm' }
$gn_buildargs_overrides += "target_cpu=\`"$gn_target_cpu\`""
if ($options.xc) {
$gn_buildargs_overrides += $options.xc
}
2024-01-12 00:27:16 +08:00
if ($Global:is_darwin_embed_device) {
$gn_buildargs_overrides += 'ios_enable_code_signing=false'
}
if ($Script:use_msvcr14x) {
$gn_buildargs_overrides += 'use_msvcr14x=true'
}
2024-03-24 05:11:41 +08:00
if ($optimize_flag -eq 'Debug') {
2024-03-22 23:37:16 +08:00
$gn_buildargs_overrides += 'is_debug=true'
2024-03-24 05:11:41 +08:00
}
else {
2024-03-22 23:37:16 +08:00
$gn_buildargs_overrides += 'is_debug=false'
}
2024-01-11 01:42:58 +08:00
Write-Output ("gn_buildargs_overrides=$gn_buildargs_overrides, Count={0}" -f $gn_buildargs_overrides.Count)
2024-06-02 00:27:51 +08:00
$BUILD_DIR = resolve_out_dir 'out/'
if ($rebuild) {
2024-05-18 23:30:26 +08:00
$1k.rmdirs($BUILD_DIR)
}
2024-01-12 00:27:16 +08:00
$gn_gen_args = @('gen', $BUILD_DIR)
if ($Global:is_win_family) {
2024-03-22 23:37:16 +08:00
$sln_name = Split-Path $(Get-Location).Path -Leaf
2024-04-01 22:37:05 +08:00
$gn_gen_args += '--ide=vs2022', "--sln=$sln_name"
}
2024-01-11 01:42:58 +08:00
if ($gn_buildargs_overrides) {
$gn_gen_args += "--args=`"$gn_buildargs_overrides`""
}
Write-Output "Executing command: {gn $gn_gen_args}"
2024-01-11 01:42:58 +08:00
# Note:
# 1. powershell 7.2.12 works: gn $gn_gen_args, but 7.4.0 not works
# 2. only --args="target_cpu=\"x64\"" works
# 3. --args='target_cpu="x64" not work invoke from pwsh
if ($IsWin) {
2024-01-11 01:42:58 +08:00
cmd /c "gn $gn_gen_args"
}
else {
2024-01-19 00:12:19 +08:00
if ([VersionEx]$pwsh_ver -ge [VersionEx]'7.3') {
2024-01-11 01:42:58 +08:00
bash -c "gn $gn_gen_args"
}
else {
2024-01-11 01:42:58 +08:00
gn $gn_gen_args
}
}
# build
2024-01-12 00:27:16 +08:00
autoninja -C $BUILD_DIR --verbose $options.t
# restore env:PATH
if ($stored_env_path) {
$env:PATH = $stored_env_path
}
2023-07-06 12:18:33 +08:00
}
2023-07-05 20:22:11 +08:00
2024-01-12 00:27:16 +08:00
$Global:BUILD_DIR = $BUILD_DIR
$env:buildResult = ConvertTo-Json @{
buildDir = $BUILD_DIR
targetOS = $TARGET_OS
2024-03-24 05:11:41 +08:00
targetCPU = $TARGET_CPU
hostCPU = $HOST_CPU
2024-01-12 00:27:16 +08:00
isHostTarget = $is_host_target
compilerID = $TOOLCHAIN_NAME
}
2023-07-05 20:22:11 +08:00
}
2024-06-02 00:27:51 +08:00
exit $LASTEXITCODE