Skip to content
Snippets Groups Projects
Commit 90b0bc6f authored by Benjamin Kramer's avatar Benjamin Kramer
Browse files

ccc-analyzer: pass -stdlib=libc++ through to the analyzer.

Otherwise clang can't analyze code that relies on features provided by libc++.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@164262 91177308-0d34-0410-b5e6-96231b3b80d8
parent 847665dc
No related branches found
No related tags found
No related merge requests found
...@@ -354,6 +354,7 @@ my %CompilerLinkerOptionMap = ( ...@@ -354,6 +354,7 @@ my %CompilerLinkerOptionMap = (
'-arch' => 1, '-arch' => 1,
'-m32' => 0, '-m32' => 0,
'-m64' => 0, '-m64' => 0,
'-stdlib' => 0, # This is really a 1 argument, but always has '='
'-v' => 0, '-v' => 0,
'-fpascal-strings' => 0, '-fpascal-strings' => 0,
'-mmacosx-version-min' => 0, # This is really a 1 argument, but always has '=' '-mmacosx-version-min' => 0, # This is really a 1 argument, but always has '='
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment