We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 665ff2d commit 431cf49Copy full SHA for 431cf49
Formula/j/julia.rb
@@ -111,7 +111,7 @@ def install
111
haswell,-rdrnd,base(1)
112
x86-64-v4,-rdrnd,base(1)]
113
end
114
- args << "JULIA_CPU_TARGET=#{cpu_targets.join(";")}"
+ args << "JULIA_CPU_TARGET=#{cpu_targets.join(";")}" if !OS.linux? || !Hardware::CPU.arm?
115
user = begin
116
tap.user
117
rescue
@@ -152,6 +152,9 @@ def install
152
153
system "make", *args, "install"
154
155
+ # FIXME: TESTING
156
+ return if OS.linux? && Hardware::CPU.arm?
157
+
158
if OS.linux?
159
# Replace symlinks referencing Cellar paths with ones using opt paths
160
deps.reject(&:build?).map(&:to_formula).map(&:opt_lib).each do |libdir|
0 commit comments