mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-27 23:38:59 -04:00

We used to have a flag to enable module maps, and two more flags to enable implicit module maps. This is all redundant; we don't need any flag for enabling module maps in the abstract, and we don't usually have -fno- flags for -cc1. We now have just a single flag, -fimplicit-module-maps, that enables implicitly searching the file system for module map files and loading them. The driver interface is unchanged for now. We should probably rename -fmodule-maps to -fimplicit-module-maps at some point. llvm-svn: 239789
22 lines
1000 B
C
22 lines
1000 B
C
#ifdef NONEXISTENT
|
|
@import load_nonexistent;
|
|
#endif
|
|
|
|
#ifdef FAILURE
|
|
@import load_failure;
|
|
#endif
|
|
|
|
// RUN: rm -rf %t
|
|
// RUN: %clang_cc1 -fmodules -fimplicit-module-maps -x objective-c++ -fmodules-cache-path=%t -fdisable-module-hash -emit-module -fmodule-name=load_failure %S/Inputs/module.map
|
|
// RUN: not %clang_cc1 -fmodules -fimplicit-module-maps -x objective-c -fmodules-cache-path=%t -I %S/Inputs -fdisable-module-hash %s -DNONEXISTENT 2>&1 | FileCheck -check-prefix=CHECK-NONEXISTENT %s
|
|
// CHECK-NONEXISTENT: load_failure.c:2:9: fatal error: module 'load_nonexistent' not found
|
|
|
|
// RUN: not %clang_cc1 -fmodules -fimplicit-module-maps -x objective-c -fmodules-cache-path=%t -I %S/Inputs -fdisable-module-hash %s -DFAILURE 2> %t.out
|
|
// RUN: FileCheck -check-prefix=CHECK-FAILURE %s < %t.out
|
|
|
|
// FIXME: Clean up diagnostic text below and give it a location
|
|
// CHECK-FAILURE: error: C99 was disabled in PCH file but is currently enabled
|
|
// FIXME: When we have a syntax for modules in C, use that.
|
|
|
|
|