summaryrefslogtreecommitdiffhomepage
path: root/vdso
diff options
context:
space:
mode:
Diffstat (limited to 'vdso')
-rw-r--r--vdso/BUILD10
1 files changed, 9 insertions, 1 deletions
diff --git a/vdso/BUILD b/vdso/BUILD
index c43d24070..bcf527f84 100644
--- a/vdso/BUILD
+++ b/vdso/BUILD
@@ -5,6 +5,11 @@
package(licenses = ["notice"])
+config_setting(
+ name = "x86_64",
+ constraint_values = ["@bazel_tools//platforms:x86_64"],
+)
+
genrule(
name = "vdso",
srcs = [
@@ -30,7 +35,10 @@ genrule(
# VDSO has no hooks to handle failures.
"-fno-stack-protector " +
"-fuse-ld=gold " +
- "-m64 " +
+ select({
+ ":x86_64": "-m64 ",
+ "//conditions:default": "",
+ }) +
"-shared " +
"-nostdlib " +
"-Wl,-soname=linux-vdso.so.1 " +