summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--recipes-devtools/clang/clang/llvm-config8
1 files changed, 4 insertions, 4 deletions
diff --git a/recipes-devtools/clang/clang/llvm-config b/recipes-devtools/clang/clang/llvm-config
index 7788bd5..88a1908 100644
--- a/recipes-devtools/clang/clang/llvm-config
+++ b/recipes-devtools/clang/clang/llvm-config
@@ -25,16 +25,16 @@ fi
25for arg in "$@"; do 25for arg in "$@"; do
26 case "$arg" in 26 case "$arg" in
27 --cppflags) 27 --cppflags)
28 echo $TARGET_CPPFLAGS 28 echo $CPPFLAGS
29 ;; 29 ;;
30 --cflags) 30 --cflags)
31 echo $TARGET_CFLAGS 31 echo $CFLAGS
32 ;; 32 ;;
33 --cxxflags) 33 --cxxflags)
34 echo $TARGET_CXXFLAGS 34 echo $CXXFLAGS
35 ;; 35 ;;
36 --ldflags) 36 --ldflags)
37 echo $TARGET_LDFLAGS 37 echo $LDFLAGS
38 ;; 38 ;;
39 *) 39 *)
40 echo "$("$NEXT_LLVM_CONFIG" "$arg")" 40 echo "$("$NEXT_LLVM_CONFIG" "$arg")"