1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-07 00:26:00 +02:00

rustc: add target, target-cpu and print examples (#4320)

This commit is contained in:
Axel Navarro 2020-09-10 21:31:08 -03:00 committed by GitHub
parent bcd66b20d4
commit 8b4481dc3f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -15,3 +15,19 @@
- Compile with debugging information:
`rustc -g {{file.rs}}`
- Compile with architecture-specific optimizations for the current CPU:
`rustc -C target-cpu=native {{path/to/file.rs}}`
- Display architecture-specific optimizations for the current CPU:
`rustc -C target-cpu=native --print cfg`
- Display target list:
`rustc --print target-list`
- Compile for a specific target:
`rustc --target {{target_triple}} {{path/to/file.rs}}`