This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from dbc63abadb [CodeComplete] Fix test failure on different host and target [...] new 228f2c50c5 [darwin] parse the SDK settings from SDKSettings.json if it [...]
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: include/clang/Basic/DiagnosticDriverKinds.td | 4 + include/clang/Basic/TargetInfo.h | 6 ++ include/clang/Basic/TargetOptions.h | 8 +- include/clang/Driver/CC1Options.td | 2 + include/clang/Driver/DarwinSDKInfo.h | 42 ++++++++ lib/CodeGen/ModuleBuilder.cpp | 3 + lib/Driver/CMakeLists.txt | 1 + lib/Driver/DarwinSDKInfo.cpp | 44 ++++++++ lib/Driver/ToolChains/Darwin.cpp | 115 ++++++++++++++++----- lib/Driver/ToolChains/Darwin.h | 6 +- lib/Frontend/CompilerInvocation.cpp | 8 ++ test/CodeGen/darwin-sdk-version.c | 4 + .../Driver/Inputs/MacOSX10.14.sdk/SDKSettings.json | 1 + test/Driver/darwin-sdk-version.c | 37 +++++++ test/Frontend/ast-main.c | 6 +- test/Frontend/ast-main.cpp | 6 +- 16 files changed, 256 insertions(+), 37 deletions(-) create mode 100644 include/clang/Driver/DarwinSDKInfo.h create mode 100644 lib/Driver/DarwinSDKInfo.cpp create mode 100644 test/CodeGen/darwin-sdk-version.c create mode 100644 test/Driver/Inputs/MacOSX10.14.sdk/SDKSettings.json create mode 100644 test/Driver/darwin-sdk-version.c