summaryrefslogtreecommitdiffhomepage
path: root/WORKSPACE
diff options
context:
space:
mode:
authorAndrei Vagin <avagin@google.com>2020-12-30 01:28:26 -0800
committerAndrei Vagin <avagin@gmail.com>2021-01-07 17:41:43 -0800
commit8de562b79942f5383ffbe67873df07509ca7fcb0 (patch)
tree319862c9742914020a08a6087d1f5054c3040b4e /WORKSPACE
parent599a3d0fb4cabbe6c56f4ac34dc9381eee365f52 (diff)
Add ARM smoke test
make BAZEL_CONFIG=aarch64 arm-qemu-smoke-test Signed-off-by: Andrei Vagin <avagin@gmail.com>
Diffstat (limited to 'WORKSPACE')
-rw-r--r--WORKSPACE14
1 files changed, 14 insertions, 0 deletions
diff --git a/WORKSPACE b/WORKSPACE
index 72f9a89cc..1bea0a3c6 100644
--- a/WORKSPACE
+++ b/WORKSPACE
@@ -83,6 +83,20 @@ http_archive(
],
)
+# Load C++ cross-compilation toolchains.
+http_archive(
+ name = "coral_crosstool",
+ sha256 = "088ef98b19a45d7224be13636487e3af57b1564880b67df7be8b3b7eee4a1bfc",
+ strip_prefix = "crosstool-142e930ac6bf1295ff3ba7ba2b5b6324dfb42839",
+ urls = [
+ "https://github.com/google-coral/crosstool/archive/142e930ac6bf1295ff3ba7ba2b5b6324dfb42839.tar.gz",
+ ],
+)
+
+load("@coral_crosstool//:configure.bzl", "cc_crosstool")
+
+cc_crosstool(name = "crosstool")
+
# Load protobuf dependencies.
http_archive(
name = "rules_proto",