This repository was archived by the owner on Dec 26, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +35
-0
lines changed Expand file tree Collapse file tree 3 files changed +35
-0
lines changed Original file line number Diff line number Diff line change @@ -43,4 +43,5 @@ build:ubsan --copt -fno-omit-frame-pointer
43
43
build:ubsan --linkopt -fsanitize=undefined
44
44
build:ubsan --linkopt -lubsan
45
45
46
+ import %workspace%/hooks/toolchains.rc
46
47
try-import %workspace%/user.bazelrc
Original file line number Diff line number Diff line change @@ -7,6 +7,12 @@ git_repository(
7
7
remote = "https://github.com/iotaledger/rules_iota.git" ,
8
8
)
9
9
10
+ git_repository (
11
+ name = "iota_toolchains" ,
12
+ commit = "0f93f76fdff9f091dd3a99aa3f19b5d3f4f7f7fc" ,
13
+ remote = "https://github.com/iotaledger/toolchains.git" ,
14
+ )
15
+
10
16
git_repository (
11
17
name = "entangled" ,
12
18
commit = "6ad56514a8a13fb1bf01beb10934cb9e3fd1a8a4" ,
@@ -33,3 +39,11 @@ iota_deps()
33
39
third_party_deps ()
34
40
35
41
_cc_image_repos ()
42
+
43
+ load ("@iota_toolchains//:toolchains.bzl" , "setup_initial_deps" )
44
+
45
+ setup_initial_deps ()
46
+
47
+ load ("@iota_toolchains//:defs.bzl" , "setup_toolchains_repositories" )
48
+
49
+ setup_toolchains_repositories ()
Original file line number Diff line number Diff line change
1
+
2
+ build:aarch64 --crosstool_top=@iota_toolchains//tools/aarch64--glibc--bleeding-edge-2018.07-1:toolchain
3
+ build:aarch64 --cpu=aarch64
4
+ build:aarch64 --host_crosstool_top=@bazel_tools//tools/cpp:toolchain
5
+
6
+ build:armv7 --crosstool_top=@iota_toolchains//tools/armv7-eabihf--glibc--bleeding-edge-2018.07-1:toolchain
7
+ build:armv7 --cpu=armeabi-v7a
8
+ build:armv7 --host_crosstool_top=@bazel_tools//tools/cpp:toolchain
9
+
10
+ build:i686 --crosstool_top=@iota_toolchains//tools/x86-i686--glibc--bleeding-edge-2018.07-1:toolchain
11
+ build:i686 --cpu=i686
12
+ build:i686 --host_crosstool_top=@bazel_tools//tools/cpp:toolchain
13
+
14
+ build:x86_64 --crosstool_top=@iota_toolchains//tools/x86-64-core-i7--glibc--bleeding-edge-2018.07-1:toolchain
15
+ build:x86_64 --cpu=x86_64
16
+ build:x86_64 --host_crosstool_top=@bazel_tools//tools/cpp:toolchain
17
+
18
+ build:emscripten --crosstool_top=@iota_toolchains//tools/emscripten:toolchain
19
+ build:emscripten --cpu=emscripten
20
+ build:emscripten --host_crosstool_top=@bazel_tools//tools/cpp:toolchain
You can’t perform that action at this time.
0 commit comments