summaryrefslogtreecommitdiffhomepage
path: root/pkg/sleep/commit_arm64.s
diff options
context:
space:
mode:
authorAnton Gyllenberg <anton@iki.fi>2018-09-27 12:51:18 -0700
committerShentubot <shentubot@google.com>2018-09-27 12:53:10 -0700
commit68ac2ad1e1f16e65d9d1318d6827edf8487578d0 (patch)
treed35e5428ae779f49950730c6f3c2da0f86ff6f83 /pkg/sleep/commit_arm64.s
parent234f36b6f2cb0db74d119079e5244619d6ea38ad (diff)
netstack: make go:linkname work for all architectures
The //go:linkname directive requires the presence of assembly files in the package. Even an empty file will do. There was an empty assembly file commit_arm64.s, but that is limited to GOARCH=arm64. Renaming to empty.s will remove the unnecessary build constraint and allow building netstack for other architectures than amd64 and arm64. Without this, building directly with go (not bazel) for e.g., GOARCH=arm gives: sleep/sleep_unsafe.go:88:6: missing function body sleep/sleep_unsafe.go:91:6: missing function body Change-Id: I29d1d13e1ff31506a174d4595b8cd57fa58bf52b PiperOrigin-RevId: 214820299
Diffstat (limited to 'pkg/sleep/commit_arm64.s')
-rw-r--r--pkg/sleep/commit_arm64.s15
1 files changed, 0 insertions, 15 deletions
diff --git a/pkg/sleep/commit_arm64.s b/pkg/sleep/commit_arm64.s
deleted file mode 100644
index 8aca31bee..000000000
--- a/pkg/sleep/commit_arm64.s
+++ /dev/null
@@ -1,15 +0,0 @@
-// Copyright 2018 Google Inc.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-// Empty assembly file so empty func definitions work.