diff options
| author | Naveen Saini <naveen.kumar.saini@intel.com> | 2023-05-12 13:56:48 +0800 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2023-05-15 22:39:47 -0700 |
| commit | b9df71259272cc4e3078e92614720756ccb05845 (patch) | |
| tree | 86c3f81ef0a2824b4480c8c10d1cc62c4b8c416e /recipes-devtools | |
| parent | 68ec449f97ffa58d835163581fc72afcb08f027b (diff) | |
| download | meta-clang-b9df71259272cc4e3078e92614720756ccb05845.tar.gz | |
llvm-config: add --libfiles option
--libfiles Fully qualified library filenames for makefile depends.
This option is being used by ispc cmake.
https://github.com/ispc/ispc/blob/main/cmake/FindLLVM.cmake#L116
Signed-off-by: Naveen Saini <naveen.kumar.saini@intel.com>
Diffstat (limited to 'recipes-devtools')
| -rw-r--r-- | recipes-devtools/clang/clang/llvm-config | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/recipes-devtools/clang/clang/llvm-config b/recipes-devtools/clang/clang/llvm-config index 7788bd5..b405604 100644 --- a/recipes-devtools/clang/clang/llvm-config +++ b/recipes-devtools/clang/clang/llvm-config | |||
| @@ -22,6 +22,11 @@ if [[ $1 == "--bindir" ]]; then | |||
| 22 | exec "$NEXT_LLVM_CONFIG" $@ | 22 | exec "$NEXT_LLVM_CONFIG" $@ |
| 23 | fi | 23 | fi |
| 24 | 24 | ||
| 25 | if [[ $1 == "--libfiles" ]]; then | ||
| 26 | exec "$NEXT_LLVM_CONFIG" $@ | ||
| 27 | fi | ||
| 28 | |||
| 29 | |||
| 25 | for arg in "$@"; do | 30 | for arg in "$@"; do |
| 26 | case "$arg" in | 31 | case "$arg" in |
| 27 | --cppflags) | 32 | --cppflags) |
