/third_party/rust/crates/clang-sys/ |
D | CHANGELOG.md | 5 (`EntityKind::CXCursor_TranslationUnit`) has been updated for Clang 15.0 and 17 - Fixed `Clang::find` to check that `CLANG_PATH` is an executable file before 56 - Changed `Clang::find` to prefer target-prefixed binaries when a `-target` 58 `x86_64-unknown-linux-gnu` are provided, a target-prefixed Clang executable 60 prefixed Clang executable) 84 - Fixed `Clang::find` panicking when `llvm-config` or `xcode-build` don't output anything to `stdou… 89 - Fixed `Clang::find` to properly search directories returned by the 222 - Changed `Clang::find` to skip dynamic libraries for an incorrect architecture on Windows 266 - Added `args` parameter to `Clang::new` function which passes arguments to the Clang executable 300 - Changed `Clang::find` method to ignore directories and non-executable files [all …]
|
D | README.md | 34 …Note:** If you are using Clang 15.0 or later, you should enable the `clang_15_0` feature or a more… 38 … `static` Cargo feature. In this case, this crate depends on the LLVM and Clang static libraries. … 40 These libraries can be either be installed as a part of Clang or downloaded [here](http://llvm.org/… 42 **Note:** The downloads for LLVM and Clang 3.8 and later do not include the `libclang.a` static lib… 64 …PATH` **(compiletime)** - provides a path to a directory containing LLVM and Clang static libraries 85 …or set the `LLVM_CONFIG_PATH` environment variable. The required LLVM and Clang static libraries w…
|
/third_party/json/tests/ |
D | CMakeLists.txt | 15 # Clang only supports C++17 starting from Clang 5.0 16 if (CMAKE_CXX_COMPILER_ID STREQUAL "Clang" AND CMAKE_CXX_COMPILER_VERSION VERSION_LESS 5.0) 24 # Clang C++20 support appears insufficient prior to Clang 9.0 (based on CI build failure) 25 if (CMAKE_CXX_COMPILER_ID STREQUAL "Clang" AND CMAKE_CXX_COMPILER_VERSION VERSION_LESS 9.0) 88 $<$<CXX_COMPILER_ID:AppleClang>:-fno-exceptions> $<$<CXX_COMPILER_ID:Clang>:-fno-exceptions>
|
D | fuzzing.md | 40 In case your default compiler is not a Clang compiler that includes libFuzzer (Clang 6.0 or later),… 42 Clang via Homebrew calling `brew install llvm` and add `CXX=$(brew --prefix llvm)/bin/clang` to the…
|
/third_party/rust/crates/clang-sys/src/ |
D | support.rs | 21 pub struct Clang { struct 34 impl Clang { argument 59 pub fn find(path: Option<&Path>, args: &[String]) -> Option<Clang> { in find() argument 63 return Some(Clang::new(p, args)); in find() 110 return Some(Clang::new(path, args)); in find() 122 return Some(Clang::new(path, args)); in find()
|
/third_party/rust/crates/cxx/macro/src/ |
D | load.rs | 1 use crate::clang::{Clang, Node}; 106 Clang::NamespaceDecl(decl) => { in traverse() 115 Clang::EnumDecl(decl) => { in traverse() 161 Clang::EnumConstantDecl(decl) => { in traverse() 229 if let Clang::NamespaceDecl(_) = &node.kind { in traverse() 291 Clang::ImplicitCastExpr => clang = &node.inner, in discriminant_value() 292 Clang::ConstantExpr(expr) => match Discriminant::from_str(&expr.value) { in discriminant_value()
|
D | clang.rs | 3 pub type Node = clang_ast::Node<Clang>; 6 pub enum Clang { enum
|
/third_party/node/deps/v8/tools/gcmole/ |
D | README | 42 (2) Get LLVM 8.0 and Clang 8.0 sources and build them. 49 (3) Build gcmole Clang plugin (libgcmole.so) 65 gcmole consists of driver script written in Python and Clang plugin that does 99 continuous integration. A pre-built package of gcmole together with Clang is 107 Clang was built in "third_party/llvm+clang-build" (e.g. by the bootstrapping 112 gcmole is tightly coupled with the AST structure that Clang produces. Therefore 113 when upgrading to a newer Clang version, it might start producing bogus output 129 A convenient way to observe the AST generated by Clang is to pass the following
|
/third_party/rust/crates/bindgen/book/src/ |
D | requirements.md | 5 ## Clang section in Requirements 10 It is required to use Clang 5.0 or greater. 12 ### Installing Clang argument 73 If your package manager doesn't yet offer Clang 5.0, you'll need to build from
|
/third_party/astc-encoder/Source/ |
D | cmake_core.cmake | 26 set(GNU_LIKE "GNU,Clang,AppleClang") 27 set(CLANG_LIKE "Clang,AppleClang") 113 # G++ and Clang++ compiler defines 121 # Hide noise thrown up by Clang 10 and clang-cl 129 # Clang 10 also throws up warnings we need to investigate (ours) 138 $<$<CXX_COMPILER_ID:Clang>:-Wdocumentation>) 254 if(CMAKE_CXX_COMPILER_ID MATCHES "GNU|Clang") 268 " $<$<CXX_COMPILER_ID:Clang>: -Wno-missing-prototypes>"
|
/third_party/elfio/tests/ |
D | CMakeLists.txt | 57 if(CMAKE_CXX_COMPILER_ID STREQUAL "Clang") 68 PRIVATE $<$<C_COMPILER_ID:Clang>:-g -O1 -fsanitize=fuzzer,address> 72 PRIVATE $<$<C_COMPILER_ID:Clang>:-fsanitize=fuzzer,address>
|
/third_party/libcoap/ |
D | CMakeLists.txt | 34 $<$<OR:$<CXX_COMPILER_ID:GNU>,$<CXX_COMPILER_ID:Clang>,$<CXX_COMPILER_ID:AppleClang>>:-pedantic> 35 $<$<OR:$<CXX_COMPILER_ID:GNU>,$<CXX_COMPILER_ID:Clang>,$<CXX_COMPILER_ID:AppleClang>>:-Wall> 36 $<$<OR:$<CXX_COMPILER_ID:GNU>,$<CXX_COMPILER_ID:Clang>,$<CXX_COMPILER_ID:AppleClang>>:-Wcast-qual> 37 $<$<OR:$<CXX_COMPILER_ID:GNU>,$<CXX_COMPILER_ID:Clang>,$<CXX_COMPILER_ID:AppleClang>>:-Wextra> 38 …$<$<OR:$<CXX_COMPILER_ID:GNU>,$<CXX_COMPILER_ID:Clang>,$<CXX_COMPILER_ID:AppleClang>>:-Wformat-sec… 39 $<$<OR:$<CXX_COMPILER_ID:GNU>,$<CXX_COMPILER_ID:Clang>,$<CXX_COMPILER_ID:AppleClang>>:-Winline> 40 …$<$<OR:$<CXX_COMPILER_ID:GNU>,$<CXX_COMPILER_ID:Clang>,$<CXX_COMPILER_ID:AppleClang>>:-Wmissing-de… 41 …$<$<OR:$<CXX_COMPILER_ID:GNU>,$<CXX_COMPILER_ID:Clang>,$<CXX_COMPILER_ID:AppleClang>>:-Wmissing-pr… 42 …$<$<OR:$<CXX_COMPILER_ID:GNU>,$<CXX_COMPILER_ID:Clang>,$<CXX_COMPILER_ID:AppleClang>>:-Wnested-ext… 43 …$<$<OR:$<CXX_COMPILER_ID:GNU>,$<CXX_COMPILER_ID:Clang>,$<CXX_COMPILER_ID:AppleClang>>:-Wpointer-ar… [all …]
|
/third_party/curl/CMake/ |
D | PickyWarnings.cmake | 27 if(CMAKE_COMPILER_IS_GNUCC OR CMAKE_C_COMPILER_ID MATCHES "Clang") 36 if(CMAKE_C_COMPILER_ID MATCHES "Clang") 93 if(CMAKE_C_COMPILER_ID MATCHES "Clang") 100 …if((CMAKE_C_COMPILER_ID STREQUAL "Clang" AND NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 3.6) OR 106 …if((CMAKE_C_COMPILER_ID STREQUAL "Clang" AND NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 3.9) OR 113 …if((CMAKE_C_COMPILER_ID STREQUAL "Clang" AND NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 7.0) OR
|
/third_party/skia/third_party/externals/abseil-cpp/absl/copts/ |
D | AbseilConfigureCopts.cmake | 38 elseif(CMAKE_CXX_COMPILER_ID MATCHES "Clang") # MATCHES so we get both Clang and AppleClang 46 if(CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
|
/third_party/vk-gl-cts/framework/delibs/cmake/ |
D | Defs.cmake | 70 # Prevent mixed compile with GCC and Clang 73 elseif (NOT (CMAKE_C_COMPILER_ID MATCHES "Clang") EQUAL (CMAKE_CXX_COMPILER_ID MATCHES "Clang")) 74 message(FATAL_ERROR "CMake C and CXX compilers do not match. Both or neither must be Clang.") 83 elseif (CMAKE_C_COMPILER_ID MATCHES "Clang")
|
/third_party/skia/site/docs/dev/testing/ |
D | xsan.md | 11 Compiling Skia with ASAN, UBSAN, or TSAN can be done with the latest version of Clang. 25 of Clang and the instrumented libc++, located in /msan. 27 Downloading Clang binaries (Googlers Only) 36 Building Clang binaries from scratch (Other users)
|
/third_party/rust/crates/clang-sys/tests/ |
D | lib.rs | 46 let clang = support::Clang::find(None, &[]).unwrap(); in test_support() 53 let clang = support::Clang::find(None, args).unwrap(); in test_support_target()
|
/third_party/ltp/tools/sparse/ |
D | README.md | 45 ### Clang subsection 47 Note that while it is possible to build Sparse with Clang. This may 48 cause some issues. Namely `GCC_BASE` is set to the Clang resource
|
/third_party/node/deps/cares/m4/ |
D | ax_pthread.m4 | 209 # Are we compiling with Clang? 211 AC_CACHE_CHECK([whether $CC is Clang], 214 # Note that Autoconf sets GCC=yes for Clang as well as GCC 217 [/* Note: Clang 2.7 lacks __clang_[a-z]+__ */ 230 # Note that for GCC and Clang -pthread generally implies -lpthread, 241 # Clang takes -pthread (never supported any other flag), but we'll try with -lpthread first 349 # Clang needs special handling, because older versions handle the -pthread 354 # Clang takes -pthread; it has never supported any other flag 356 # (Note 1: This will need to be revisited if a system that Clang 366 # However, older versions of Clang make a point of warning the user [all …]
|
/third_party/skia/third_party/externals/freetype/builds/unix/ |
D | ax_pthread.m4 | 209 # Are we compiling with Clang? 211 AC_CACHE_CHECK([whether $CC is Clang], 214 # Note that Autoconf sets GCC=yes for Clang as well as GCC 217 [/* Note: Clang 2.7 lacks __clang_[a-z]+__ */ 230 # Note that for GCC and Clang -pthread generally implies -lpthread, 241 # Clang takes -pthread (never supported any other flag), but we'll try with -lpthread first 349 # Clang needs special handling, because older versions handle the -pthread 354 # Clang takes -pthread; it has never supported any other flag 356 # (Note 1: This will need to be revisited if a system that Clang 366 # However, older versions of Clang make a point of warning the user [all …]
|
/third_party/libbpf/ |
D | README_zh.md | 93 libbpf支持构建支持BPF CO-RE的应用程序,这与[BCC](https://github.com/iovisor/bcc/)不同,不需要Clang/LLVM运行时部署到目标服务器并且不依赖… 121 要开发和构建BPF程序,您需要Clang/LLVM 10+。以下发行版默认情况下具有Clang/LLVM 10+包:
|
/third_party/node/deps/uv/m4/ |
D | ax_pthread.m4 | 227 # Are we compiling with Clang? 229 AC_CACHE_CHECK([whether $CC is Clang], 232 # Note that Autoconf sets GCC=yes for Clang as well as GCC 235 [/* Note: Clang 2.7 lacks __clang_[a-z]+__ */ 247 # Clang needs special handling, because older versions handle the -pthread 252 # Clang takes -pthread; it has never supported any other flag 254 # (Note 1: This will need to be revisited if a system that Clang 269 # However, older versions of Clang make a point of warning the user 285 # that build with -Werror. So if the active version of Clang has 288 …AC_CACHE_CHECK([whether Clang needs flag to prevent "argument unused" warning when linking with -p…
|
/third_party/skia/third_party/externals/harfbuzz/m4/ |
D | ax_pthread.m4 | 227 # Are we compiling with Clang? 229 AC_CACHE_CHECK([whether $CC is Clang], 232 # Note that Autoconf sets GCC=yes for Clang as well as GCC 235 [/* Note: Clang 2.7 lacks __clang_[a-z]+__ */ 247 # Clang needs special handling, because older versions handle the -pthread 252 # Clang takes -pthread; it has never supported any other flag 254 # (Note 1: This will need to be revisited if a system that Clang 269 # However, older versions of Clang make a point of warning the user 285 # that build with -Werror. So if the active version of Clang has 288 …AC_CACHE_CHECK([whether Clang needs flag to prevent "argument unused" warning when linking with -p…
|
/third_party/mbedtls/doxygen/ |
D | mbedtls.doxyfile | 38 # Clang >=15, the -Wdocumentation option emits a warning for empty 44 # This avoids writing redundant text and keeps Clang happy.
|
/third_party/vk-gl-cts/external/amber/src/src/ |
D | CMakeLists.txt | 88 if (CMAKE_CXX_COMPILER_ID STREQUAL "Clang") 219 if(${CMAKE_CXX_COMPILER_ID} STREQUAL "Clang") 221 # Disable Clang's warning that will alwaays fire on that. This is required to build
|