Lines Matching refs:ClangProperties
122 ClangProperties cc.RustBindgenClangProperties member
135 if String(b.ClangProperties.Cpp_std) != "" && String(b.ClangProperties.C_std) != "" {
139 if b.ClangProperties.Cpp_std != nil {
141 if String(b.ClangProperties.Cpp_std) == "experimental" {
143 …} else if String(b.ClangProperties.Cpp_std) == "default" || String(b.ClangProperties.Cpp_std) == "…
146 stdVersion = String(b.ClangProperties.Cpp_std)
148 } else if b.ClangProperties.C_std != nil {
150 if String(b.ClangProperties.C_std) == "experimental" {
152 } else if String(b.ClangProperties.C_std) == "default" || String(b.ClangProperties.C_std) == "" {
155 stdVersion = String(b.ClangProperties.C_std)
239 cflagsProp := b.ClangProperties.Cflags.GetOrDefault(ctx, nil)
253 for _, include := range b.ClangProperties.Local_include_dirs {
288 cflags = append(cflags, esc(b.ClangProperties.Cppflags)...)
342 &b.Properties, &b.ClangProperties)
364 ClangProperties: cc.RustBindgenClangProperties{},
396 deps.SharedLibs = append(deps.SharedLibs, b.ClangProperties.Shared_libs...)
397 deps.StaticLibs = append(deps.StaticLibs, b.ClangProperties.Static_libs...)
398 deps.HeaderLibs = append(deps.HeaderLibs, b.ClangProperties.Header_libs...)