From 7eb2134fa49b849a09c0f6db9f4ba53dbecb7250 Mon Sep 17 00:00:00 2001 From: Francois-Xavier Coudert Date: Fri, 1 Dec 2023 15:45:06 +0100 Subject: [PATCH] Add M3 processors --- Library/Homebrew/extend/os/mac/hardware/cpu.rb | 2 ++ Library/Homebrew/test/hardware/cpu_spec.rb | 1 + 2 files changed, 3 insertions(+) diff --git a/Library/Homebrew/extend/os/mac/hardware/cpu.rb b/Library/Homebrew/extend/os/mac/hardware/cpu.rb index 9e79aa667739b..3b04fc2ea2790 100644 --- a/Library/Homebrew/extend/os/mac/hardware/cpu.rb +++ b/Library/Homebrew/extend/os/mac/hardware/cpu.rb @@ -109,6 +109,8 @@ def arm_family :arm_firestorm_icestorm when 0xda33d83d # ARMv8.5-A (Blizzard, Avalanche) :arm_blizzard_avalanche + when 0x8765edea # ARMv8.6-A (Everest, Sawtooth) + :arm_everest_sawtooth else :dunno end diff --git a/Library/Homebrew/test/hardware/cpu_spec.rb b/Library/Homebrew/test/hardware/cpu_spec.rb index f7274096166ef..a5c362a33ef1d 100644 --- a/Library/Homebrew/test/hardware/cpu_spec.rb +++ b/Library/Homebrew/test/hardware/cpu_spec.rb @@ -28,6 +28,7 @@ :amd_k12, :arm, :arm_blizzard_avalanche, + :arm_everest_sawtooth, :arm_firestorm_icestorm, :arm_hurricane_zephyr, :arm_lightning_thunder,