diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2014-03-03 08:12:05 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2014-03-03 08:12:05 +0000 |
commit | 1594c1550009af69ba84ba01e29c79274d19692a (patch) | |
tree | 377bceb58fa3aaba7cc8a7e1abffda72089b39dd /clang/lib/Frontend/CompilerInvocation.cpp | |
parent | 2bbb02959930f8c72eb85b0ba885e5b8bbb83da9 (diff) | |
download | llvm-1594c1550009af69ba84ba01e29c79274d19692a.zip llvm-1594c1550009af69ba84ba01e29c79274d19692a.tar.gz llvm-1594c1550009af69ba84ba01e29c79274d19692a.tar.bz2 |
Introduce '-fmodules-user-build-path' which accepts the "canonical" path to a user workspace build.
This is used to avoid conflicts with user modules with the same name from different workspaces.
rdar://16042513
llvm-svn: 202683
Diffstat (limited to 'clang/lib/Frontend/CompilerInvocation.cpp')
-rw-r--r-- | clang/lib/Frontend/CompilerInvocation.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/clang/lib/Frontend/CompilerInvocation.cpp b/clang/lib/Frontend/CompilerInvocation.cpp index 85aae23..f8cb938 100644 --- a/clang/lib/Frontend/CompilerInvocation.cpp +++ b/clang/lib/Frontend/CompilerInvocation.cpp @@ -918,6 +918,7 @@ static void ParseHeaderSearchArgs(HeaderSearchOptions &Opts, ArgList &Args) { Opts.UseLibcxx = (strcmp(A->getValue(), "libc++") == 0); Opts.ResourceDir = Args.getLastArgValue(OPT_resource_dir); Opts.ModuleCachePath = Args.getLastArgValue(OPT_fmodules_cache_path); + Opts.ModuleUserBuildPath = Args.getLastArgValue(OPT_fmodules_user_build_path); Opts.DisableModuleHash = Args.hasArg(OPT_fdisable_module_hash); // -fmodules implies -fmodule-maps Opts.ModuleMaps = Args.hasArg(OPT_fmodule_maps) || Args.hasArg(OPT_fmodules); @@ -1821,6 +1822,9 @@ std::string CompilerInvocation::getModuleHash() const { hsOpts.UseStandardCXXIncludes, hsOpts.UseLibcxx); + // Extend the signature with the user build path. + code = hash_combine(code, hsOpts.ModuleUserBuildPath); + // Darwin-specific hack: if we have a sysroot, use the contents and // modification time of // $sysroot/System/Library/CoreServices/SystemVersion.plist |