mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-10 03:47:29 -03:00
Merge bitcoin/bitcoin#28630: depends: update LD64_VERSION
to 711
092daa2f95
contrib: add test for macOS linker version to symbol-check (fanquake)cefbf0bc20
depends: update LD64_VERSION to 711 (fanquake) Pull request description: I forgot to do this in7d5815293e
. Add a test so it's impossible to forget. ACKs for top commit: TheCharlatan: utACK092daa2f95
achow101: ACK092daa2f95
jarolrod: ACK092daa2f95
hebasto: ACK092daa2f95
. laanwj: ACK092daa2f95
Tree-SHA512: 37f0bdfd6607a7760eabe5efe279532ba0c59c0915161e08d5e3b9a0b7705839d62537d6e17406062f6a0a1db5407575da7cd671e9cb916e422e77f5649c6e2b
This commit is contained in:
commit
76d89579b5
2 changed files with 7 additions and 1 deletions
|
@ -240,6 +240,11 @@ def check_MACHO_sdk(binary) -> bool:
|
|||
return True
|
||||
return False
|
||||
|
||||
def check_MACHO_ld64(binary) -> bool:
|
||||
if binary.build_version.tools[0].version == [711, 0, 0]:
|
||||
return True
|
||||
return False
|
||||
|
||||
def check_PE_libraries(binary) -> bool:
|
||||
ok: bool = True
|
||||
for dylib in binary.libraries:
|
||||
|
@ -278,6 +283,7 @@ lief.EXE_FORMATS.MACHO: [
|
|||
('DYNAMIC_LIBRARIES', check_MACHO_libraries),
|
||||
('MIN_OS', check_MACHO_min_os),
|
||||
('SDK', check_MACHO_sdk),
|
||||
('LD64', check_MACHO_ld64),
|
||||
],
|
||||
lief.EXE_FORMATS.PE: [
|
||||
('DYNAMIC_LIBRARIES', check_PE_libraries),
|
||||
|
|
|
@ -2,7 +2,7 @@ OSX_MIN_VERSION=11.0
|
|||
OSX_SDK_VERSION=11.0
|
||||
XCODE_VERSION=12.2
|
||||
XCODE_BUILD_ID=12B45b
|
||||
LD64_VERSION=609
|
||||
LD64_VERSION=711
|
||||
|
||||
OSX_SDK=$(SDK_PATH)/Xcode-$(XCODE_VERSION)-$(XCODE_BUILD_ID)-extracted-SDK-with-libcxx-headers
|
||||
|
||||
|
|
Loading…
Reference in a new issue