tldr/pages.de/common/gcc.md

25 lines
818 B
Markdown
Raw Normal View History

2020-10-19 19:11:46 +01:00
# gcc
> Präprozessiert und kompiliert C und C++ Quellcodedateien und linkt diese anschließend zusammen.
> Weitere Informationen: <https://gcc.gnu.org>.
2020-10-19 19:11:46 +01:00
2021-03-25 16:42:04 +00:00
- Kompiliere mehrere Quellcodedateien zu einer ausführbaren Datei:
2020-10-19 19:11:46 +01:00
2021-07-02 20:38:46 +01:00
`gcc {{pfad/zu/datei1.c}} {{pfad/zu/datei2.c}} --output {{pfad/zu/binärdatei}}`
2020-10-19 19:11:46 +01:00
2021-03-25 16:42:04 +00:00
- Erlaube Warnungen und debug-Symbole in der Ausgabedatei:
2020-10-19 19:11:46 +01:00
2021-07-02 20:38:46 +01:00
`gcc {{pfad/zu/datei.c}} -Wall -Og --output {{pfad/zu/binärdatei}}`
2020-10-19 19:11:46 +01:00
2021-03-25 16:42:04 +00:00
- Inkludiere Bibliotheken aus anderen Verzeichnissen:
2020-10-19 19:11:46 +01:00
2021-07-02 20:38:46 +01:00
`gcc {{pfad/zu/datei.c}} --output {{pfad/zu/binärdatei}} -I{{pfad/zu/headerdatei}} -L{{pfad/zu/bibliothek1}} -l{{pfad/zu/bibliothek2}}`
2020-10-19 19:11:46 +01:00
2021-03-25 16:42:04 +00:00
- Kompiliere Quellcodedateien zu Assemblerinstruktionen:
2020-10-19 19:11:46 +01:00
2021-03-25 16:42:04 +00:00
`gcc -S {{pfad/zu/datei.c}}`
2020-10-19 19:11:46 +01:00
2021-03-25 16:42:04 +00:00
- Kompiliere eine oder mehrere Quellcodedateien ohne diese zu linken:
2020-10-19 19:11:46 +01:00
2021-03-25 16:42:04 +00:00
`gcc -c {{pfad/zu/datei.c}}`