diff options
Diffstat (limited to 'etc/defaults/CC/TARGETS')
-rw-r--r-- | etc/defaults/CC/TARGETS | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/etc/defaults/CC/TARGETS b/etc/defaults/CC/TARGETS new file mode 100644 index 00000000..d9f206c4 --- /dev/null +++ b/etc/defaults/CC/TARGETS @@ -0,0 +1,16 @@ +{ "defaults": + { "type": ["CC", "defaults"] + , "CC": ["clang"] + , "CXX": ["clang++"] + , "CFLAGS": [] + , "CXXFLAGS": + [ "-std=c++20" + , "-Wall" + , "-Wextra" + , "-Wpedantic" + , "-Wsign-conversion" + ] + , "AR": ["ar"] + , "PATH": ["/bin", "/sbin", "/usr/bin", "/usr/sbin"] + } +} |