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:
|
|
|
|
|
2022-10-24 10:15:40 +01:00
|
|
|
`g++ {{pfad/zu/quelldatei.cpp}} -o {{pfad/zu/binärdatei}}`
|
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
|
|
|
|
2022-10-24 10:15:40 +01:00
|
|
|
- Zeige geläufige Fehler und Warnungen an:
|
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
|
|
|
|
2022-10-24 10:15:40 +01:00
|
|
|
`g++ {{pfad/zu/quelldatei.cpp}} -Wall -o {{pfad/zu/binärdatei}}`
|
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
|
|
|
|
2022-10-24 10:15:40 +01:00
|
|
|
- Wähle einen Sprachstandard (C++98/C++11/C++14/C++17) für das Kompilieren:
|
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
|
|
|
|
2022-10-24 10:15:40 +01:00
|
|
|
`g++ {{pfad/zu/quelldatei.cpp}} -std={{C++98|C++11|C++14|C++17}} -o {{pfad/zu/binärdatei}}`
|
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
|
|
|
|
2022-10-24 10:15:40 +01:00
|
|
|
- Binde Bibliotheken, die sich an einem anderen Pfad als die Quelldatei befinden, ein:
|
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
|
|
|
|
2022-10-24 10:15:40 +01:00
|
|
|
`g++ {{pfad/zu/quelldatei.cpp}} -o {{pfad/zu/binärdatei}} -I{{pfad/zu/headerdatei}} -L{{pfad/zu/bibliothek}} -l{{bibliotheks_name}}`
|
|
|
|
|
|
|
|
- Kompiliere und linke mehrere Quelldateien in eine ausführbare Binärdatei:
|
|
|
|
|
|
|
|
`g++ -c {{pfad/zu/quelldatei_1.cpp pfad/zu/quelldatei_2.cpp ...}} && g++ -o {{pfad/zu/binärdatei}} {{pfad/zu/quelldatei_1.o pfad/zu/quelldatei_2.o ...}}`
|
|
|
|
|
|
|
|
- Gib die Version von `g++` aus:
|
|
|
|
|
|
|
|
`g++ --version`
|