-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathWORKSPACE
More file actions
29 lines (25 loc) · 1.37 KB
/
Copy pathWORKSPACE
File metadata and controls
29 lines (25 loc) · 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
workspace(name = "iota_toolchains")
new_http_archive(
name = 'bootlin_aarch64_toolchain',
build_file = 'compilers/aarch64--glibc--bleeding-edge-2018.07-1.BUILD',
url = 'https://toolchains.bootlin.com/downloads/releases/toolchains/aarch64/tarballs/aarch64--glibc--bleeding-edge-2018.07-1.tar.bz2',
strip_prefix = 'aarch64--glibc--bleeding-edge-2018.07-1',
)
new_http_archive(
name = 'bootlin_arm_toolchain',
build_file = 'compilers/armv7-eabihf--glibc--bleeding-edge-2018.07-1.BUILD',
url = 'https://toolchains.bootlin.com/downloads/releases/toolchains/armv7-eabihf/tarballs/armv7-eabihf--glibc--bleeding-edge-2018.07-1.tar.bz2',
strip_prefix = 'armv7-eabihf--glibc--bleeding-edge-2018.07-1',
)
new_http_archive(
name = 'bootlin_i686_toolchain',
build_file = 'compilers/x86-i686--glibc--bleeding-edge-2018.07-1.BUILD',
url = 'https://toolchains.bootlin.com/downloads/releases/toolchains/x86-i686/tarballs/x86-i686--glibc--bleeding-edge-2018.07-1.tar.bz2',
strip_prefix = 'x86-i686--glibc--bleeding-edge-2018.07-1',
)
new_http_archive(
name = 'bootlin_x86_64_toolchain',
build_file = 'compilers/x86-64-core-i7--glibc--bleeding-edge-2018.07-1.BUILD',
url = 'https://toolchains.bootlin.com/downloads/releases/toolchains/x86-64-core-i7/tarballs/x86-64-core-i7--glibc--bleeding-edge-2018.07-1.tar.bz2',
strip_prefix = 'x86-64-core-i7--glibc--bleeding-edge-2018.07-1',
)