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.
2 parents e9180d7 + cd3cb9c commit a2d8e43Copy full SHA for a2d8e43
src/Random123.jl
@@ -50,7 +50,7 @@ else
50
end
51
52
"True when Arm AArch64 FEAT_AES instructions have been detected."
53
-const R123_USE_ARM_AARCH64_FEAT_AES::Bool = if Sys.ARCH ≡ :aarch64
+const R123_USE_ARM_AARCH64_FEAT_AES::Bool = @static if Sys.ARCH ≡ :aarch64
54
try
55
cmd = Base.julia_cmd()
56
push!(
@@ -73,7 +73,7 @@ else
73
74
75
"True when Arm AArch32 FEAT_AES instructions have been detected."
76
-const R123_USE_ARM_AARCH32_FEAT_AES::Bool = if Sys.ARCH ≡ :aarch64
+const R123_USE_ARM_AARCH32_FEAT_AES::Bool = @static if startswith(String(Sys.ARCH), "arm")
77
78
79
0 commit comments