
This patch deprecates `module.map` in favor of `module.modulemap`, which has been the preferred form since 2014. The eventual goal is to remove support for `module.map` to reduce the number of stats Clang needs to do while searching for module map files. This patch touches a lot of files, but the majority of them are just renaming tests or references to the file in comments or documentation. The relevant files are: * lib/Lex/HeaderSearch.cpp * include/clang/Basic/DiagnosticGroups.td * include/clang/Basic/DiagnosticLexKinds.td
23 lines
964 B
Objective-C
23 lines
964 B
Objective-C
// RUN: rm -rf %t-mcp
|
|
// RUN: mkdir -p %t-mcp
|
|
|
|
// RUN: %clang_cc1 -x objective-c -isystem %S/Inputs/System/usr/include -dependency-file %t.d.1 -MT %s.o -I %S/Inputs -fsyntax-only -fmodules -fimplicit-module-maps -fmodules-cache-path=%t-mcp %s
|
|
// RUN: FileCheck %s < %t.d.1
|
|
// CHECK: dependency-gen.m
|
|
// CHECK: Inputs{{.}}module.modulemap
|
|
// CHECK: Inputs{{.}}diamond_top.h
|
|
// CHECK-NOT: usr{{.}}include{{.}}module.modulemap
|
|
// CHECK-NOT: stdint.h
|
|
|
|
|
|
// RUN: %clang_cc1 -x objective-c -isystem %S/Inputs/System/usr/include -dependency-file %t.d.2 -MT %s.o -I %S/Inputs -sys-header-deps -fsyntax-only -fmodules -fimplicit-module-maps -fmodules-cache-path=%t-mcp %s
|
|
// RUN: FileCheck %s -check-prefix=CHECK-SYS < %t.d.2
|
|
// CHECK-SYS: dependency-gen.m
|
|
// CHECK-SYS: Inputs{{.}}module.modulemap
|
|
// CHECK-SYS: Inputs{{.}}diamond_top.h
|
|
// CHECK-SYS: usr{{.}}include{{.}}module.modulemap
|
|
// CHECK-SYS: stdint.h
|
|
|
|
#import "diamond_top.h"
|
|
#import "stdint.h" // inside sysroot
|