Skip to content

Commit

Permalink
Try using unix build system on mac
Browse files Browse the repository at this point in the history
  • Loading branch information
Ahajha committed Jan 28, 2024
1 parent 073c00d commit 3bc0da0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions 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 in ('x86_64', 'armv8'))}"
f"--enable-64bit={yes_no(self.settings.arch == 'x86_64')}"
)
tc.configure_args.append(f"--enable-aqua={yes_no(is_apple_os(self))}")
tc.configure_args.append(
Expand All @@ -140,7 +140,7 @@ def generate(self):

def _get_default_build_system(self):
if is_apple_os(self):
return "macosx"
return "unix"
elif self.settings.os in ("Linux", "FreeBSD"):
return "unix"
elif self.settings.os == "Windows":
Expand Down

0 comments on commit 3bc0da0

Please sign in to comment.