mirror of
https://github.com/opencv/opencv.git
synced 2024-12-03 16:35:09 +08:00
85923c8f30
Update zlib-ng to 2.2.1 #26113 Release: https://github.com/zlib-ng/zlib-ng/releases/tag/2.2.1 ARM diagnostics patch: https://github.com/zlib-ng/zlib-ng/pull/1774 ### Pull Request Readiness Checklist See details at https://github.com/opencv/opencv/wiki/How_to_contribute#making-a-good-pull-request - [x] I agree to contribute to the project under Apache 2 License. - [x] To the best of my knowledge, the proposed patch is not based on a code under GPL or another license that is incompatible with OpenCV - [x] The PR is proposed to the proper branch - [ ] There is a reference to the original bug report and related work - [ ] There is accuracy test, performance test and test data in opencv_extra repository, if applicable Patch to opencv_extra has the same branch name. - [ ] The feature is well documented and sample code can be built with the project CMake
105 lines
3.6 KiB
CMake
105 lines
3.6 KiB
CMake
# detect-arch.cmake -- Detect compiler architecture and set ARCH and BASEARCH
|
|
# Copyright (C) 2019 Hans Kristian Rosbach
|
|
# Licensed under the Zlib license, see LICENSE.md for details
|
|
set(ARCHDETECT_FOUND TRUE)
|
|
|
|
if(CMAKE_OSX_ARCHITECTURES)
|
|
# If multiple architectures are requested (universal build), pick only the first
|
|
list(GET CMAKE_OSX_ARCHITECTURES 0 ARCH)
|
|
elseif(MSVC)
|
|
if("${MSVC_C_ARCHITECTURE_ID}" STREQUAL "X86")
|
|
set(ARCH "i686")
|
|
elseif("${MSVC_C_ARCHITECTURE_ID}" STREQUAL "x64")
|
|
set(ARCH "x86_64")
|
|
elseif("${MSVC_C_ARCHITECTURE_ID}" STREQUAL "ARM" OR "${MSVC_C_ARCHITECTURE_ID}" STREQUAL "ARMV7")
|
|
set(ARCH "arm")
|
|
elseif ("${MSVC_C_ARCHITECTURE_ID}" STREQUAL "ARM64" OR "${MSVC_C_ARCHITECTURE_ID}" STREQUAL "ARM64EC")
|
|
set(ARCH "aarch64")
|
|
endif()
|
|
elseif(EMSCRIPTEN)
|
|
set(ARCH "wasm32")
|
|
elseif(CMAKE_CROSSCOMPILING)
|
|
set(ARCH ${CMAKE_C_COMPILER_TARGET})
|
|
else()
|
|
# Let preprocessor parse archdetect.c and raise an error containing the arch identifier
|
|
enable_language(C)
|
|
try_run(
|
|
run_result_unused
|
|
compile_result_unused
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
${CMAKE_CURRENT_LIST_DIR}/detect-arch.c
|
|
COMPILE_OUTPUT_VARIABLE RAWOUTPUT
|
|
CMAKE_FLAGS CMAKE_OSX_ARCHITECTURES=${CMAKE_OSX_ARCHITECTURES}
|
|
)
|
|
|
|
# Find basearch tag, and extract the arch word into BASEARCH variable
|
|
string(REGEX REPLACE ".*archfound ([a-zA-Z0-9_]+).*" "\\1" ARCH "${RAWOUTPUT}")
|
|
if(NOT ARCH)
|
|
set(ARCH unknown)
|
|
endif()
|
|
endif()
|
|
|
|
# Make sure we have ARCH set
|
|
if(NOT ARCH OR ARCH STREQUAL "unknown")
|
|
set(ARCH ${CMAKE_SYSTEM_PROCESSOR})
|
|
message(STATUS "Arch not recognized, falling back to cmake arch: '${ARCH}'")
|
|
else()
|
|
message(STATUS "Arch detected: '${ARCH}'")
|
|
endif()
|
|
|
|
# Base arch detection
|
|
if("${ARCH}" MATCHES "(x86_64|AMD64|i[3-6]86)")
|
|
set(BASEARCH "x86")
|
|
set(BASEARCH_X86_FOUND TRUE)
|
|
elseif("${ARCH}" MATCHES "(arm(v[0-9])?|aarch64|cortex)")
|
|
set(BASEARCH "arm")
|
|
set(BASEARCH_ARM_FOUND TRUE)
|
|
elseif("${ARCH}" MATCHES "ppc(64(le)?)?|powerpc(64(le)?)?")
|
|
set(BASEARCH "ppc")
|
|
set(BASEARCH_PPC_FOUND TRUE)
|
|
elseif("${ARCH}" MATCHES "alpha")
|
|
set(BASEARCH "alpha")
|
|
set(BASEARCH_ALPHA_FOUND TRUE)
|
|
elseif("${ARCH}" MATCHES "blackfin")
|
|
set(BASEARCH "blackfin")
|
|
set(BASEARCH_BLACKFIN_FOUND TRUE)
|
|
elseif("${ARCH}" MATCHES "ia64")
|
|
set(BASEARCH "ia64")
|
|
set(BASEARCH_IA64_FOUND TRUE)
|
|
elseif("${ARCH}" MATCHES "mips")
|
|
set(BASEARCH "mips")
|
|
set(BASEARCH_MIPS_FOUND TRUE)
|
|
elseif("${ARCH}" MATCHES "m68k")
|
|
set(BASEARCH "m68k")
|
|
set(BASEARCH_M68K_FOUND TRUE)
|
|
elseif("${ARCH}" MATCHES "sh")
|
|
set(BASEARCH "sh")
|
|
set(BASEARCH_SH_FOUND TRUE)
|
|
elseif("${ARCH}" MATCHES "sparc[89]?")
|
|
set(BASEARCH "sparc")
|
|
set(BASEARCH_SPARC_FOUND TRUE)
|
|
elseif("${ARCH}" MATCHES "s3[679]0x?")
|
|
set(BASEARCH "s360")
|
|
set(BASEARCH_S360_FOUND TRUE)
|
|
elseif("${ARCH}" MATCHES "parisc")
|
|
set(BASEARCH "parisc")
|
|
set(BASEARCH_PARISC_FOUND TRUE)
|
|
elseif("${ARCH}" MATCHES "rs6000")
|
|
set(BASEARCH "rs6000")
|
|
set(BASEARCH_RS6000_FOUND TRUE)
|
|
elseif("${ARCH}" MATCHES "riscv(32|64)")
|
|
set(BASEARCH "riscv")
|
|
set(BASEARCH_RISCV_FOUND TRUE)
|
|
elseif("${ARCH}" MATCHES "loongarch64")
|
|
set(BASEARCH "loongarch")
|
|
set(BASEARCH_LOONGARCH_FOUND TRUE)
|
|
elseif("${ARCH}" MATCHES "wasm32")
|
|
set(BASEARCH "wasm32")
|
|
set(BASEARCH_WASM32_FOUND TRUE)
|
|
else()
|
|
set(BASEARCH "x86")
|
|
set(BASEARCH_X86_FOUND TRUE)
|
|
message(STATUS "Basearch '${ARCH}' not recognized, defaulting to 'x86'.")
|
|
endif()
|
|
message(STATUS "Basearch of '${ARCH}' has been detected as: '${BASEARCH}'")
|