From c864129af8ff6157a6c9a5a532e01a1ee69e98ce Mon Sep 17 00:00:00 2001 From: Alexandru Croitor Date: Mon, 9 Jul 2018 15:57:22 +0200 Subject: Print macOS toolchain info when configuring WebEngine It's not always easy to determine what Xcode / clang version is used when building WebEngine in the CI. Same for the OS version and other toolchain details. Print out the values at QtWebEngine configure time. This will also help us when users provide build logs. Change-Id: I413a6c5b6efb42c4411268ca46d07c2fb9b85cc3 Reviewed-by: Allan Sandfeld Jensen Reviewed-by: Kai Koehne --- src/core/configure.json | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) (limited to 'src/core/configure.json') diff --git a/src/core/configure.json b/src/core/configure.json index b1182e789..fddcb9ae8 100644 --- a/src/core/configure.json +++ b/src/core/configure.json @@ -679,6 +679,36 @@ "args": "webengine-sanitizer", "condition": "config.sanitizer" }, + { + "message": "macOS version", + "type": "macosToolchainVersion", + "args": "macosVersion", + "condition": "config.macos" + }, + { + "message": "Xcode version", + "type": "macosToolchainVersion", + "args": "xcodeVersion", + "condition": "config.macos" + }, + { + "message": "Clang version", + "type": "macosToolchainVersion", + "args": "clangVersion", + "condition": "config.macos" + }, + { + "message": "macOS SDK version", + "type": "macosToolchainVersion", + "args": "sdkVersion", + "condition": "config.macos" + }, + { + "message": "macOS minimum deployment target", + "type": "macosToolchainVersion", + "args": "deploymentTarget", + "condition": "config.macos" + }, { "section": "Optional system libraries used", "condition": "config.unix", -- cgit v1.2.3