diff options
author | Samay Sharma <smilingsamay@gmail.com> | 2022-08-30 10:00:23 -0700 |
---|---|---|
committer | Eli Schwartz <eschwartz93@gmail.com> | 2022-08-30 15:06:51 -0400 |
commit | 2c1ac8ac1ddb532cf498cc97a5bb36d5a05b4094 (patch) | |
tree | 0446b6c92787e81482e7a81802dbeade0f4fc6d1 | |
parent | 8059908888fc5c4e9cd9716f180f4a40f3cb6264 (diff) | |
download | meson-2c1ac8ac1ddb532cf498cc97a5bb36d5a05b4094.zip meson-2c1ac8ac1ddb532cf498cc97a5bb36d5a05b4094.tar.gz meson-2c1ac8ac1ddb532cf498cc97a5bb36d5a05b4094.tar.bz2 |
Add LLVM_CONFIG support
-rw-r--r-- | mesonbuild/envconfig.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mesonbuild/envconfig.py b/mesonbuild/envconfig.py index 0e47c05..97f7264 100644 --- a/mesonbuild/envconfig.py +++ b/mesonbuild/envconfig.py @@ -132,6 +132,7 @@ ENV_VAR_PROG_MAP: T.Mapping[str, str] = { 'pkg-config': 'PKG_CONFIG', 'make': 'MAKE', 'vapigen': 'VAPIGEN', + 'llvm-config': 'LLVM_CONFIG', } # Deprecated environment variables mapped from the new variable to the old one |