mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-03 09:16:06 +00:00

This adds -nostdsysteminc to the %clang_cc1 expansion, which should make it harder to accidentally write tests that depend on headers in /usr/include. It also updates a few tests that use -isysroot <x> and a darwin triple to omit the triple and use -isystem <x>/usr/include instead, making them a little bit more general. Incidentally, this fixes a test failure I'm seeing on darwin in Modules/stddef.c, that happens because my system finds a stddef.h in /usr/include. llvm-svn: 219030
41 lines
1.3 KiB
Matlab
41 lines
1.3 KiB
Matlab
|
|
@import DependsOnModule;
|
|
|
|
// RUN: rm -rf %t
|
|
// RUN: %clang_cc1 -w -Wunused -fmodules -fdisable-module-hash -fmodules-cache-path=%t -F %S/Inputs -DBLARG -DWIBBLE=WOBBLE %s
|
|
// RUN: %clang_cc1 -module-file-info %t/DependsOnModule.pcm | FileCheck %s
|
|
|
|
// CHECK: Generated by this Clang:
|
|
|
|
// CHECK: Module name: DependsOnModule
|
|
// CHECK: Module map file: {{.*}}DependsOnModule.framework{{[/\\]}}module.map
|
|
|
|
// CHECK: Language options:
|
|
// CHECK: C99: Yes
|
|
// CHECK: Objective-C 1: Yes
|
|
// CHECK: modules extension to C: Yes
|
|
|
|
// CHECK: Target options:
|
|
// CHECK: Triple:
|
|
// CHECK: CPU:
|
|
// CHECK: ABI:
|
|
|
|
// CHECK: Diagnostic options:
|
|
// CHECK: IgnoreWarnings: Yes
|
|
// CHECK: Diagnostic flags:
|
|
// CHECK: -Wunused
|
|
|
|
// CHECK: Header search options:
|
|
// CHECK: System root [-isysroot=]: '/'
|
|
// CHECK: Use builtin include directories [-nobuiltininc]: Yes
|
|
// CHECK: Use standard system include directories [-nostdinc]: No
|
|
// CHECK: Use standard C++ include directories [-nostdinc++]: Yes
|
|
// CHECK: Use libc++ (rather than libstdc++) [-stdlib=]:
|
|
|
|
// CHECK: Preprocessor options:
|
|
// CHECK: Uses compiler/target-specific predefines [-undef]: Yes
|
|
// CHECK: Uses detailed preprocessing record (for indexing): No
|
|
// CHECK: Predefined macros:
|
|
// CHECK: -DBLARG
|
|
// CHECK: -DWIBBLE=WOBBLE
|