Skip to content
This repository was archived by the owner on Dec 14, 2023. It is now read-only.

Commit 9214ada

Browse files
committed
pnacl followup
1 parent eb531e6 commit 9214ada

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

cmd/llgo-dist/buildruntime.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ func buildRuntime() (reterr error) {
3939
return err
4040
}
4141

42-
// Always build unsafe, runtime and syscall first
42+
// Always build runtime and syscall first
4343
// TODO: Real import dependency discovery to build packages in the order they depend on each other
44-
runtimePackages := append([]string{"unsafe", "runtime", "syscall"}, strings.Split(strings.TrimSpace(string(output)), "\n")...)
44+
runtimePackages := append([]string{"runtime", "syscall"}, strings.Split(strings.TrimSpace(string(output)), "\n")...)
4545
outer:
4646
for _, pkg := range runtimePackages {
4747
// cmd's aren't packages

pkg/crypto/sha1/sha1block_libc.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-
// +build !pnacl
5+
// +build !arm
66

77
// SHA1 block step.
88
// In its own file so that a faster assembly or C version

0 commit comments

Comments
 (0)