Skip to content

Commit

Permalink
Add support for LoongArch64 (#1003)
Browse files Browse the repository at this point in the history
  • Loading branch information
fangyaling authored Apr 30, 2024
1 parent f31bab5 commit 5f17db5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ ALL_LINUX = linux-amd64 \
linux-mips64 \
linux-mips64le \
linux-mips-softfloat \
linux-riscv64
linux-riscv64 \
linux-loong64

ALL_FREEBSD = freebsd-amd64 \
freebsd-arm64
Expand Down
4 changes: 2 additions & 2 deletions udp/udp_linux_64.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//go:build linux && (amd64 || arm64 || ppc64 || ppc64le || mips64 || mips64le || s390x || riscv64) && !android && !e2e_testing
//go:build linux && (amd64 || arm64 || ppc64 || ppc64le || mips64 || mips64le || s390x || riscv64 || loong64) && !android && !e2e_testing
// +build linux
// +build amd64 arm64 ppc64 ppc64le mips64 mips64le s390x riscv64
// +build amd64 arm64 ppc64 ppc64le mips64 mips64le s390x riscv64 loong64
// +build !android
// +build !e2e_testing

Expand Down

0 comments on commit 5f17db5

Please sign in to comment.