diff options
Diffstat (limited to '.local/share/meson/native')
-rw-r--r-- | .local/share/meson/native/clang.txt | 4 | ||||
-rw-r--r-- | .local/share/meson/native/gcc.txt | 4 | ||||
-rw-r--r-- | .local/share/meson/native/llvm.txt | 7 |
3 files changed, 15 insertions, 0 deletions
diff --git a/.local/share/meson/native/clang.txt b/.local/share/meson/native/clang.txt new file mode 100644 index 0000000..772dcc5 --- /dev/null +++ b/.local/share/meson/native/clang.txt @@ -0,0 +1,4 @@ +[binaries] +c = 'clang' +cpp = 'clang++' + diff --git a/.local/share/meson/native/gcc.txt b/.local/share/meson/native/gcc.txt new file mode 100644 index 0000000..f9d73f2 --- /dev/null +++ b/.local/share/meson/native/gcc.txt @@ -0,0 +1,4 @@ +[binaries] +c = 'gcc' +cpp = 'g++' + diff --git a/.local/share/meson/native/llvm.txt b/.local/share/meson/native/llvm.txt new file mode 100644 index 0000000..1390be4 --- /dev/null +++ b/.local/share/meson/native/llvm.txt @@ -0,0 +1,7 @@ +[binaries] +c_ld = 'lld' +cpp_ldd = 'lld' +ar = 'llvm-ar' +strip = 'llvm-strip' + + |