diff --git a/clang/lib/Driver/ToolChains/Clang.cpp b/clang/lib/Driver/ToolChains/Clang.cpp --- a/clang/lib/Driver/ToolChains/Clang.cpp +++ b/clang/lib/Driver/ToolChains/Clang.cpp @@ -3600,6 +3600,11 @@ } bool Driver::getDefaultModuleCachePath(SmallVectorImpl &Result) { + if (const char *Str = std::getenv("CLANG_MODULE_CACHE_PATH")) { + Twine Path{Str}; + Path.toVector(Result); + return Path.getSingleStringRef() != ""; + } if (llvm::sys::path::cache_directory(Result)) { llvm::sys::path::append(Result, "clang"); llvm::sys::path::append(Result, "ModuleCache"); diff --git a/clang/test/Driver/modules-cache-path.m b/clang/test/Driver/modules-cache-path.m --- a/clang/test/Driver/modules-cache-path.m +++ b/clang/test/Driver/modules-cache-path.m @@ -1,2 +1,10 @@ // RUN: %clang -fmodules -### %s 2>&1 | FileCheck %s -check-prefix=CHECK-DEFAULT // CHECK-DEFAULT: -fmodules-cache-path={{.*}}clang{{[/\\]+}}ModuleCache + +// RUN: env CLANG_MODULE_CACHE_PATH=/dev/null \ +// RUN: %clang -fmodules -### %s 2>&1 | FileCheck %s -check-prefix=OVERRIDE +// OVERRIDE: -fmodules-cache-path=/dev/null + +// RUN: env CLANG_MODULE_CACHE_PATH= \ +// RUN: %clang -fmodules -### %s 2>&1 | FileCheck %s -check-prefix=DISABLE +// DISABLE-NOT: -fmodules-cache-path=