mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-11 06:16:53 +03:00
10bccbd1e4
* rustup: add page * rustc: add Tamil translation * rustfmt: add Tamil translation * rust/* : update path * rustc: update Tamil translation * Apply suggestions from code review Co-authored-by: Jack Lin <blueskyson1401@gmail.com> Co-authored-by: Jack Lin <blueskyson1401@gmail.com>
1.6 KiB
1.6 KiB
rustc
ரஸ்ட் கம்பைலர். ரஸ்ட் மொழி மூல கோப்புகளை செயலாக்குகிறது, தொகுக்கிறது மற்றும் இணைக்கிறது. மேலும் விவரத்திற்கு: https://doc.rust-lang.org/rustc.
- ஒரு கோப்பை தொகுக்கவும்:
rustc {{பாதை/டு/கோப்பு.rs}}
- உயர் தேர்வுமுறையுடன் தொகுக்கவும்:
rustc -O {{பாதை/டு/கோப்பு.rs}}
- பிழைத்திருத்த தகவலுடன் தொகுக்கவும்:
rustc -g {{பாதை/டு/கோப்பு.rs}}
- தற்போதைய CPU க்கான கட்டிடக்கலை-குறிப்பிட்ட மேம்படுத்தல்களுடன் தொகுக்கவும்:
rustc -C target-cpu=native {{பாதை/டு/கோப்பு.rs}}
- தற்போதைய CPU க்கான கட்டிடக்கலை-குறிப்பிட்ட மேம்படுத்தல்களைக் காண்பி:
rustc -C target-cpu=native --print cfg
- இலக்கு பட்டியலைக் காட்டு:
rustc --print target-list
- ஒரு குறிப்பிட்ட இலக்கை தொகுக்கவும்:
rustc --target {{இலக்கு_மூன்று}} {{பாதை/டு/கோப்பு.rs}}