Skip to content

Commit

Permalink
Fix build flags for s390x, ppc64, and ppc64le (#489)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexsaezm committed Jul 21, 2023
1 parent 1c3ac63 commit 08598ae
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions starlark/int_generic.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//go:build (!linux && !darwin && !dragonfly && !freebsd && !netbsd && !solaris) || (!amd64 && !arm64 && !mips64x && !ppc64x && !loong64)
// +build !linux,!darwin,!dragonfly,!freebsd,!netbsd,!solaris !amd64,!arm64,!mips64x,!ppc64x,!loong64
//go:build (!linux && !darwin && !dragonfly && !freebsd && !netbsd && !solaris) || (!amd64 && !arm64 && !mips64x && !ppc64 && !ppc64le && !loong64 && !s390x)
// +build !linux,!darwin,!dragonfly,!freebsd,!netbsd,!solaris !amd64,!arm64,!mips64x,!ppc64,!ppc64le,!loong64,!s390x

package starlark

Expand Down
4 changes: 2 additions & 2 deletions starlark/int_posix64.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//go:build (linux || darwin || dragonfly || freebsd || netbsd || solaris) && (amd64 || arm64 || mips64x || ppc64x || loong64)
//go:build (linux || darwin || dragonfly || freebsd || netbsd || solaris) && (amd64 || arm64 || mips64x || ppc64 || ppc64le || loong64 || s390x)
// +build linux darwin dragonfly freebsd netbsd solaris
// +build amd64 arm64 mips64x ppc64x loong64
// +build amd64 arm64 mips64x ppc64 ppc64le loong64 s390x

package starlark

Expand Down

0 comments on commit 08598ae

Please sign in to comment.