mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-25 11:35:24 +02:00
adscript: add Dutch translation
This commit is contained in:
parent
319a794631
commit
37541dd496
1 changed files with 20 additions and 0 deletions
20
pages.nl/common/adscript.md
Normal file
20
pages.nl/common/adscript.md
Normal file
|
@ -0,0 +1,20 @@
|
|||
# adscript
|
||||
|
||||
> Compiler voor Adscript-bestanden.
|
||||
> Meer informatie: <https://github.com/Amplus2/Adscript>.
|
||||
|
||||
- Compileer een bestand naar een objectbestand:
|
||||
|
||||
`adscript --output {{pad/naar/bestand.o}} {{pad/naar/input_file.adscript}}`
|
||||
|
||||
- Compileer en koppel een bestand aan een zelfstandig uitvoerbaar bestand:
|
||||
|
||||
`adscript --executable --output {{pad/naar/bestand}} {{pad/naar/invoer_bestand.adscript}}`
|
||||
|
||||
- Compileer een bestand naar LLVM IR in plaats van native machinecode:
|
||||
|
||||
`adscript --llvm-ir --output {{pad/naar/bestand.ll}} {{pad/naar/invoer_bestand.adscript}}`
|
||||
|
||||
- Cross-compileer een bestand naar een objectbestand voor een buitenlandse CPU-architectuur of besturingssysteem:
|
||||
|
||||
`adscript --target-triple {{i386-linux-elf}} --output {{pad/naar/bestand.o}} {{pad/naar/invoer_bestand.adscript}}`
|
Loading…
Add table
Reference in a new issue