mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 22:42:08 +02:00

* 7z, 7za, 7zr: update Indonesian translation * common: imperative mood on Indonesian translation * linux, osx, windows: imperative mood on Indonesian translation * common, linux: add Indonesian translation * powershell, pwsh: add Indonesian translation * common: add Indonesian translation * gcc: use standard file path template * Update pages.id/common/gcc.md Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> * Update pages.id/common/gcc.md Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> * Update pages.id/common/7za.md Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> * Apply suggestions from code review Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> * Update pages.id/common/gcc.md Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> * Update pages.id/common/7za.md Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> * Update 7za.md Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> * Update gcc.md Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> * git-commit: update Indonesian translation --------- Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
20 lines
816 B
Markdown
20 lines
816 B
Markdown
# adscript
|
|
|
|
> Penyusun (compiler) untuk file Adscript.
|
|
> Informasi lebih lanjut: <https://github.com/Amplus2/Adscript>.
|
|
|
|
- Susun suatu file menjadi file objek:
|
|
|
|
`adscript --output {{jalan/menuju/file.o}} {{jalan/menuju/file_input.adscript}}`
|
|
|
|
- Susun dan gabungkan file menjadi sebuah file program mandiri:
|
|
|
|
`adscript --executable --output {{jalan/menuju/file}} {{jalan/menuju/file_input.adscript}}`
|
|
|
|
- Susun sebuah file menggunakan kode LLVM IR daripada kode mesin yang sesungguhnya:
|
|
|
|
`adscript --llvm-ir --output {{jalan/menuju/file.ll}} {{jalan/menuju/file_input.adscript}}`
|
|
|
|
- Susun menjadi file objek untuk arsitektur CPU atau sistem operasi yang berbeda dengan mesin saat ini (cross-compile):
|
|
|
|
`adscript --target-triple {{i386-linux-elf}} --output {{jalan/menuju/file.o}} {{jalan/menuju/file_input.adscript}}`
|