prof: allow to run on Apple Silicon

This commit is contained in:
Dustin Rodrigues 2021-04-27 00:09:45 -04:00
parent 1781f01d28
commit 68246e48c7
No known key found for this signature in database
GPG Key ID: 140DABE812A1491D

View File

@ -13,8 +13,6 @@ module Homebrew
Homebrew::CLI::Parser.new do
description <<~EOS
Run Homebrew with a Ruby profiler. For example, `brew prof readall`.
*Note:* Not (yet) working on Apple Silicon.
EOS
switch "--stackprof",
description: "Use `stackprof` instead of `ruby-prof` (the default)."
@ -24,8 +22,6 @@ module Homebrew
end
def prof
raise UsageError, "not (yet) working on Apple Silicon!" if Hardware::CPU.arm?
args = prof_args.parse
brew_rb = (HOMEBREW_LIBRARY_PATH/"brew.rb").resolved_path