]> git.proxmox.com Git - rustc.git/blobdiff - src/doc/unstable-book/src/compiler-flags/profile.md
Merge tag 'debian/1.52.1+dfsg1-1_exp2' into proxmox/buster
[rustc.git] / src / doc / unstable-book / src / compiler-flags / profile.md
index 7973b3e4f2f322ad40bd1bcea87f85742de9e193..71303bfaff20df96b956755ecba4d528d7fcb6f9 100644 (file)
@@ -22,6 +22,6 @@ Once you've built and run your program, files with the `gcno` (after build) and
 You can parse them with [llvm-cov gcov](https://llvm.org/docs/CommandGuide/llvm-cov.html#llvm-cov-gcov) or [grcov](https://github.com/mozilla/grcov).
 
 Please note that `RUSTFLAGS` by default applies to everything that cargo builds and runs during a build!
-When the `--target` flag is explicitly passed to cargo, the `RUSTFLAGS` no longer apply to build scripts and procedural macros. 
-For more fine-grained control consider passing a `RUSTC_WRAPPER` program to cargo that only adds the profiling flags to 
+When the `--target` flag is explicitly passed to cargo, the `RUSTFLAGS` no longer apply to build scripts and procedural macros.
+For more fine-grained control consider passing a `RUSTC_WRAPPER` program to cargo that only adds the profiling flags to
 rustc for the specific crates you want to profile.