Skip to content

Commit

Permalink
Try using 64 bit
Browse files Browse the repository at this point in the history
  • Loading branch information
Ahajha committed Jan 28, 2024
1 parent 05fd06d commit 073c00d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion recipes/tk/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def generate(self):
f"--enable-symbols={yes_no(self.settings.build_type == 'Debug')}"
)
tc.configure_args.append(
f"--enable-64bit={yes_no(self.settings.arch == 'x86_64')}"
f"--enable-64bit={yes_no(self.settings.arch in ('x86_64', 'armv8'))}"
)
tc.configure_args.append(f"--enable-aqua={yes_no(is_apple_os(self))}")
tc.configure_args.append(
Expand Down

0 comments on commit 073c00d

Please sign in to comment.