From 4f66ebfd883d08af1f74d0096bc5bc7f03ca5251 Mon Sep 17 00:00:00 2001 From: Aiken Harris Date: Sat, 12 Jul 2025 21:47:34 +0200 Subject: [PATCH] Skip windres version check --- scripts/xtclib.ps1 | 1 - 1 file changed, 1 deletion(-) diff --git a/scripts/xtclib.ps1 b/scripts/xtclib.ps1 index e9685fa..9386ed3 100644 --- a/scripts/xtclib.ps1 +++ b/scripts/xtclib.ps1 @@ -105,7 +105,6 @@ function version { Write-Host Write-Host "LLVM/Clang Compiler: $(clang --version | Select-String -Pattern "version (\d+\.\d+\.\d+)" | ForEach-Object { $_.Matches.Groups[1].Value }) ($($(Get-Command clang).Source))" Write-Host "LLVM/LLD Linker: $(lld-link --version | Select-String -Pattern "(\d+\.\d+\.\d+)" | ForEach-Object { $_.Matches.Groups[1].Value }) ($($(Get-Command lld-link).Source))" - Write-Host "LLVM Resource Compiler: $(windres --version | Select-String -Pattern "version (\d+\.\d+\.\d+)" | ForEach-Object { $_.Matches.Groups[1].Value }) ($($(Get-Command windres).Source))" Write-Host "Wine IDL Compiler: $(widl -V | Select-String -Pattern "version (\d+\.\d+)" | ForEach-Object { $_.Matches.Groups[1].Value }) ($($(Get-Command widl).Source))" Write-Host "Wine Message Compiler: $(wmc -V | Select-String -Pattern "version (\d+\.\d+)" | ForEach-Object { $_.Matches.Groups[1].Value }) ($($(Get-Command wmc).Source))" Write-Host "Wine Resource Compiler: $(wrc --version | Select-String -Pattern "version (\d+\.\d+)" | ForEach-Object { $_.Matches.Groups[1].Value }) ($($(Get-Command wrc).Source))"