diff options
author | Greg Clayton <gclayton@apple.com> | 2015-01-22 18:25:49 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2015-01-22 18:25:49 +0000 |
commit | cd6bbba18612654fdc8aa2508202333694b207ab (patch) | |
tree | b42efb5a23a2ab80b6436f0446db78fe528f5976 /lldb/source/Target/Platform.cpp | |
parent | 37c41c1d2c787ebc51fe40d1cc0d14e57f4b648d (diff) | |
download | bcm5719-llvm-cd6bbba18612654fdc8aa2508202333694b207ab.tar.gz bcm5719-llvm-cd6bbba18612654fdc8aa2508202333694b207ab.zip |
Fix the -*-version-min option to not try and use the current OS version for iOS and the simulator since llvm/clang will assert and kill LLDB.
llvm-svn: 226846
Diffstat (limited to 'lldb/source/Target/Platform.cpp')
-rw-r--r-- | lldb/source/Target/Platform.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Target/Platform.cpp b/lldb/source/Target/Platform.cpp index f9f289e9d06..83a8769953f 100644 --- a/lldb/source/Target/Platform.cpp +++ b/lldb/source/Target/Platform.cpp @@ -463,7 +463,7 @@ Platform::GetOSKernelDescription (std::string &s) } void -Platform::AddClangModuleCompilationOptions (std::vector<std::string> &options) +Platform::AddClangModuleCompilationOptions (Target *target, std::vector<std::string> &options) { std::vector<std::string> default_compilation_options = { |