echo, fdroid, fdroidcl, ffprobe, ffsend, fg, firefox, fortune, fuck, g++, gdb, gpg2, grep: add German translation (#5361)
2021-03-07 14:12:23 +00:00
|
|
|
# gplusplus
|
|
|
|
|
|
|
|
> Kompiliere C++ Quelldateien.
|
|
|
|
> Teil der GCC (GNU Compiler Collection).
|
2021-04-24 12:09:56 +01:00
|
|
|
> Weitere Informationen: <https://gcc.gnu.org>.
|
echo, fdroid, fdroidcl, ffprobe, ffsend, fg, firefox, fortune, fuck, g++, gdb, gpg2, grep: add German translation (#5361)
2021-03-07 14:12:23 +00:00
|
|
|
|
|
|
|
- Kompiliere eine Quelldatei in eine ausführbare Binärdatei:
|
|
|
|
|
2021-04-04 01:08:57 +01:00
|
|
|
`g++ {{quelldatei.cpp}} -o {{output_datei}}`
|
echo, fdroid, fdroidcl, ffprobe, ffsend, fg, firefox, fortune, fuck, g++, gdb, gpg2, grep: add German translation (#5361)
2021-03-07 14:12:23 +00:00
|
|
|
|
|
|
|
- Zeige (fast) alle Fehler und Warnungen an:
|
|
|
|
|
|
|
|
`g++ {{quelldatei.cpp}} -Wall -o {{output_datei}}`
|
|
|
|
|
|
|
|
- Wähle einen Sprachstandard für das Kompilieren:
|
|
|
|
|
|
|
|
`g++ {{quelldatei.cpp}} -std={{C++98|C++11|C++14|C++17}} -o {{output_datei}}`
|
|
|
|
|
|
|
|
- Binde Bibliotheken, die sich an einem anderen Pfad als die Quelldatei befinden mit ein:
|
|
|
|
|
|
|
|
`g++ {{quelldatei.cpp}} -o {{output_datei}} -I{{header_pfad}} -L{{bibliotheks_pfad}} -l{{bibliotheks_name}}`
|