pages.nl/common/*: add Dutch translation (#11620)

This commit is contained in:
Sebastiaan Speck
2023-12-01 16:53:03 +01:00
committed by GitHub
parent a25216ded7
commit d78944fa43
10 changed files with 188 additions and 1 deletions

View File

@@ -0,0 +1,25 @@
# clang++
> Compileert C++ bronbestanden.
> Onderdeel van of LLVM.
> Meer informatie: <https://clang.llvm.org>.
- Compileer een broncodebestand naar een uitvoerbaar binair bestand:
`clang++ {{pad/naar/bron.cpp}} -o {{pad/naar/uitvoerbaar_bestand}}`
- Toon (bijna) alle fouten en waarschuwingen:
`clang++ {{pad/naar/bron.cpp}} -Wall -o {{pad/naar/uitvoerbaar_bestand}}`
- Kies een taalstandaard om mee te compileren:
`clang++ {{pad/naar/bron.cpp}} -std={{c++20}} -o {{pad/naar/uitvoerbaar_bestand}}`
- Voeg bibliotheken toe die zich op een ander pad bevinden dan het bronbestand:
`clang++ {{pad/naar/bron.cpp}} -o {{pad/naar/uitvoerbaar_bestand}} -I{{pad/naar/header_pad}} -L{{pad/naar/bibliotheek_pad}} -l{{pad/naar/bibliotheek_naam}}`
- Compileer broncode naar LLVM Intermediate Representation (IR):
`clang++ -S -emit-llvm {{pad/naar/bron.cpp}} -o {{pad/naar/output.ll}}`