@@ -1504,6 +1504,8 @@ options! {
1504
1504
"control if mem::uninitialized and mem::zeroed panic on more UB" ) ,
1505
1505
strip: Strip = ( Strip :: None , parse_strip, [ UNTRACKED ] ,
1506
1506
"tell the linker which information to strip (`none` (default), `debuginfo` or `symbols`)" ) ,
1507
+ split_bundled_libs: bool = ( false , parse_bool, [ TRACKED ] ,
1508
+ "if libfoo.rlib is the rlib, then libfoo.rlib.bundle.* are the corresponding bundled static libraries" ) ,
1507
1509
split_dwarf_kind: SplitDwarfKind = ( SplitDwarfKind :: Split , parse_split_dwarf_kind, [ TRACKED ] ,
1508
1510
"split dwarf variant (only if -Csplit-debuginfo is enabled and on relevant platform)
1509
1511
(default: `split`)
@@ -1512,8 +1514,6 @@ options! {
1512
1514
file which is ignored by the linker
1513
1515
`single`: sections which do not require relocation are written into object file but ignored
1514
1516
by the linker" ) ,
1515
- split_bundled_libs: bool = ( false , parse_bool, [ TRACKED ] ,
1516
- "split bundled libs" ) ,
1517
1517
split_dwarf_inlining: bool = ( true , parse_bool, [ TRACKED ] ,
1518
1518
"provide minimal debug info in the object/executable to facilitate online \
1519
1519
symbolication/stack traces in the absence of .dwo/.dwp files when using Split DWARF") ,
0 commit comments