cb424d7448
verify-patch-sanity.py validates every active recipe .patch has internally- consistent hunk line counts — catching the 'malformed patch at line N' failure at commit/CI/preflight time instead of hours into a cook. This cycle hit that class three times (qtwaylandscanner, sddm, xwayland), each only discovered when cookbook tried to apply the patch. Running it across the repo found 29 latent malformed patches (validated against GNU patch: e.g. relibc/P3-sysv-ipc reproduces 'malformed patch at line 22'). They were harmless only because they sit in vendored recipes (baked, not re- applied) — but would fail on any version-bump re-derivation. --fix recounts the hunk headers (body untouched) and repaired all 29. Wired into build-preflight.sh (Phase 1.0D) and redbear-ci.yml, with a unit test (test-patch-sanity.sh). Skips archived/legacy trees and unvalidatable formats (empty placeholders, bare-@@ git hunks).
61 lines
2.1 KiB
CMake
61 lines
2.1 KiB
CMake
# Returns the host triple.
|
|
# Invokes config.guess
|
|
|
|
function( get_host_triple var )
|
|
if( MSVC OR CMAKE_CXX_SIMULATE_ID STREQUAL "MSVC")
|
|
if( CMAKE_C_COMPILER_ARCHITECTURE_ID MATCHES "ARM64.*" )
|
|
set( value "aarch64-pc-windows-msvc" )
|
|
elseif( CMAKE_C_COMPILER_ARCHITECTURE_ID MATCHES "ARM.*" )
|
|
set( value "armv7-pc-windows-msvc" )
|
|
elseif( CMAKE_C_COMPILER_ARCHITECTURE_ID STREQUAL "x64" )
|
|
set( value "x86_64-pc-windows-msvc" )
|
|
elseif( CMAKE_C_COMPILER_ARCHITECTURE_ID STREQUAL "X86" )
|
|
set( value "i686-pc-windows-msvc" )
|
|
elseif( CMAKE_SIZEOF_VOID_P EQUAL 8 )
|
|
set( value "x86_64-pc-windows-msvc" )
|
|
else()
|
|
set( value "i686-pc-windows-msvc" )
|
|
endif()
|
|
elseif( MINGW AND NOT MSYS )
|
|
# CMake doesn't provide COMPILER_ARCHITECTURE_ID for Clang/GCC,
|
|
# but it does for MSVC.
|
|
if( CMAKE_HOST_SYSTEM_PROCESSOR MATCHES "ARM.*" )
|
|
if( CMAKE_SIZEOF_VOID_P EQUAL 8 )
|
|
set( value "aarch64-w64-windows-gnu" )
|
|
else()
|
|
set( value "armv7-w64-windows-gnu" )
|
|
endif()
|
|
else()
|
|
if( CMAKE_SIZEOF_VOID_P EQUAL 8 )
|
|
set( value "x86_64-w64-windows-gnu" )
|
|
else()
|
|
set( value "i686-w64-windows-gnu" )
|
|
endif()
|
|
endif()
|
|
elseif( CMAKE_SYSTEM_NAME MATCHES "OS390" )
|
|
set( value "s390x-ibm-zos" )
|
|
elseif( CMAKE_SYSTEM_NAME STREQUAL AIX )
|
|
# We defer to dynamic detection of the host AIX version.
|
|
if( CMAKE_SIZEOF_VOID_P EQUAL 8 )
|
|
set( value "powerpc64-ibm-aix" )
|
|
else()
|
|
set( value "powerpc-ibm-aix" )
|
|
endif()
|
|
else()
|
|
if(CMAKE_HOST_SYSTEM_NAME STREQUAL Windows AND NOT MSYS)
|
|
message(WARNING "unable to determine host target triple")
|
|
else()
|
|
set(config_guess ${LLVM_MAIN_SRC_DIR}/cmake/config.guess)
|
|
execute_process(COMMAND sh ${config_guess}
|
|
RESULT_VARIABLE TT_RV
|
|
OUTPUT_VARIABLE TT_OUT
|
|
OUTPUT_STRIP_TRAILING_WHITESPACE)
|
|
if( NOT TT_RV EQUAL 0 )
|
|
message(FATAL_ERROR "Failed to execute ${config_guess}")
|
|
endif( NOT TT_RV EQUAL 0 )
|
|
set( value ${TT_OUT} )
|
|
endif()
|
|
endif()
|
|
set( ${var} ${value} PARENT_SCOPE )
|
|
endfunction( get_host_triple var )
|