From e82352d3dd8b0e43b4456b32faa54b3ad9f79234 Mon Sep 17 00:00:00 2001 From: Aiken Harris Date: Wed, 9 Jul 2025 17:39:37 +0200 Subject: [PATCH] Show windres version and path --- scripts/xtclib | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/xtclib b/scripts/xtclib index 3d09e0b..f54bdf3 100755 --- a/scripts/xtclib +++ b/scripts/xtclib @@ -97,10 +97,10 @@ version() banner echo -en "\nLLVM/Clang Compiler: $(clang --version | grep 'clang version' | cut -d' ' -f3) ($(which clang))" echo -en "\nLLVM/LLD Linker: $(lld-link --version | cut -d' ' -f2) ($(which lld-link))" + echo -en "\nLLVM Resource Compiler: $(windres --version | grep version | cut -d' ' -f5) ($(which windres))" echo -en "\nWine IDL Compiler: $(widl -V | grep 'version' | cut -d' ' -f5) ($(which widl))" echo -en "\nWine Message Compiler: $(wmc -V | grep 'version' | cut -d' ' -f5) ($(which wmc))" echo -en "\nWine Resource Compiler: $(wrc --version | grep 'version' | cut -d' ' -f5) ($(which wrc))" - echo -en "\nXT Resource Compiler: $(windres -V | cut -d' ' -f6) ($(which windres))" echo -en "\nXT SPEC Compiler: $(xtcspecc --help | grep Version | cut -d' ' -f5) ($(which xtcspecc))" echo -en "\nCMake Build System: $(cmake --version | grep 'cmake version' | cut -d' ' -f3) ($(which cmake))" echo -en "\nNinja Build System: $(ninja --version) ($(which ninja))"