This repository has been archived by the owner on Jul 19, 2021. It is now read-only.
forked from stackb/rules_proto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
repositories.bzl
58 lines (54 loc) · 1.69 KB
/
repositories.bzl
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
BUILD_FILE = """load(
"@build_bazel_rules_swift//swift/internal:swift_toolchain.bzl",
"swift_toolchain",
)
swift_toolchain(
name = "toolchain",
arch = "{arch}",
clang_executable = "{clang_executable}",
os = "{os}",
root = "{root}",
visibility = ["//visibility:public"],
)
"""
def _swift_toolchain_impl(repository_ctx):
"""Creates BUILD targets for the Swift toolchain on Linux (see Dockerfile in this repo).
Args:
repository_ctx: The repository rule context.
"""
repository_ctx.file("BUILD.bazel", BUILD_FILE.format(
arch = repository_ctx.attr.arch,
clang_executable = repository_ctx.attr.clang_executable,
os = repository_ctx.attr.os,
root = repository_ctx.attr.root,
))
_swift_toolchain = repository_rule(
implementation = _swift_toolchain_impl,
attrs = {
"clang_executable": attr.string(
doc = "Path to clang",
default = "/usr/bin/clang",
),
"arch": attr.string(
doc = "Host architecture",
default = "x86_64",
),
"os": attr.string(
doc = "Host os",
default = "linux",
),
"root": attr.string(
doc = "Root swit dir (typically path/to/swiftc.dirname.dirname)",
default = "/usr",
),
},
)
def swift_toolchain(**kwargs):
"""
swift_toolchain - configure toolchain for swift specifically for use within
a docker sandbox.
"""
# This should probably always be 'build_bazel_rules_swift_local_config', but
# make it configurable just in case.
kwargs["name"] = kwargs.pop("name", "build_bazel_rules_swift_local_config")
_swift_toolchain(**kwargs)