tldr/pages.ta/common/rustc.md
K.B.Dharun Krishna 10bccbd1e4
rust/*: update path, add Tamil translation (#9637)
* 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>
2023-01-04 12:27:33 +08:00

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}}