clang++
LLVM C++-Compiler als g++-Alternative
Syntax
$clang++ [options] <input files>
Optionen
-o
-std
-Wall
-O2
Beispiele
Beispiele
$clang++ main.cpp -o app
Beispiele
$clang++ -std=c++20 src.cpp -o src
Beispiele
$clang++ -Wall -O2 app.cpp -o app
Alternativen
Typische Anwendungsfälle
Hinweis
Unterstützt moderne C++-Standards und LLVM-Tooling.
Export