File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -31,8 +31,11 @@ class SPARK2014(spec("common")):
31
31
def cvc5_binary(self):
32
32
if self.env.host.os.name == "windows":
33
33
fn = "cvc5-Win64.exe"
34
- elif self.env.host.os.name == "darwin":
34
+ elif self.env.host.os.name == "darwin" and \
35
+ self.env.target.cpu.name == "x86_64":
35
36
fn = "cvc5-macOS"
37
+ elif self.env.host.os.name == "darwin":
38
+ fn = "cvc5-macOS-arm64"
36
39
else:
37
40
fn = "cvc5-linux"
38
41
return fn
@@ -41,8 +44,11 @@ class SPARK2014(spec("common")):
41
44
def z3_zip(self):
42
45
if self.env.host.os.name == "windows":
43
46
fn = "z3-4.12.2-x64-win.zip"
44
- elif self.env.host.os.name == "darwin":
47
+ elif self.env.host.os.name == "darwin" and \
48
+ self.env.target.cpu.name == "x86_64":
45
49
fn = "z3-4.12.2-x64-osx-10.16.zip"
50
+ elif self.env.host.os.name == "darwin":
51
+ fn = "z3-4.12.2-arm64-osx-11.0.zip"
46
52
else:
47
53
fn = "z3-4.12.2-x64-glibc-2.31.zip"
48
54
return fn
You can’t perform that action at this time.
0 commit comments