Skip to content

Commit

Permalink
add syso binaries
Browse files Browse the repository at this point in the history
  • Loading branch information
potuz committed Jun 13, 2024
1 parent c5ea6d1 commit 33fda59
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 0 deletions.
Binary file added hashtree_amd64.syso
Binary file not shown.
Binary file added hashtree_darwin_arm64.syso
Binary file not shown.
Binary file added hashtree_linux_arm64.syso
Binary file not shown.
Binary file added hashtree_windows_amd64.syso
Binary file not shown.
5 changes: 5 additions & 0 deletions src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,11 @@ endif
# ARM architecture detection
ifdef CC
ARM = $(shell $(CC) -dM -E - < /dev/null | grep "aarch" | awk '{ print $$3 }')
ifneq ($(findstring mingw, $(CC)),)
ifneq ($(ARM),1)
PLATFORM = Windows
endif
endif
else
ARCH = $(shell uname -m)
ARM = $(shell echo $(ARCH) | grep -E '^(arm|aarch64)' >/dev/null && echo 1 || echo 0)
Expand Down

0 comments on commit 33fda59

Please sign in to comment.