- Ne pas confondre les outils pour
C++
(gpp
,clang++
) et ceux deC
(gcc
,clang
). - Pour activer la compatiblité avec le standard
C++ 11
, il faut passer le flag-std=c++11
clang++ -std=c++11 PROG.cpp -o PROG
gpp -std=c++11 PROG.cpp -o PROG
Pour clang-tidy
(adpaté à C++
), on peut utiliser -extra-args
clang-tidy PROG.cpp -extra-arg=-std=c++11