Skip to content

Commit 752af5f

Browse files
committed
change build tags aarch64 -> arm64
Signed-off-by: leongross <[email protected]>
1 parent 7a644d9 commit 752af5f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/os/exec_linux.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5-
//go:build linux && !baremetal && !tinygo.wasm && !aarch64
5+
//go:build linux && !baremetal && !tinygo.wasm && !arm64
66

77
package os
88

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5-
//go:build linux && !baremetal && !tinygo.wasm && aarch64
5+
//go:build linux && !baremetal && !tinygo.wasm && arm64
66

77
package os
88

src/os/osexec.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//go:build linux && !baremetal && !darwin && !tinygo.wasm && !aarch64
1+
//go:build linux && !baremetal && !darwin && !tinygo.wasm && !arm64
22

33
// arm64 does not have a fork syscall, so ignore it for now
44
// TODO: add support for arm64 with clone or use musl implementation

0 commit comments

Comments
 (0)