Skip to content

Commit

Permalink
mac only on arm64
Browse files Browse the repository at this point in the history
  • Loading branch information
arnetheduck committed May 15, 2024
1 parent 63fbd1b commit 60331a0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion hashtree_abi.nim
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ const srcDir = currentSourcePath.parentDir.replace('\\', '/') & "/src/"
# general
when
((defined(linux) or defined(windows)) and defined(gcc)) or
((defined(linux) or defined(macosx)) and defined(clang)):
(defined(linux) and defined(clang)) or
(defined(macosx) and defined(clang) and defined(arm64)):

const cflags =
when defined(clang) and defined(linux):
Expand Down

0 comments on commit 60331a0

Please sign in to comment.