@@ -497,27 +497,27 @@ point instructions in software. It takes one of the following values:
497
497
This option controls the emission of "split debuginfo" for debug information
498
498
that ` rustc ` generates. The default behavior of this option is
499
499
platform-specific, and not all possible values for this option work on all
500
- platform . Possible values are:
500
+ platforms . Possible values are:
501
501
502
502
* ` off ` - This is the default for platforms with ELF binaries and windows-gnu
503
- (not Windows MSVC and not macOS). This typically means that dwarf debug
503
+ (not Windows MSVC and not macOS). This typically means that DWARF debug
504
504
information can be found in the final artifact in sections of the executable.
505
505
This option is not supported on Windows MSVC. On macOS this options prevents
506
506
the final execution of ` dsymutil ` to generate debuginfo.
507
507
508
- * ` packed ` - This is the default for Windows MSVC and macOS platforms . The term
508
+ * ` packed ` - This is the default for Windows MSVC and macOS. The term
509
509
"packed" here means that all the debug information is packed into a separate
510
510
file from the main executable. On Windows MSVC this is a ` *.pdb ` file, on
511
511
macOS this is a ` *.dSYM ` folder, and on other platforms this is a ` *.dwp `
512
- files .
512
+ file .
513
513
514
514
* ` unpacked ` - This means that debug information will be found in separate
515
515
files for each compilation unit (object file). This is not supported on
516
516
Windows MSVC. On macOS this means the original object files will contain
517
517
debug information. On other Unix platforms this means that ` *.dwo ` files will
518
518
contain debug information.
519
519
520
- Note that ` packed ` and ` unpacked ` gated behind ` -Zunstable -options ` on
520
+ Note that ` packed ` and ` unpacked ` are gated behind ` -Z unstable -options ` on
521
521
non-macOS platforms at this time.
522
522
523
523
## target-cpu
0 commit comments