Skip to content

Commit

Permalink
Add support for FreeBSD-amd64
Browse files Browse the repository at this point in the history
  • Loading branch information
kareigu authored and artempyanykh committed Apr 28, 2024
1 parent 6e790e5 commit 931c00e
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,17 @@ else
OS_ID := osx
endif

ifeq ($(UNAME_S),FreeBSD)
OS_ID := freebsd
endif

ifeq ($(TARGET),x86_64)
ARCH_ID := x64
endif

ifeq ($(TARGET),amd64)
ARCH_ID := x64
endif

ifeq ($(TARGET),x86)
ARCH_ID := x86
Expand Down

0 comments on commit 931c00e

Please sign in to comment.