-
Notifications
You must be signed in to change notification settings - Fork 648
Expand file tree
/
Copy pathtoolchain.bzl
More file actions
1007 lines (909 loc) · 43.3 KB
/
Copy pathtoolchain.bzl
File metadata and controls
1007 lines (909 loc) · 43.3 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
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
"""# Rust Toolchains
Toolchain rules for Rust.
"""
load("@bazel_skylib//rules:common_settings.bzl", "BuildSettingInfo")
load("@rules_cc//cc/common:cc_common.bzl", "cc_common")
load("@rules_cc//cc/common:cc_info.bzl", "CcInfo")
load("//rust/platform:triple.bzl", "triple")
load("//rust/private:common.bzl", "rust_common")
load("//rust/private:debug_info.bzl", "RustDebugInfoInfo")
load("//rust/private:lto.bzl", "RustLtoInfo")
load("//rust/private:opt_level.bzl", "RustOptLevelInfo")
load(
"//rust/private:rust_allocator_libraries.bzl",
"make_libstd_and_allocator_ccinfo",
)
load("//rust/private:semver.bzl", "semver")
load("//rust/private:strip_level.bzl", "RustStripLevelInfo")
load(
"//rust/private:utils.bzl",
"deduplicate",
"find_cc_toolchain",
"is_exec_configuration",
"is_std_dylib",
"make_static_lib_symlink",
)
load("//rust/settings:incompatible.bzl", "IncompatibleFlagInfo")
def _rust_stdlib_filegroup_impl(ctx):
rust_std = ctx.files.srcs
dot_a_files = []
between_alloc_and_core_files = []
core_files = []
between_core_and_std_files = []
std_files = []
test_files = []
memchr_files = []
alloc_files = []
self_contained_files = [
file
for file in rust_std
if file.basename.endswith(".o") and "self-contained" in file.path
]
panic_files = []
std_rlibs = [f for f in rust_std if f.basename.endswith(".rlib")]
has_profiler_builtins = any(["profiler_builtins" in f.basename for f in std_rlibs])
if std_rlibs:
# test depends on std
# std depends on everything except test
#
# core only depends on alloc, but we poke adler in there
# because that needs to be before miniz_oxide
#
# panic_unwind depends on unwind, alloc, cfg_if, compiler_builtins, core, libc
# panic_abort depends on alloc, cfg_if, compiler_builtins, core, libc
#
# alloc depends on the allocator_library if it's configured, but we
# do that later.
dot_a_files = [make_static_lib_symlink(ctx.label.package, ctx.actions, f) for f in std_rlibs]
alloc_files = [f for f in dot_a_files if "alloc" in f.basename and "std" not in f.basename]
between_alloc_and_core_files = [f for f in dot_a_files if "compiler_builtins" in f.basename]
core_files = [f for f in dot_a_files if ("core" in f.basename or "adler" in f.basename) and "std" not in f.basename]
panic_files = [f for f in dot_a_files if any([c in f.basename for c in ["cfg_if", "libc", "panic_abort", "panic_unwind", "unwind"]])]
between_core_and_std_files = [
f
for f in dot_a_files
if "alloc" not in f.basename and "compiler_builtins" not in f.basename and "core" not in f.basename and "adler" not in f.basename and "std" not in f.basename and "memchr" not in f.basename and "test" not in f.basename
]
memchr_files = [f for f in dot_a_files if "memchr" in f.basename]
std_files = [f for f in dot_a_files if "std" in f.basename]
test_files = [f for f in dot_a_files if "test" in f.basename]
partitioned_files_len = len(alloc_files) + len(between_alloc_and_core_files) + len(core_files) + len(between_core_and_std_files) + len(memchr_files) + len(std_files) + len(test_files)
if partitioned_files_len != len(dot_a_files):
partitioned = alloc_files + between_alloc_and_core_files + core_files + between_core_and_std_files + memchr_files + std_files + test_files
for f in sorted(partitioned):
# buildifier: disable=print
print("File partitioned: {}".format(f.basename))
fail("rust_toolchain couldn't properly partition rlibs in rust_std. Partitioned {} out of {} files. This is probably a bug in the rule implementation.".format(partitioned_files_len, len(dot_a_files)))
std_dylib = None
for file in rust_std:
if is_std_dylib(file):
std_dylib = file
break
return [
DefaultInfo(
files = depset(ctx.files.srcs),
runfiles = ctx.runfiles(ctx.files.srcs),
),
rust_common.stdlib_info(
std_rlibs = std_rlibs,
dot_a_files = dot_a_files,
between_alloc_and_core_files = between_alloc_and_core_files,
core_files = core_files,
between_core_and_std_files = between_core_and_std_files,
std_files = std_files,
std_dylib = std_dylib,
test_files = test_files,
memchr_files = memchr_files,
alloc_files = alloc_files,
self_contained_files = self_contained_files,
panic_files = panic_files,
has_profiler_builtins = has_profiler_builtins,
srcs = ctx.attr.srcs,
),
]
rust_stdlib_filegroup = rule(
doc = "A dedicated filegroup-like rule for Rust stdlib artifacts.",
implementation = _rust_stdlib_filegroup_impl,
attrs = {
"srcs": attr.label_list(
allow_files = True,
doc = "The list of targets/files that are components of the rust-stdlib file group",
mandatory = True,
),
},
)
def _experimental_link_std_dylib(ctx):
return not is_exec_configuration(ctx) and \
ctx.attr.experimental_link_std_dylib[BuildSettingInfo].value and \
ctx.attr.rust_std[rust_common.stdlib_info].std_dylib != None
def _symlink_sysroot_tree(ctx, name, target, target_files = None):
"""Generate a set of symlinks to files from another target
Args:
ctx (ctx): The toolchain's context object
name (str): The name of the sysroot directory (typically `ctx.label.name`)
target (Target): A target owning files to symlink
target_files (depset): An optional depset to use in place of `target.files`.
Returns:
depset[File]: A depset of the generated symlink files
"""
tree_files = []
if target_files == None:
target_files = target.files
for file in target_files.to_list():
# Parse the path to the file relative to the workspace root so a
# symlink matching this path can be created within the sysroot.
# The code blow attempts to parse any workspace names out of the
# path. For local targets, this code is a noop.
if target.label.workspace_root:
file_path = file.path.split(target.label.workspace_root, 1)[-1]
else:
file_path = file.path
symlink = ctx.actions.declare_file("{}/{}".format(name, file_path.lstrip("/")))
ctx.actions.symlink(
output = symlink,
target_file = file,
)
tree_files.append(symlink)
return depset(tree_files)
def _symlink_sysroot_bin(ctx, name, directory, target):
"""Crete a symlink to a target file.
Args:
ctx (ctx): The rule's context object
name (str): A common name for the output directory
directory (str): The directory under `name` to put the file in
target (File): A File object to symlink to
Returns:
File: A newly generated symlink file
"""
symlink = ctx.actions.declare_file("{}/{}/{}".format(
name,
directory,
target.basename,
))
ctx.actions.symlink(
output = symlink,
target_file = target,
is_executable = True,
)
return symlink
def _generate_sysroot(
ctx,
rustc,
rustdoc,
rustc_lib,
cargo = None,
clippy = None,
cargo_clippy = None,
llvm_tools = None,
rust_std = None,
rustfmt = None,
linker = None,
rust_objcopy = None):
"""Generate a rust sysroot from collection of toolchain components
Args:
ctx (ctx): A context object from a `rust_toolchain` rule.
rustc (File): The path to a `rustc` executable.
rustdoc (File): The path to a `rustdoc` executable.
rustc_lib (Target): A collection of Files containing dependencies of `rustc`.
cargo (File, optional): The path to a `cargo` executable.
cargo_clippy (File, optional): The path to a `cargo-clippy` executable.
clippy (File, optional): The path to a `clippy-driver` executable.
llvm_tools (Target, optional): A collection of llvm tools used by `rustc`.
rust_std (Target, optional): A collection of Files containing Rust standard library components.
rustfmt (File, optional): The path to a `rustfmt` executable.
linker (Target, optional): The linker target (e.g. `rust-lld`).
rust_objcopy (File, optional): The path to a `rust-objcopy` executable.
Returns:
struct: A struct of generated files representing the new sysroot
"""
name = ctx.label.name
# Define runfiles
direct_files = []
transitive_file_sets = []
# Rustc
sysroot_rustc = _symlink_sysroot_bin(ctx, name, "bin", rustc)
direct_files.append(sysroot_rustc)
# Rustc dependencies
sysroot_rustc_lib = None
if rustc_lib:
sysroot_rustc_lib = _symlink_sysroot_tree(ctx, name, rustc_lib)
transitive_file_sets.extend([sysroot_rustc_lib])
# Rustdoc
sysroot_rustdoc = _symlink_sysroot_bin(ctx, name, "bin", rustdoc)
direct_files.append(sysroot_rustdoc)
# Clippy
sysroot_clippy = None
if clippy:
sysroot_clippy = _symlink_sysroot_bin(ctx, name, "bin", clippy)
direct_files.append(sysroot_clippy)
# Cargo
sysroot_cargo = None
if cargo:
sysroot_cargo = _symlink_sysroot_bin(ctx, name, "bin", cargo)
direct_files.append(sysroot_cargo)
# Cargo-clippy
sysroot_cargo_clippy = None
if cargo_clippy:
sysroot_cargo_clippy = _symlink_sysroot_bin(ctx, name, "bin", cargo_clippy)
direct_files.append(sysroot_cargo_clippy)
# Rustfmt
sysroot_rustfmt = None
if rustfmt:
sysroot_rustfmt = _symlink_sysroot_bin(ctx, name, "bin", rustfmt)
direct_files.append(sysroot_rustfmt)
# Linker
sysroot_linker = None
if linker:
linker_files = linker[DefaultInfo].files.to_list()
if not len(linker_files) == 1:
fail("`rust_toolchain.linker` is expected to be represted by one file. Found {}. Please update {}".format(
len(linker_files),
linker.label,
))
linker_bin = linker_files[0]
# Extract lib/rustlib/{triple}/bin from linker source path.
# rustc adds {sysroot}/lib/rustlib/{host}/bin/ to PATH when invoking
# linkers, so tools like wasm-component-ld can find rust-lld there.
dest = "bin"
if "/lib/rustlib/" in linker_bin.dirname:
idx = linker_bin.dirname.find("/lib/rustlib/")
dest = linker_bin.dirname[idx + 1:]
sysroot_linker = _symlink_sysroot_bin(ctx, name, dest, linker_bin)
sysroot_linker_files = _symlink_sysroot_tree(ctx, name, linker, linker[DefaultInfo].default_runfiles.files)
direct_files.append(sysroot_linker)
transitive_file_sets.append(sysroot_linker_files)
# rust-objcopy. rustc invokes this when `-Cstrip=debuginfo` is set and
# looks for it inside the sysroot at lib/rustlib/{triple}/bin, so it
# needs to land at the same relative path under the generated sysroot
# and be declared as an action input.
if rust_objcopy:
dest = "bin"
if "/lib/rustlib/" in rust_objcopy.dirname:
idx = rust_objcopy.dirname.find("/lib/rustlib/")
dest = rust_objcopy.dirname[idx + 1:]
sysroot_rust_objcopy = _symlink_sysroot_bin(ctx, name, dest, rust_objcopy)
direct_files.append(sysroot_rust_objcopy)
# Llvm tools
sysroot_llvm_tools = None
if llvm_tools:
sysroot_llvm_tools = _symlink_sysroot_tree(ctx, name, llvm_tools)
transitive_file_sets.extend([sysroot_llvm_tools])
# Rust standard library
sysroot_rust_std = None
if rust_std:
sysroot_rust_std = _symlink_sysroot_tree(ctx, name, rust_std)
transitive_file_sets.extend([sysroot_rust_std])
# Made available to support $(location) expansion in stdlib_linkflags and extra_rustc_flags.
transitive_file_sets.append(depset(ctx.files.rust_std))
# Declare a file in the root of the sysroot to make locating the sysroot easy
sysroot_anchor = ctx.actions.declare_file("{}/rust.sysroot".format(name))
ctx.actions.write(
output = sysroot_anchor,
content = "\n".join([
"cargo: {}".format(cargo),
"clippy: {}".format(clippy),
"cargo-clippy: {}".format(cargo_clippy),
"linker: {}".format(linker),
"llvm_tools: {}".format(llvm_tools),
"rust_std: {}".format(rust_std),
"rustc_lib: {}".format(rustc_lib),
"rustc: {}".format(rustc),
"rustdoc: {}".format(rustdoc),
"rustfmt: {}".format(rustfmt),
]),
)
# Create a depset of all sysroot files (symlinks and their real paths)
all_files = depset(direct_files, transitive = transitive_file_sets)
return struct(
all_files = all_files,
cargo = sysroot_cargo,
cargo_clippy = sysroot_cargo_clippy,
clippy = sysroot_clippy,
linker = sysroot_linker,
rust_std = sysroot_rust_std,
rustc = sysroot_rustc,
rustc_lib = sysroot_rustc_lib,
rustdoc = sysroot_rustdoc,
rustfmt = sysroot_rustfmt,
sysroot_anchor = sysroot_anchor,
)
def _experimental_use_cc_common_link(ctx):
return ctx.attr.experimental_use_cc_common_link[BuildSettingInfo].value
def _require_explicit_unstable_features(ctx):
return ctx.attr.require_explicit_unstable_features[BuildSettingInfo].value
_DIGITS = "0123456789"
def _is_semver_string(version):
"""Whether `version` looks like a `MAJOR.MINOR.PATCH[-pre][+build]` semver string.
The `rust_toolchain.version` attribute also accepts channel labels like
`"nightly"` or `"beta"` (and is sometimes the empty string), neither of
which are valid input for `semver()`. This filter exists so we can populate
`version_semver` opportunistically.
"""
return version != "" and version[0] in _DIGITS
def _expand_flags(ctx, attr_name, targets, make_variables):
targets = deduplicate(targets)
expanded_flags = []
flags = getattr(ctx.attr, attr_name)
for flag in flags:
# Fast-path - both location expansions and make vars have a `$` so we
# can short-circuit if $ doesn't exist.
if "$" in flag:
# The ordering here matters. If we expand Make variables first, then
# "$(location //foo)" would have to be written as "$$(location //foo)",
# which is inconsistent with how Bazel builtin rules work.
flag = ctx.expand_location(flag, targets)
flag = ctx.expand_make_variables(attr_name, flag, make_variables)
expanded_flags.append(flag)
return expanded_flags
def _rust_toolchain_impl(ctx):
"""The rust_toolchain implementation
Args:
ctx (ctx): The rule's context object
Returns:
list: A list containing the target's toolchain Provider info
"""
effective_opt_levels = dict(ctx.attr._opt_level[RustOptLevelInfo].levels)
effective_opt_levels.update(ctx.attr.opt_level)
effective_debug_info = dict(ctx.attr._debug_info[RustDebugInfoInfo].levels)
effective_debug_info.update(ctx.attr.debug_info)
effective_strip_level = dict(ctx.attr._strip_level[RustStripLevelInfo].levels)
effective_strip_level.update(ctx.attr.strip_level)
compilation_mode_opts = {}
for k, opt_level in effective_opt_levels.items():
compilation_mode_opts[k] = struct(debug_info = effective_debug_info[k], opt_level = opt_level, strip_level = effective_strip_level[k])
rename_first_party_crates = ctx.attr._rename_first_party_crates[BuildSettingInfo].value
third_party_dir = ctx.attr._third_party_dir[BuildSettingInfo].value
pipelined_compilation = ctx.attr._pipelined_compilation[BuildSettingInfo].value
no_std = ctx.attr._no_std[BuildSettingInfo].value
lto = ctx.attr.lto[RustLtoInfo]
experimental_use_global_allocator = ctx.attr._experimental_use_global_allocator[BuildSettingInfo].value
if _experimental_use_cc_common_link(ctx):
if experimental_use_global_allocator and not ctx.attr.global_allocator_library:
fail("rust_toolchain.experimental_use_cc_common_link with --@rules_rust//rust/settings:experimental_use_global_allocator " +
"requires rust_toolchain.global_allocator_library to be set")
if not ctx.attr.allocator_library:
fail("rust_toolchain.experimental_use_cc_common_link requires rust_toolchain.allocator_library to be set")
if experimental_use_global_allocator and not _experimental_use_cc_common_link(ctx):
fail(
"Using @rules_rust//rust/settings:experimental_use_global_allocator requires" +
"--@rules_rust//rust/settings:experimental_use_cc_common_link to be set",
)
rust_std = ctx.attr.rust_std
sysroot = _generate_sysroot(
ctx = ctx,
rustc = ctx.file.rustc,
rustdoc = ctx.file.rust_doc,
rustc_lib = ctx.attr.rustc_lib,
rust_std = rust_std,
rustfmt = ctx.file.rustfmt,
clippy = ctx.file.clippy_driver,
cargo = ctx.file.cargo,
cargo_clippy = ctx.file.cargo_clippy,
llvm_tools = ctx.attr.llvm_tools,
linker = ctx.attr.linker,
rust_objcopy = ctx.file.rust_objcopy,
)
# Determine the path and short_path of the sysroot
sysroot_path = sysroot.sysroot_anchor.dirname
sysroot_short_path, _, _ = sysroot.sysroot_anchor.short_path.rpartition("/")
# Variables for make variable expansion
make_variables = {
"RUSTC": sysroot.rustc.path,
"RUSTDOC": sysroot.rustdoc.path,
"RUST_DEFAULT_EDITION": ctx.attr.default_edition or "",
"RUST_SYSROOT": sysroot_path,
"RUST_SYSROOT_SHORT": sysroot_short_path,
}
if sysroot.cargo:
make_variables.update({
"CARGO": sysroot.cargo.path,
})
if sysroot.rustfmt:
make_variables.update({
"RUSTFMT": sysroot.rustfmt.path,
})
make_variable_info = platform_common.TemplateVariableInfo(make_variables)
expanded_stdlib_linkflags = _expand_flags(ctx, "stdlib_linkflags", rust_std[rust_common.stdlib_info].srcs, make_variables)
expanded_extra_rustc_flags = _expand_flags(ctx, "extra_rustc_flags", rust_std[rust_common.stdlib_info].srcs, make_variables)
expanded_extra_exec_rustc_flags = _expand_flags(ctx, "extra_exec_rustc_flags", rust_std[rust_common.stdlib_info].srcs, make_variables)
linking_context = cc_common.create_linking_context(
linker_inputs = depset([
cc_common.create_linker_input(
owner = ctx.label,
user_link_flags = depset(expanded_stdlib_linkflags),
),
]),
)
# Contains linker flags needed to link Rust standard library.
# These need to be added to linker command lines when the linker is not rustc
# (rustc does this automatically). Linker flags wrapped in an otherwise empty
# `CcInfo` to provide the flags in a way that doesn't duplicate them per target
# providing a `CcInfo`.
stdlib_linkflags_cc_info = CcInfo(
compilation_context = cc_common.create_compilation_context(),
linking_context = linking_context,
)
exec_triple = triple(ctx.attr.exec_triple)
if not exec_triple.system:
fail("No system was provided for the execution platform. Please update {}".format(
ctx.label,
))
if ctx.attr.target_triple and ctx.attr.target_json:
fail("Do not specify both target_triple and target_json, either use a builtin triple or provide a custom specification file. Please update {}".format(
ctx.label,
))
target_triple = None
target_json = None
target_arch = None
target_os = None
target_abi = None
if ctx.attr.target_triple:
target_triple = triple(ctx.attr.target_triple)
target_arch = target_triple.arch
target_os = target_triple.system
target_abi = target_triple.abi
elif ctx.attr.target_json:
# Ensure the data provided is valid json
target_json_content = json.decode(ctx.attr.target_json)
target_json = ctx.actions.declare_file("{}.target.json".format(ctx.label.name))
ctx.actions.write(
output = target_json,
content = json.encode_indent(target_json_content, indent = " " * 4),
)
if "arch" in target_json_content:
target_arch = target_json_content["arch"]
if "os" in target_json_content:
target_os = target_json_content["os"]
if "env" in target_json_content:
target_abi = target_json_content["env"]
else:
fail("Either `target_triple` or `target_json` must be provided. Please update {}".format(
ctx.label,
))
cc_toolchain, feature_configuration = find_cc_toolchain(ctx)
linker_preference = None
if ctx.attr.linker_preference:
linker_preference = ctx.attr.linker_preference
else:
value = ctx.attr._linker_preference[BuildSettingInfo].value
if value != "none":
linker_preference = value
# Validate linker_preference configuration
if linker_preference == "rust":
if not ctx.attr.linker:
fail("When `rust_toolchain.linker_preference == \"rust\"`, a `rust_toolchain.linker` must be provided. Please update: {}".format(
ctx.label,
))
elif linker_preference == "cc":
if not cc_toolchain:
fail("When `rust_toolchain.linker_preference == \"cc\"`, a `cc_toolchain` must be configured. Please update: {}".format(
ctx.label,
))
experimental_link_std_dylib = _experimental_link_std_dylib(ctx)
def make_ccinfo(label, actions, allocator_library, std):
return make_libstd_and_allocator_ccinfo(
cc_toolchain = cc_toolchain,
feature_configuration = feature_configuration,
label = label,
actions = actions,
experimental_link_std_dylib = experimental_link_std_dylib,
rust_std = rust_std,
allocator_library = allocator_library,
std = std,
)
def make_local_ccinfo(allocator_library, std):
return make_ccinfo(
ctx.label,
ctx.actions,
struct(cc_info = allocator_library),
std,
)
# Include C++ toolchain files to ensure tools like 'ar' are available for cross-compilation
all_files_depsets = [sysroot.all_files]
if cc_toolchain and cc_toolchain.all_files:
all_files_depsets.append(cc_toolchain.all_files)
# Parse the version string once so downstream rules can branch on the
# semver components without re-parsing. `None` for empty or non-semver
# values (e.g. unset, or channel labels like "nightly" without a version).
version_semver = semver(ctx.attr.version) if _is_semver_string(ctx.attr.version) else None
toolchain = platform_common.ToolchainInfo(
all_files = depset(transitive = all_files_depsets),
binary_ext = ctx.attr.binary_ext,
cargo = sysroot.cargo,
channel = ctx.attr.channel,
clippy_driver = sysroot.clippy,
cargo_clippy = sysroot.cargo_clippy,
compilation_mode_opts = compilation_mode_opts,
default_edition = ctx.attr.default_edition,
dylib_ext = ctx.attr.dylib_ext,
env = ctx.attr.env,
exec_triple = exec_triple,
iso_date = ctx.attr.iso_date,
libstd_and_allocator_ccinfo = make_local_ccinfo(ctx.attr.allocator_library[CcInfo], "std"),
libstd_and_global_allocator_ccinfo = make_local_ccinfo(ctx.attr.global_allocator_library[CcInfo], "std"),
nostd_and_global_allocator_ccinfo = make_local_ccinfo(ctx.attr.global_allocator_library[CcInfo], "no_std_with_alloc"),
make_libstd_and_allocator_ccinfo = make_ccinfo,
linker = sysroot.linker,
linker_preference = linker_preference,
linker_type = ctx.attr.linker_type or None,
coverage_supported = bool(ctx.file.llvm_cov) and ctx.attr.rust_std[rust_common.stdlib_info].has_profiler_builtins,
llvm_cov = ctx.file.llvm_cov,
llvm_profdata = ctx.file.llvm_profdata,
llvm_lib = ctx.files.llvm_lib,
rust_objcopy = ctx.file.rust_objcopy,
lto = lto,
make_variables = make_variable_info,
rust_doc = sysroot.rustdoc,
rust_std = sysroot.rust_std,
rust_std_paths = depset([file.dirname for file in sysroot.rust_std.to_list()]),
rustc = sysroot.rustc,
rustc_lib = sysroot.rustc_lib,
rustfmt = sysroot.rustfmt,
staticlib_ext = ctx.attr.staticlib_ext,
stdlib_linkflags = stdlib_linkflags_cc_info,
extra_rustc_flags = expanded_extra_rustc_flags,
extra_rustc_flags_for_crate_types = ctx.attr.extra_rustc_flags_for_crate_types,
extra_exec_rustc_flags = expanded_extra_exec_rustc_flags,
per_crate_rustc_flags = ctx.attr.per_crate_rustc_flags,
sysroot = sysroot_path,
sysroot_anchor = sysroot.sysroot_anchor,
sysroot_short_path = sysroot_short_path,
target_arch = target_arch,
target_flag_value = target_json if target_json else target_triple.str,
target_json = target_json,
target_os = target_os,
target_abi = target_abi,
target_triple = target_triple,
version = ctx.attr.version,
version_semver = version_semver,
require_explicit_unstable_features = _require_explicit_unstable_features(ctx),
# Experimental and incompatible flags
_rename_first_party_crates = rename_first_party_crates,
_third_party_dir = third_party_dir,
_pipelined_compilation = pipelined_compilation,
_experimental_link_std_dylib = _experimental_link_std_dylib(ctx),
_experimental_use_cc_common_link = _experimental_use_cc_common_link(ctx),
_experimental_use_global_allocator = experimental_use_global_allocator,
_experimental_compile_rustdoc_tests = ctx.attr._experimental_compile_rustdoc_tests[BuildSettingInfo].value,
_experimental_use_coverage_metadata_files = ctx.attr._experimental_use_coverage_metadata_files[BuildSettingInfo].value,
_toolchain_generated_sysroot = ctx.attr._toolchain_generated_sysroot[BuildSettingInfo].value,
_incompatible_do_not_include_data_in_compile_data = ctx.attr._incompatible_do_not_include_data_in_compile_data[IncompatibleFlagInfo].enabled,
_incompatible_do_not_include_transitive_data_in_compile_inputs = ctx.attr._incompatible_do_not_include_transitive_data_in_compile_inputs[IncompatibleFlagInfo].enabled,
_no_std = no_std,
_codegen_units = ctx.attr._codegen_units[BuildSettingInfo].value,
_experimental_use_allocator_libraries_with_mangled_symbols = ctx.attr.experimental_use_allocator_libraries_with_mangled_symbols,
_experimental_use_allocator_libraries_with_mangled_symbols_setting = ctx.attr._experimental_use_allocator_libraries_with_mangled_symbols_setting[BuildSettingInfo].value,
)
return [
toolchain,
make_variable_info,
]
rust_toolchain = rule(
implementation = _rust_toolchain_impl,
fragments = ["cpp"],
attrs = {
"allocator_library": attr.label(
doc = "Target that provides allocator functions when `rust_library` targets are embedded in a `cc_binary`.",
default = Label("//rust/settings:default_allocator_library"),
),
"binary_ext": attr.string(
doc = "The extension for binaries created from rustc.",
mandatory = True,
),
"cargo": attr.label(
doc = "The location of the `cargo` binary. Can be a direct source or a filegroup containing one item.",
allow_single_file = True,
cfg = "exec",
),
"cargo_clippy": attr.label(
doc = "The location of the `cargo_clippy` binary. Can be a direct source or a filegroup containing one item.",
allow_single_file = True,
cfg = "exec",
),
"channel": attr.string(
doc = "The Rust release channel (`stable`, `nightly`, or `beta`).",
default = "",
),
"clippy_driver": attr.label(
doc = "The location of the `clippy-driver` binary. Can be a direct source or a filegroup containing one item.",
allow_single_file = True,
cfg = "exec",
),
"debug_info": attr.string_dict(
doc = "Per-toolchain debug-info overrides per compilation mode. Any mode set here takes precedence over the global `//rust/settings:debug_info_*` flags. Omit a mode (or leave empty) to use the global flag value.",
default = {},
),
"_debug_info": attr.label(
default = Label("//rust/settings:debug_info"),
providers = [RustDebugInfoInfo],
doc = "Global debug-info defaults, read from the `//rust/settings:debug_info_*` flags.",
),
"default_edition": attr.string(
doc = (
"The edition to use for rust_* rules that don't specify an edition. " +
"If absent, every rule is required to specify its `edition` attribute."
),
),
"dylib_ext": attr.string(
doc = "The extension for dynamic libraries created from rustc.",
mandatory = True,
),
"env": attr.string_dict(
doc = "Environment variables to set in actions.",
),
"exec_triple": attr.string(
doc = (
"The platform triple for the toolchains execution environment. " +
"For more details see: https://docs.bazel.build/versions/master/skylark/rules.html#configurations"
),
mandatory = True,
),
"experimental_link_std_dylib": attr.label(
default = Label("@rules_rust//rust/settings:experimental_link_std_dylib"),
doc = "Label to a boolean build setting that controls whether whether to link libstd dynamically.",
),
"experimental_use_allocator_libraries_with_mangled_symbols": attr.int(
doc = (
"Whether to use rust-based allocator libraries with " +
"mangled symbols. Possible values: [-1, 0, 1]. " +
"-1 means to use the value of the build setting " +
"//rust/settings:experimental_use_allocator_libraries_with_mangled_symbols. " +
"0 means do not use. In that case, rules_rust will try to use " +
"the c-based allocator libraries that don't support symbol mangling. " +
"1 means use the rust-based allocator libraries."
),
values = [-1, 0, 1],
default = -1,
),
"experimental_use_cc_common_link": attr.label(
default = Label("//rust/settings:experimental_use_cc_common_link"),
doc = "Label to a boolean build setting that controls whether cc_common.link is used to link rust binaries.",
),
"extra_exec_rustc_flags": attr.string_list(
doc = "Extra flags to pass to rustc in exec configuration. Subject to location expansion with respect to the srcs of the `rust_std` attribute. Subject to Make variable expansion with respect to RUST_SYSROOT, RUST_SYSROOT_SHORT, RUSTC, etc.",
),
"extra_rustc_flags": attr.string_list(
doc = "Extra flags to pass to rustc in non-exec configuration. Subject to location expansion with respect to the srcs of the `rust_std` attribute. Subject to Make variable expansion with respect to RUST_SYSROOT, RUST_SYSROOT_SHORT, RUSTC, etc.",
),
"extra_rustc_flags_for_crate_types": attr.string_list_dict(
doc = "Extra flags to pass to rustc based on crate type",
),
"global_allocator_library": attr.label(
doc = "Target that provides allocator functions for when a global allocator is present.",
default = Label("//rust/private/cc:global_allocator_library"),
),
"iso_date": attr.string(
doc = "The ISO date of the nightly or beta release (e.g. `2026-03-26`). Empty for stable releases.",
default = "",
),
"linker": attr.label(
doc = "The label to an explicit linker to use (e.g. rust-lld, ld, link-ld.exe, etc.). Linker binaries must be runnable in the exec configuration, so cfg = \"exec\" is used. To choose a linker based on the target platform, use a select() when providing this attribute. The select() will be evaluated against the target platform before the exec transition is applied, allowing platform-specific linker selection while ensuring the selected linker is built for the exec platform.",
cfg = "exec",
allow_single_file = True,
),
"linker_preference": attr.string(
doc = "The preferred linker to use. If unspecified, `cc` is preferred and `rust` is used as a fallback whenever `linker` is provided.",
values = ["cc", "rust"],
),
"linker_type": attr.string(
doc = "The type of linker invocation: 'direct' (ld, rust-lld) or 'indirect' (via compiler like clang/gcc). If unset, defaults based on linker_preference.",
values = ["direct", "indirect"],
),
"llvm_cov": attr.label(
doc = "The location of the `llvm-cov` binary. Can be a direct source or a filegroup containing one item. If None, rust code is not instrumented for coverage.",
allow_single_file = True,
cfg = "exec",
),
"llvm_lib": attr.label(
doc = "The location of the `libLLVM` shared object files. If `llvm_cov` is None, this can be None as well and rust code is not instrumented for coverage.",
allow_files = True,
cfg = "exec",
),
"llvm_profdata": attr.label(
doc = "The location of the `llvm-profdata` binary. Can be a direct source or a filegroup containing one item. If `llvm_cov` is None, this can be None as well and rust code is not instrumented for coverage.",
allow_single_file = True,
cfg = "exec",
),
"llvm_tools": attr.label(
doc = "LLVM tools that are shipped with the Rust toolchain.",
allow_files = True,
),
"lto": attr.label(
providers = [RustLtoInfo],
default = Label("//rust/settings:lto"),
doc = "Label to an LTO setting whether which can enable custom LTO settings",
),
"opt_level": attr.string_dict(
doc = "Per-toolchain opt-level overrides per compilation mode. Any mode set here takes precedence over the global `//rust/settings:opt_level_*` flags. Omit a mode (or leave empty) to use the global flag value.",
default = {},
),
"_opt_level": attr.label(
default = Label("//rust/settings:opt_level"),
providers = [RustOptLevelInfo],
doc = "Global opt-level defaults, read from the `//rust/settings:opt_level_*` flags.",
),
"per_crate_rustc_flags": attr.string_list(
doc = "Extra flags to pass to rustc in non-exec configuration",
),
"require_explicit_unstable_features": attr.label(
default = Label(
"//rust/settings:require_explicit_unstable_features",
),
doc = ("Label to a boolean build setting that controls whether all uses of unstable " +
"Rust features must be explicitly opted in to using `-Zallow-features=...`."),
),
"rust_doc": attr.label(
doc = "The location of the `rustdoc` binary. Can be a direct source or a filegroup containing one item.",
allow_single_file = True,
cfg = "exec",
mandatory = True,
),
"rust_objcopy": attr.label(
doc = "The location of the `rust-objcopy` binary. Can be a direct source or a filegroup containing one item.",
allow_single_file = True,
cfg = "exec",
),
"rust_std": attr.label(
doc = "The Rust standard library.",
mandatory = True,
),
"rustc": attr.label(
doc = "The location of the `rustc` binary. Can be a direct source or a filegroup containing one item.",
allow_single_file = True,
cfg = "exec",
mandatory = True,
),
"rustc_lib": attr.label(
doc = "The libraries used by rustc during compilation.",
cfg = "exec",
),
"rustfmt": attr.label(
doc = "**Deprecated**: Instead see [rustfmt_toolchain](#rustfmt_toolchain)",
allow_single_file = True,
cfg = "exec",
),
"staticlib_ext": attr.string(
doc = "The extension for static libraries created from rustc.",
mandatory = True,
),
"stdlib_linkflags": attr.string_list(
doc = (
"Additional linker flags to use when Rust standard library is linked by a C++ linker " +
"(rustc will deal with these automatically). Subject to location expansion with respect " +
"to the srcs of the `rust_std` attribute. Subject to Make variable expansion with respect " +
"to RUST_SYSROOT, RUST_SYSROOT_SHORT, RUSTC, etc."
),
mandatory = True,
),
"strip_level": attr.string_dict(
doc = "Per-toolchain strip-level overrides per compilation mode. Any mode set here takes precedence over the global `//rust/settings:strip_level_*` flags. Omit a mode (or leave empty) to use the global flag value.",
default = {},
),
"_strip_level": attr.label(
default = Label("//rust/settings:strip_level"),
providers = [RustStripLevelInfo],
doc = "Global strip-level defaults, read from the `//rust/settings:strip_level_*` flags.",
),
"target_json": attr.string(
doc = ("Override the target_triple with a custom target specification. " +
"For more details see: https://doc.rust-lang.org/rustc/targets/custom.html"),
),
"target_triple": attr.string(
doc = (
"The platform triple for the toolchains target environment. " +
"For more details see: https://docs.bazel.build/versions/master/skylark/rules.html#configurations"
),
),
"version": attr.string(
doc = "The version of the Rust compiler (e.g. `1.94.1`).",
default = "",
),
"_codegen_units": attr.label(
default = Label("//rust/settings:codegen_units"),
),
"_experimental_compile_rustdoc_tests": attr.label(
default = Label("//rust/settings:experimental_compile_rustdoc_tests"),
),
"_experimental_use_allocator_libraries_with_mangled_symbols_setting": attr.label(
default = Label("//rust/settings:experimental_use_allocator_libraries_with_mangled_symbols"),
providers = [BuildSettingInfo],
doc = (
"Label to a boolean build setting that informs the target build whether to use rust-based " +
"allocator libraries that mangle symbols."
),
),
"_experimental_use_coverage_metadata_files": attr.label(
default = Label("//rust/settings:experimental_use_coverage_metadata_files"),
),
"_experimental_use_global_allocator": attr.label(
default = Label("//rust/settings:experimental_use_global_allocator"),
doc = (
"Label to a boolean build setting that informs the target build whether a global allocator is being used." +
"This flag is only relevant when used together with --@rules_rust//rust/settings:experimental_use_global_allocator."
),
),
"_incompatible_do_not_include_data_in_compile_data": attr.label(
default = Label("//rust/settings:incompatible_do_not_include_data_in_compile_data"),
doc = "Label to a boolean build setting that controls whether to include data files in compile_data.",
),
"_incompatible_do_not_include_transitive_data_in_compile_inputs": attr.label(
default = Label("//rust/settings:incompatible_do_not_include_transitive_data_in_compile_inputs"),
doc = "Label to a boolean build setting that controls whether to include transitive data dependencies in compile inputs.",
),
"_linker_preference": attr.label(
default = Label("//rust/settings:toolchain_linker_preference"),
),
"_no_std": attr.label(
default = Label("//rust/settings:no_std"),
),
"_pipelined_compilation": attr.label(
default = Label("//rust/settings:pipelined_compilation"),
),
"_rename_first_party_crates": attr.label(
default = Label("//rust/settings:rename_first_party_crates"),
),
"_third_party_dir": attr.label(
default = Label("//rust/settings:third_party_dir"),
),
"_toolchain_generated_sysroot": attr.label(
default = Label("//rust/settings:toolchain_generated_sysroot"),
doc = (
"Label to a boolean build setting that lets the rule knows whether to set --sysroot to rustc. " +
"This flag is only relevant when used together with --@rules_rust//rust/settings:toolchain_generated_sysroot."
),
),
},
toolchains = [
config_common.toolchain_type("@bazel_tools//tools/cpp:toolchain_type", mandatory = False),
],
doc = """Declares a Rust toolchain for use.
This is for declaring a custom toolchain, eg. for configuring a particular version of rust or supporting a new platform.
Example:
Suppose the core rust team has ported the compiler to a new target CPU, called `cpuX`. This \
support can be used in Bazel by defining a new toolchain definition and declaration:
```python
load('@rules_rust//rust:toolchain.bzl', 'rust_toolchain')
rust_toolchain(
name = "rust_cpuX_impl",
binary_ext = "",
dylib_ext = ".so",
exec_triple = "cpuX-unknown-linux-gnu",
rust_doc = "@rust_cpuX//:rustdoc",
rust_std = "@rust_cpuX//:rust_std",
rustc = "@rust_cpuX//:rustc",
rustc_lib = "@rust_cpuX//:rustc_lib",
staticlib_ext = ".a",
stdlib_linkflags = ["-lpthread", "-ldl"],
target_triple = "cpuX-unknown-linux-gnu",
)
toolchain(
name = "rust_cpuX",
exec_compatible_with = [
"@platforms//cpu:cpuX",
"@platforms//os:linux",
],
target_compatible_with = [
"@platforms//cpu:cpuX",
"@platforms//os:linux",
],
toolchain = ":rust_cpuX_impl",
)
```
Then, either add the label of the toolchain rule to `register_toolchains` in the WORKSPACE, or pass \
it to the `"--extra_toolchains"` flag for Bazel, and it will be used.
To use a platform-specific linker, you can use a `select()` in the `linker` attribute:
```python
rust_toolchain(
name = "rust_toolchain_impl",
# ... other attributes ...
linker = select({
"@platforms//os:linux": "//tools:rust-lld-linux",
"@platforms//os:windows": "//tools:rust-lld-windows",
"//conditions:default": "//tools:rust-lld",
}),