diff --git a/Library/Homebrew/extend/os/linux/linkage_checker.rb b/Library/Homebrew/extend/os/linux/linkage_checker.rb index b708cf23a9..2f672353d3 100644 --- a/Library/Homebrew/extend/os/linux/linkage_checker.rb +++ b/Library/Homebrew/extend/os/linux/linkage_checker.rb @@ -7,6 +7,7 @@ class LinkageChecker # Libraries provided by glibc and gcc. SYSTEM_LIBRARY_ALLOWLIST = %w[ ld-linux-x86-64.so.2 + ld-linux-aarch64.so.1 libanl.so.1 libatomic.so.1 libc.so.6 diff --git a/Library/Homebrew/hardware.rb b/Library/Homebrew/hardware.rb index 52bf2e5e88..804085f0e8 100644 --- a/Library/Homebrew/hardware.rb +++ b/Library/Homebrew/hardware.rb @@ -11,7 +11,7 @@ module Hardware INTEL_64BIT_ARCHS = [:x86_64].freeze PPC_32BIT_ARCHS = [:ppc, :ppc32, :ppc7400, :ppc7450, :ppc970].freeze PPC_64BIT_ARCHS = [:ppc64, :ppc64le, :ppc970].freeze - ARM_64BIT_ARCHS = [:arm64].freeze + ARM_64BIT_ARCHS = [:arm64, :aarch64].freeze ALL_ARCHS = [ *INTEL_32BIT_ARCHS, *INTEL_64BIT_ARCHS,