2022-07-05 11:26:52 +00:00
|
|
|
# Copyright (C) 2022 The Qt Company Ltd.
|
2022-08-19 13:21:34 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
2022-07-05 11:26:52 +00:00
|
|
|
|
2018-10-24 13:20:27 +00:00
|
|
|
include(CheckCXXSourceCompiles)
|
2019-04-08 15:23:57 +00:00
|
|
|
|
2019-11-13 13:03:20 +00:00
|
|
|
function(qt_run_config_test_architecture)
|
2019-11-07 14:52:33 +00:00
|
|
|
set(QT_BASE_CONFIGURE_TESTS_VARS_TO_EXPORT
|
|
|
|
"" CACHE INTERNAL "Test variables that should be exported" FORCE)
|
2019-08-28 13:01:23 +00:00
|
|
|
|
2019-04-08 15:23:57 +00:00
|
|
|
# Compile test to find the target architecture and sub-architectures.
|
|
|
|
set(flags "")
|
|
|
|
qt_get_platform_try_compile_vars(platform_try_compile_vars)
|
|
|
|
list(APPEND flags ${platform_try_compile_vars})
|
2019-08-28 13:01:23 +00:00
|
|
|
|
2022-10-25 14:48:21 +00:00
|
|
|
list(TRANSFORM flags PREPEND " " OUTPUT_VARIABLE flags_indented)
|
2021-03-26 17:20:38 +00:00
|
|
|
list(JOIN flags_indented "\n" flags_indented)
|
2022-10-25 14:48:21 +00:00
|
|
|
|
2021-03-26 17:20:38 +00:00
|
|
|
message(STATUS
|
2022-10-25 14:48:21 +00:00
|
|
|
"Building architecture extraction project with the following CMake arguments:")
|
|
|
|
list(POP_BACK CMAKE_MESSAGE_CONTEXT _context)
|
|
|
|
message(NOTICE ${flags_indented})
|
|
|
|
list(APPEND CMAKE_MESSAGE_CONTEXT ${_context})
|
2021-03-26 17:20:38 +00:00
|
|
|
|
2019-04-08 15:23:57 +00:00
|
|
|
try_compile(
|
|
|
|
_arch_result
|
|
|
|
"${CMAKE_CURRENT_BINARY_DIR}/config.tests/arch"
|
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/config.tests/arch"
|
|
|
|
arch
|
|
|
|
CMAKE_FLAGS ${flags}
|
2021-03-26 17:20:38 +00:00
|
|
|
OUTPUT_VARIABLE arch_test_output
|
2019-04-08 15:23:57 +00:00
|
|
|
)
|
2019-08-28 13:01:23 +00:00
|
|
|
|
2018-10-24 13:20:27 +00:00
|
|
|
if (NOT _arch_result)
|
2021-03-26 17:20:38 +00:00
|
|
|
message(FATAL_ERROR
|
|
|
|
"Failed to build architecture extraction project. Build output:\n ${arch_test_output}")
|
2018-10-24 13:20:27 +00:00
|
|
|
endif()
|
|
|
|
|
2019-04-08 15:23:57 +00:00
|
|
|
set(_arch_file_suffix "${CMAKE_EXECUTABLE_SUFFIX}")
|
|
|
|
# With emscripten the application entry point is a .js file (to be run with node for example),
|
|
|
|
# but the real "data" is in the .wasm file, so that's where we need to look for the ABI, etc.
|
|
|
|
# information.
|
2020-09-03 08:29:41 +00:00
|
|
|
if (WASM)
|
2019-04-08 15:23:57 +00:00
|
|
|
set(_arch_file_suffix ".wasm")
|
|
|
|
endif()
|
2019-12-06 14:12:17 +00:00
|
|
|
|
|
|
|
set(arch_test_location "config.tests/arch")
|
|
|
|
if(QT_MULTI_CONFIG_FIRST_CONFIG)
|
|
|
|
string(APPEND arch_test_location "/${QT_MULTI_CONFIG_FIRST_CONFIG}")
|
|
|
|
endif()
|
|
|
|
|
2021-03-26 17:20:38 +00:00
|
|
|
set(arch_dir "${CMAKE_CURRENT_BINARY_DIR}/${arch_test_location}")
|
|
|
|
file(GLOB arch_dir_globbed_files RELATIVE "${arch_dir}" "${arch_dir}/*")
|
|
|
|
list(JOIN arch_dir_globbed_files "\n" arch_dir_globbed_files)
|
|
|
|
|
2019-04-08 15:23:57 +00:00
|
|
|
set(_arch_file
|
2019-12-06 14:12:17 +00:00
|
|
|
"${CMAKE_CURRENT_BINARY_DIR}/${arch_test_location}/architecture_test${_arch_file_suffix}")
|
2019-04-08 15:23:57 +00:00
|
|
|
if (NOT EXISTS "${_arch_file}")
|
|
|
|
message(FATAL_ERROR
|
2021-03-26 17:20:38 +00:00
|
|
|
"Failed to find compiled architecture detection executable at ${_arch_file}. \
|
|
|
|
The following files were found at: ${arch_dir} \
|
|
|
|
${arch_dir_globbed_files}")
|
2019-04-08 15:23:57 +00:00
|
|
|
endif()
|
|
|
|
message(STATUS "Extracting architecture info from ${_arch_file}.")
|
|
|
|
|
CMake: Fix arch parsing for oss-fuzz
I'll preface by saying, it's not clear to me why the behavior is
different.
Our qt_run_config_test_architecture function builds a target
executable, and then uses file(STRINGS) to try and parse out some
magic strings that we expect the executable to have (architecture,
abi, etc).
In qmake this was done by matching with a regular expression ending on
a \\0 null byte character.
In CMake, we do a string(FIND) and string(SUBSTRING until the end of
the line) on a *line* returned from file(STRINGS). Notably, I did not
find any regexp syntax provided by CMake to try and match a null byte
character.
Note the docs for file(STRINGS) implies to me that *lines* are
detected by looking for newline characters '\n'. The docs also
mention that binary data in the file is ignored. What's binary
data though?
If you open the executable with a hex editor, at least on macOS, the
strings we are interested in are indeed separated by null byte chars,
not newline chars.
On most platforms file(STRINGS) did end a line on the null byte
character.
Except, for some reason not when building Qt for the oss-fuzz project
with clang under Docker.
Calling message() on one of the lines prints a very long string with
null characters seemingly replaced with semicolons, and of course the
matched architecture string is wrong and fails configuration.
For *some reason*, if I add a "REGEX ==Qt=magic=Qt==" option to the
file(STRINGS) command, the captured output lines don't contain
semicolons even when building for oss-fuzz.
The extracted strings are then correct, and configuration succeeds.
Use the REGEX option workaround, with the aim to quickly fix Qt
building for oss-fuzz for 6.0.1 release.
Pick-to: 6.0
Fixes: QTBUG-89047
Change-Id: Iad11c1090c1187aadd39082f196050bf3290df95
Reviewed-by: Robert Loehning <robert.loehning@qt.io>
Reviewed-by: Cristian Adam <cristian.adam@qt.io>
Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
2020-12-02 14:25:03 +00:00
|
|
|
file(STRINGS "${_arch_file}" _arch_lines LENGTH_MINIMUM 16 LENGTH_MAXIMUM 1024 ENCODING UTF-8
|
|
|
|
REGEX "==Qt=magic=Qt==")
|
2018-10-24 13:20:27 +00:00
|
|
|
|
|
|
|
foreach (_line ${_arch_lines})
|
2019-06-26 12:08:02 +00:00
|
|
|
string(LENGTH "${_line}" lineLength)
|
2018-10-24 13:20:27 +00:00
|
|
|
string(FIND "${_line}" "==Qt=magic=Qt== Architecture:" _pos)
|
|
|
|
if (_pos GREATER -1)
|
|
|
|
math(EXPR _pos "${_pos}+29")
|
|
|
|
string(SUBSTRING "${_line}" ${_pos} -1 _architecture)
|
|
|
|
endif()
|
|
|
|
string(FIND "${_line}" "==Qt=magic=Qt== Sub-architecture:" _pos)
|
2019-05-29 08:09:52 +00:00
|
|
|
if (_pos GREATER -1 AND ${lineLength} GREATER 33)
|
2018-10-24 13:20:27 +00:00
|
|
|
math(EXPR _pos "${_pos}+34")
|
|
|
|
string(SUBSTRING "${_line}" ${_pos} -1 _sub_architecture)
|
|
|
|
string(REPLACE " " ";" _sub_architecture "${_sub_architecture}")
|
|
|
|
endif()
|
|
|
|
string(FIND "${_line}" "==Qt=magic=Qt== Build-ABI:" _pos)
|
|
|
|
if (_pos GREATER -1)
|
|
|
|
math(EXPR _pos "${_pos}+26")
|
|
|
|
string(SUBSTRING "${_line}" ${_pos} -1 _build_abi)
|
|
|
|
endif()
|
|
|
|
endforeach()
|
|
|
|
|
2019-05-29 08:09:52 +00:00
|
|
|
if (NOT _architecture OR NOT _build_abi)
|
2021-03-26 17:20:38 +00:00
|
|
|
list(SUBLIST _arch_lines 0 5 arch_lines_fewer)
|
|
|
|
list(JOIN arch_lines_fewer "\n" arch_lines_output)
|
|
|
|
|
|
|
|
message(FATAL_ERROR
|
|
|
|
"Failed to extract architecture data from file. \
|
|
|
|
Here are the first few lines extracted:\n${arch_lines_output}")
|
2018-10-24 13:20:27 +00:00
|
|
|
endif()
|
|
|
|
|
|
|
|
set(TEST_architecture 1 CACHE INTERNAL "Ran the architecture test")
|
|
|
|
set(TEST_architecture_arch "${_architecture}" CACHE INTERNAL "Target machine architecture")
|
2019-11-07 14:52:33 +00:00
|
|
|
list(APPEND QT_BASE_CONFIGURE_TESTS_VARS_TO_EXPORT TEST_architecture_arch)
|
2018-10-24 13:20:27 +00:00
|
|
|
set(TEST_subarch 1 CACHE INTERNAL "Ran machine subArchitecture test")
|
2020-07-02 08:57:22 +00:00
|
|
|
set(TEST_subarch_result "${_sub_architecture}" CACHE INTERNAL "Target sub-architectures")
|
|
|
|
list(APPEND QT_BASE_CONFIGURE_TESTS_VARS_TO_EXPORT TEST_subarch_result)
|
2018-10-24 13:20:27 +00:00
|
|
|
foreach(it ${_sub_architecture})
|
2019-03-21 12:14:09 +00:00
|
|
|
# Equivalent to qmake's QT_CPU_FEATURES.$arch.
|
|
|
|
set(TEST_arch_${TEST_architecture_arch}_subarch_${it} 1 CACHE INTERNAL "Target sub architecture result")
|
2019-11-07 14:52:33 +00:00
|
|
|
list(APPEND QT_BASE_CONFIGURE_TESTS_VARS_TO_EXPORT TEST_arch_${TEST_architecture_arch}_subarch_${it})
|
2018-10-24 13:20:27 +00:00
|
|
|
endforeach()
|
|
|
|
set(TEST_buildAbi "${_build_abi}" CACHE INTERNAL "Target machine buildAbi")
|
2019-11-07 14:52:33 +00:00
|
|
|
list(APPEND QT_BASE_CONFIGURE_TESTS_VARS_TO_EXPORT TEST_buildAbi)
|
|
|
|
set(QT_BASE_CONFIGURE_TESTS_VARS_TO_EXPORT ${QT_BASE_CONFIGURE_TESTS_VARS_TO_EXPORT} CACHE INTERNAL "Test variables that should be exported")
|
2019-04-08 15:23:57 +00:00
|
|
|
|
|
|
|
list(JOIN _sub_architecture " " subarch_summary)
|
2020-03-02 17:06:46 +00:00
|
|
|
set_property(GLOBAL PROPERTY qt_configure_subarch_summary "${subarch_summary}")
|
2018-10-24 13:20:27 +00:00
|
|
|
endfunction()
|
|
|
|
|
|
|
|
|
2019-11-13 13:03:20 +00:00
|
|
|
function(qt_run_linker_version_script_support)
|
2023-05-20 19:57:02 +00:00
|
|
|
# For some reason the linker command line written by the XCode generator, which is
|
|
|
|
# subsequently executed by xcodebuild, ignores the linker flag, and thus the test
|
|
|
|
# seemingly succeeds. Explicitly disable the version script test on darwin platforms.
|
|
|
|
# Also makes no sense with MSVC-style command-line
|
|
|
|
if(NOT APPLE AND NOT MSVC)
|
2023-05-13 20:08:35 +00:00
|
|
|
file(WRITE "${CMAKE_CURRENT_BINARY_DIR}/version_flag.map" [=[
|
|
|
|
VERS_1 { global: sym1; };
|
|
|
|
VERS_2 { global: sym2; } VERS_1;
|
|
|
|
]=])
|
|
|
|
set(CMAKE_REQUIRED_LINK_OPTIONS "")
|
|
|
|
list(APPEND CMAKE_REQUIRED_LINK_OPTIONS
|
|
|
|
"-Wl,--version-script=${CMAKE_CURRENT_BINARY_DIR}/version_flag.map")
|
2023-05-20 19:57:02 +00:00
|
|
|
# Pass the linker that the main project uses to the version script compile test.
|
|
|
|
qt_internal_get_active_linker_flags(linker_flags)
|
|
|
|
if(linker_flags)
|
2023-05-13 20:08:35 +00:00
|
|
|
list(APPEND CMAKE_REQUIRED_LINK_OPTIONS ${linker_flags})
|
2023-05-20 19:57:02 +00:00
|
|
|
endif()
|
2023-05-13 20:08:35 +00:00
|
|
|
check_cxx_source_compiles([=[
|
|
|
|
int sym1;
|
|
|
|
int sym2;
|
|
|
|
int main(void) { return 0; }
|
|
|
|
]=] HAVE_LD_VERSION_SCRIPT)
|
|
|
|
file(REMOVE "${CMAKE_CURRENT_BINARY_DIR}/version_flag.map")
|
2023-05-20 19:57:02 +00:00
|
|
|
else()
|
2021-06-15 10:45:50 +00:00
|
|
|
set(HAVE_LD_VERSION_SCRIPT OFF)
|
|
|
|
endif()
|
2019-04-08 15:10:23 +00:00
|
|
|
|
2023-05-13 20:08:35 +00:00
|
|
|
set(TEST_ld_version_script "${HAVE_LD_VERSION_SCRIPT}"
|
|
|
|
CACHE INTERNAL "linker version script support")
|
2022-11-23 20:54:28 +00:00
|
|
|
list(APPEND QT_BASE_CONFIGURE_TESTS_VARS_TO_EXPORT TEST_ld_version_script)
|
2023-05-13 20:08:35 +00:00
|
|
|
set(QT_BASE_CONFIGURE_TESTS_VARS_TO_EXPORT ${QT_BASE_CONFIGURE_TESTS_VARS_TO_EXPORT}
|
|
|
|
CACHE INTERNAL "Test variables that should be exported")
|
2018-10-24 13:20:27 +00:00
|
|
|
endfunction()
|
|
|
|
|
2021-10-17 03:19:48 +00:00
|
|
|
function(qt_internal_ensure_latest_win_nt_api)
|
|
|
|
if(NOT WIN32)
|
|
|
|
return()
|
|
|
|
endif()
|
|
|
|
check_cxx_source_compiles([=[
|
|
|
|
#include <windows.h>
|
|
|
|
#if !defined(_WIN32_WINNT) && !defined(WINVER)
|
|
|
|
#error "_WIN32_WINNT and WINVER are not defined"
|
|
|
|
#endif
|
|
|
|
#if defined(_WIN32_WINNT) && (_WIN32_WINNT < 0x0A00)
|
|
|
|
#error "_WIN32_WINNT version too low"
|
|
|
|
#endif
|
|
|
|
#if defined(WINVER) && (WINVER < 0x0A00)
|
|
|
|
#error "WINVER version too low"
|
|
|
|
#endif
|
|
|
|
int main() { return 0; }
|
|
|
|
]=] HAVE_WIN10_WIN32_WINNT)
|
|
|
|
if(NOT HAVE_WIN10_WIN32_WINNT)
|
|
|
|
list(APPEND QT_PLATFORM_DEFINITIONS _WIN32_WINNT=0x0A00 WINVER=0x0A00)
|
|
|
|
set(QT_PLATFORM_DEFINITIONS ${QT_PLATFORM_DEFINITIONS}
|
|
|
|
CACHE STRING "Qt platform specific pre-processor defines" FORCE)
|
|
|
|
endif()
|
|
|
|
endfunction()
|
|
|
|
|
2019-11-13 13:03:20 +00:00
|
|
|
function(qt_run_qtbase_config_tests)
|
|
|
|
qt_run_config_test_architecture()
|
2021-10-17 03:19:48 +00:00
|
|
|
qt_internal_ensure_latest_win_nt_api()
|
2018-10-24 13:20:27 +00:00
|
|
|
endfunction()
|
|
|
|
|
2019-11-07 14:03:33 +00:00
|
|
|
# The qmake build of android does not perform the right architecture tests and
|
|
|
|
# forcefully disables sse4 on android x86. We have to mimic this behavior
|
|
|
|
# for now
|
|
|
|
if (CMAKE_ANDROID_ARCH_ABI STREQUAL x86)
|
|
|
|
set(QT_FEATURE_sse4_1 OFF CACHE BOOL INTERNAL FORCE)
|
|
|
|
set(QT_FEATURE_sse4_2 OFF CACHE BOOL INTERNAL FORCE)
|
|
|
|
set(TEST_subarch_sse4_1 FALSE CACHE BOOL INTERNAL FORCE)
|
|
|
|
set(TEST_subarch_sse4_2 FALSE CACHE BOOL INTERNAL FORCE)
|
|
|
|
endif()
|
2019-11-13 13:03:20 +00:00
|
|
|
qt_run_qtbase_config_tests()
|
2020-07-20 15:33:50 +00:00
|
|
|
|
|
|
|
function(qt_internal_print_cmake_darwin_info)
|
|
|
|
if(APPLE)
|
|
|
|
if(NOT CMAKE_OSX_ARCHITECTURES)
|
|
|
|
set(default_osx_arch " (defaults to ${CMAKE_SYSTEM_PROCESSOR})")
|
|
|
|
endif()
|
|
|
|
message(STATUS "CMAKE_OSX_ARCHITECTURES: \"${CMAKE_OSX_ARCHITECTURES}\"${default_osx_arch}")
|
|
|
|
message(STATUS "CMAKE_OSX_SYSROOT: \"${CMAKE_OSX_SYSROOT}\"")
|
|
|
|
message(STATUS "CMAKE_OSX_DEPLOYMENT_TARGET: \"${CMAKE_OSX_DEPLOYMENT_TARGET}\"")
|
|
|
|
message(STATUS "QT_MAC_SDK_VERSION: \"${QT_MAC_SDK_VERSION}\"")
|
|
|
|
message(STATUS "QT_MAC_XCODE_VERSION: \"${QT_MAC_XCODE_VERSION}\"")
|
CMake: Fix building multi-arch universal macOS Qt
Use the same approach we use for iOS, which is to set multiple
CMAKE_OSX_ARCHITECTURES values and let the clang front end
deal with lipo-ing the final libraries.
For now, Qt can be configured to build universal macOS libraries by
passing 2 architectures to CMake, either via:
-DCMAKE_OSX_ARCHITECTURES="x86_64;arm64"
or
-DCMAKE_OSX_ARCHITECTURES="arm64;x86_64"
Currently we recommend specifying the intel x86_64 arch as the first
one, to get an intel slice configuration that is comparable to a
non-universal intel build.
Specifying the arm64 slice first could pessimize optimizations and
reduce the feature set for the intel slice due to the limitation
that we run configure tests only once.
The first specified architecture is the one used to do all the
configure tests.
It 'mostly' defines the common feature set of both architecture
slices, with the excepion of some special handling for sse2 and
neon instructions.
In the future we might want to run at least the Qt architecture config
test for all specified architectures, so that we can extract all the
supported sub-arches and instruction sets in a reliable way.
For now, we use the same sse2 hack as for iOS simulator_and_device
builds, otherwise QtGui fails to link due to missing
qt_memfill32_sse2 and other symbols.
The hack is somewhat augmented to ensure that reconfiguration
still succeeds (same issue happened with iOS). Previously the sse2
feature condition was broken due to force setting the feature
to be ON. Now the condition also checks for a special
QT_FORCE_FEATURE_sse2 variable which we set internally.
Note that we shouldn't build for arm64e, because the binaries
get killed when running on AS with the following message:
kernel: exec_mach_imgact: not running binary built against
preview arm64e ABI.
Aslo, by default, we disable the arm64 slice for qt sql plugins,
mostly because the CI provisioned sql libraries that we depend on only
contain x86_64 slices, and trying to build the sql plugins for both
slices will fail with linker errors.
This behavior can be disabled for all targets marked by
qt_internal_force_macos_intel_arch, by setting the
QT_FORCE_MACOS_ALL_ARCHES CMake option to ON.
To disble it per-target one can set
QT_FORCE_MACOS_ALL_ARCHES_${target} to ON.
Task-number: QTBUG-85447
Change-Id: Iccb5dfcc1a21a8a8292bd3817df0ea46c3445f75
Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@qt.io>
2021-03-24 15:03:35 +00:00
|
|
|
|
|
|
|
if(DEFINED CACHE{QT_IS_MACOS_UNIVERSAL})
|
|
|
|
message(STATUS "QT_IS_MACOS_UNIVERSAL: \"${QT_IS_MACOS_UNIVERSAL}\"")
|
|
|
|
endif()
|
2020-07-20 15:33:50 +00:00
|
|
|
if(QT_UIKIT_SDK)
|
|
|
|
message(STATUS "QT_UIKIT_SDK: \"${QT_UIKIT_SDK}\"")
|
|
|
|
endif()
|
CMake: Fix building multi-arch universal macOS Qt
Use the same approach we use for iOS, which is to set multiple
CMAKE_OSX_ARCHITECTURES values and let the clang front end
deal with lipo-ing the final libraries.
For now, Qt can be configured to build universal macOS libraries by
passing 2 architectures to CMake, either via:
-DCMAKE_OSX_ARCHITECTURES="x86_64;arm64"
or
-DCMAKE_OSX_ARCHITECTURES="arm64;x86_64"
Currently we recommend specifying the intel x86_64 arch as the first
one, to get an intel slice configuration that is comparable to a
non-universal intel build.
Specifying the arm64 slice first could pessimize optimizations and
reduce the feature set for the intel slice due to the limitation
that we run configure tests only once.
The first specified architecture is the one used to do all the
configure tests.
It 'mostly' defines the common feature set of both architecture
slices, with the excepion of some special handling for sse2 and
neon instructions.
In the future we might want to run at least the Qt architecture config
test for all specified architectures, so that we can extract all the
supported sub-arches and instruction sets in a reliable way.
For now, we use the same sse2 hack as for iOS simulator_and_device
builds, otherwise QtGui fails to link due to missing
qt_memfill32_sse2 and other symbols.
The hack is somewhat augmented to ensure that reconfiguration
still succeeds (same issue happened with iOS). Previously the sse2
feature condition was broken due to force setting the feature
to be ON. Now the condition also checks for a special
QT_FORCE_FEATURE_sse2 variable which we set internally.
Note that we shouldn't build for arm64e, because the binaries
get killed when running on AS with the following message:
kernel: exec_mach_imgact: not running binary built against
preview arm64e ABI.
Aslo, by default, we disable the arm64 slice for qt sql plugins,
mostly because the CI provisioned sql libraries that we depend on only
contain x86_64 slices, and trying to build the sql plugins for both
slices will fail with linker errors.
This behavior can be disabled for all targets marked by
qt_internal_force_macos_intel_arch, by setting the
QT_FORCE_MACOS_ALL_ARCHES CMake option to ON.
To disble it per-target one can set
QT_FORCE_MACOS_ALL_ARCHES_${target} to ON.
Task-number: QTBUG-85447
Change-Id: Iccb5dfcc1a21a8a8292bd3817df0ea46c3445f75
Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@qt.io>
2021-03-24 15:03:35 +00:00
|
|
|
qt_internal_get_first_osx_arch(osx_first_arch)
|
|
|
|
if(osx_first_arch)
|
|
|
|
message(STATUS "Configure tests main architecture (in multi-arch build): \"${osx_first_arch}\"")
|
|
|
|
endif()
|
2020-07-20 15:33:50 +00:00
|
|
|
endif()
|
|
|
|
endfunction()
|
|
|
|
qt_internal_print_cmake_darwin_info()
|
|
|
|
|
|
|
|
function(qt_internal_print_cmake_host_and_target_info)
|
2020-10-30 16:42:34 +00:00
|
|
|
message(STATUS "CMAKE_VERSION: \"${CMAKE_VERSION}\"")
|
2020-07-20 15:33:50 +00:00
|
|
|
message(STATUS "CMAKE_HOST_SYSTEM: \"${CMAKE_HOST_SYSTEM}\"")
|
|
|
|
message(STATUS "CMAKE_HOST_SYSTEM_NAME: \"${CMAKE_HOST_SYSTEM_NAME}\"")
|
|
|
|
message(STATUS "CMAKE_HOST_SYSTEM_VERSION: \"${CMAKE_HOST_SYSTEM_VERSION}\"")
|
|
|
|
message(STATUS "CMAKE_HOST_SYSTEM_PROCESSOR: \"${CMAKE_HOST_SYSTEM_PROCESSOR}\"")
|
|
|
|
|
|
|
|
message(STATUS "CMAKE_SYSTEM: \"${CMAKE_SYSTEM_NAME}\"")
|
|
|
|
message(STATUS "CMAKE_SYSTEM_NAME: \"${CMAKE_SYSTEM_NAME}\"")
|
|
|
|
message(STATUS "CMAKE_SYSTEM_VERSION: \"${CMAKE_SYSTEM_VERSION}\"")
|
|
|
|
message(STATUS "CMAKE_SYSTEM_PROCESSOR: \"${CMAKE_SYSTEM_PROCESSOR}\"")
|
|
|
|
|
|
|
|
message(STATUS "CMAKE_CROSSCOMPILING: \"${CMAKE_CROSSCOMPILING}\"")
|
|
|
|
endfunction()
|
|
|
|
qt_internal_print_cmake_host_and_target_info()
|
|
|
|
|
2022-04-13 15:32:56 +00:00
|
|
|
function(qt_internal_print_prefix_info)
|
|
|
|
message(STATUS "CMAKE_INSTALL_PREFIX: \"${CMAKE_INSTALL_PREFIX}\"")
|
|
|
|
message(STATUS "CMAKE_STAGING_PREFIX: \"${CMAKE_STAGING_PREFIX}\"")
|
|
|
|
message(STATUS "QT_BUILD_DIR: \"${QT_BUILD_DIR}\"")
|
|
|
|
message(STATUS "QT_INSTALL_DIR: \"${QT_INSTALL_DIR}\"")
|
|
|
|
message(STATUS "QT_WILL_INSTALL: \"${QT_WILL_INSTALL}\"")
|
|
|
|
endfunction()
|
|
|
|
qt_internal_print_prefix_info()
|
|
|
|
|
2020-07-20 15:33:50 +00:00
|
|
|
function(qt_internal_print_cmake_compiler_info)
|
|
|
|
message(STATUS "CMAKE_C_COMPILER: \"${CMAKE_C_COMPILER}\" (${CMAKE_C_COMPILER_VERSION})")
|
|
|
|
message(STATUS "CMAKE_CXX_COMPILER: \"${CMAKE_CXX_COMPILER}\" (${CMAKE_CXX_COMPILER_VERSION})")
|
|
|
|
if(CMAKE_OBJC_COMPILER)
|
|
|
|
message(STATUS "CMAKE_OBJC_COMPILER: \"${CMAKE_OBJC_COMPILER}\" (${CMAKE_OBJC_COMPILER_VERSION})")
|
|
|
|
endif()
|
|
|
|
if(CMAKE_OBJCXX_COMPILER)
|
|
|
|
message(STATUS "CMAKE_OBJCXX_COMPILER: \"${CMAKE_OBJCXX_COMPILER}\" (${CMAKE_OBJCXX_COMPILER_VERSION})")
|
|
|
|
endif()
|
|
|
|
endfunction()
|
|
|
|
qt_internal_print_cmake_compiler_info()
|
|
|
|
|
|
|
|
function(qt_internal_print_cmake_windows_info)
|
|
|
|
if(MSVC_VERSION)
|
|
|
|
message(STATUS "MSVC_VERSION: \"${MSVC_VERSION}\"")
|
|
|
|
endif()
|
|
|
|
if(MSVC_TOOLSET_VERSION)
|
|
|
|
message(STATUS "MSVC_TOOLSET_VERSION: \"${MSVC_TOOLSET_VERSION}\"")
|
|
|
|
endif()
|
|
|
|
endfunction()
|
|
|
|
qt_internal_print_cmake_windows_info()
|
|
|
|
|
|
|
|
function(qt_internal_print_cmake_android_info)
|
|
|
|
if(ANDROID)
|
|
|
|
message(STATUS "ANDROID_TOOLCHAIN: \"${ANDROID_TOOLCHAIN}\"")
|
|
|
|
message(STATUS "ANDROID_NDK: \"${ANDROID_NDK}\"")
|
|
|
|
message(STATUS "ANDROID_ABI: \"${ANDROID_ABI}\"")
|
|
|
|
message(STATUS "ANDROID_PLATFORM: \"${ANDROID_PLATFORM}\"")
|
2022-03-08 13:08:00 +00:00
|
|
|
message(STATUS "ANDROID_NATIVE_API_LEVEL: \"${ANDROID_NATIVE_API_LEVEL}\"")
|
2020-07-20 15:33:50 +00:00
|
|
|
message(STATUS "ANDROID_STL: \"${ANDROID_STL}\"")
|
|
|
|
message(STATUS "ANDROID_PIE: \"${ANDROID_PIE}\"")
|
|
|
|
message(STATUS "ANDROID_CPP_FEATURES: \"${ANDROID_CPP_FEATURES}\"")
|
|
|
|
message(STATUS "ANDROID_ALLOW_UNDEFINED_SYMBOLS: \"${ANDROID_ALLOW_UNDEFINED_SYMBOLS}\"")
|
|
|
|
message(STATUS "ANDROID_ARM_MODE: \"${ANDROID_ARM_MODE}\"")
|
|
|
|
message(STATUS "ANDROID_ARM_NEON: \"${ANDROID_ARM_NEON}\"")
|
|
|
|
message(STATUS "ANDROID_DISABLE_FORMAT_STRING_CHECKS: \"${ANDROID_DISABLE_FORMAT_STRING_CHECKS}\"")
|
|
|
|
message(STATUS "ANDROID_LLVM_TRIPLE: \"${ANDROID_LLVM_TRIPLE}\"")
|
|
|
|
endif()
|
|
|
|
endfunction()
|
|
|
|
qt_internal_print_cmake_android_info()
|