forked from OSchip/llvm-project
[Driver] Handle the default case missed in r329748.
Differential Revision: https://reviews.llvm.org/D45499 llvm-svn: 329754
This commit is contained in:
parent
5e10637a3b
commit
d880416722
|
@ -316,6 +316,8 @@ void NaClToolChain::addLibCxxIncludePaths(
|
|||
|
||||
SmallString<128> P(D.Dir + "/../");
|
||||
switch (getTriple().getArch()) {
|
||||
default:
|
||||
break;
|
||||
case llvm::Triple::arm:
|
||||
llvm::sys::path::append(P, "arm-nacl/include/c++/v1");
|
||||
addSystemInclude(DriverArgs, CC1Args, P.str());
|
||||
|
|
Loading…
Reference in New Issue