diff options
author | Marc Pervaz Boocha <mboocha@sudomsg.xyz> | 2022-08-31 17:39:04 +0530 |
---|---|---|
committer | Marc Pervaz Boocha <mboocha@sudomsg.xyz> | 2022-08-31 17:39:04 +0530 |
commit | ec0d37e0c0cb304332909a05bd9f984463b6fcae (patch) | |
tree | ff0500081864ba98b83348e8c091995f0d79322c /.local/share/meson/native | |
download | dotfiles-ec0d37e0c0cb304332909a05bd9f984463b6fcae.tar dotfiles-ec0d37e0c0cb304332909a05bd9f984463b6fcae.tar.gz dotfiles-ec0d37e0c0cb304332909a05bd9f984463b6fcae.tar.bz2 dotfiles-ec0d37e0c0cb304332909a05bd9f984463b6fcae.tar.lz dotfiles-ec0d37e0c0cb304332909a05bd9f984463b6fcae.tar.xz dotfiles-ec0d37e0c0cb304332909a05bd9f984463b6fcae.tar.zst dotfiles-ec0d37e0c0cb304332909a05bd9f984463b6fcae.zip |
Initial Commit
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' + + |