We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
--build
1 parent 4f7f8ef commit 9e703aeCopy full SHA for 9e703ae
Formula/lib/libquantum.rb
@@ -27,7 +27,11 @@ class Libquantum < Formula
27
end
28
29
def install
30
- system "./configure", "--prefix=#{prefix}"
+ args = []
31
+ # Help old config scripts identify arm64 linux
32
+ args << "--build=aarch64-unknown-linux-gnu" if OS.linux? && Hardware::CPU.arm? && Hardware::CPU.is_64_bit?
33
+
34
+ system "./configure", *args, *std_configure_args
35
system "make", "install"
36
37
0 commit comments