Remove the storage for -cxx-system-include. Make libcxx toolchain

use -nostdinc++ and -cxx-isystem.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@126223 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Joerg Sonnenberger 2011-02-22 15:19:35 +00:00
Родитель a5ef584fd3
Коммит 0bb208c91e
4 изменённых файлов: 4 добавлений и 16 удалений

Просмотреть файл

@ -55,9 +55,6 @@ public:
/// User specified include entries.
std::vector<Entry> UserEntries;
/// If non-empty, the list of C++ standard include paths to use.
std::vector<std::string> CXXSystemIncludes;
/// A (system-path) delimited list of include paths to be added from the
/// environment following the user specified includes (but prior to builtin
/// and standard includes). This is parsed in the same manner as the CPATH

Просмотреть файл

@ -198,7 +198,8 @@ void ToolChain::AddClangCXXStdlibIncludeArgs(const ArgList &Args,
switch (Type) {
case ToolChain::CST_Libcxx:
CmdArgs.push_back("-cxx-system-include");
CmdArgs.push_back("-nostdinc++");
CmdArgs.push_back("-cxx-isystem");
CmdArgs.push_back("/usr/include/c++/v1");
break;

Просмотреть файл

@ -473,11 +473,6 @@ static void HeaderSearchOptsToArgs(const HeaderSearchOptions &Opts,
Res.push_back(Opts.Sysroot);
}
for (unsigned i = 0, e = Opts.CXXSystemIncludes.size(); i != e; ++i) {
Res.push_back("-cxx-system-include");
Res.push_back(Opts.CXXSystemIncludes[i]);
}
/// User specified include entries.
for (unsigned i = 0, e = Opts.UserEntries.size(); i != e; ++i) {
const HeaderSearchOptions::Entry &E = Opts.UserEntries[i];

Просмотреть файл

@ -816,13 +816,8 @@ AddDefaultCPlusPlusIncludePaths(const llvm::Triple &triple) {
void InitHeaderSearch::AddDefaultSystemIncludePaths(const LangOptions &Lang,
const llvm::Triple &triple,
const HeaderSearchOptions &HSOpts) {
if (Lang.CPlusPlus && HSOpts.UseStandardCXXIncludes) {
if (!HSOpts.CXXSystemIncludes.empty()) {
for (unsigned i = 0, e = HSOpts.CXXSystemIncludes.size(); i != e; ++i)
AddPath(HSOpts.CXXSystemIncludes[i], CXXSystem, true, false, false);
} else
AddDefaultCPlusPlusIncludePaths(triple);
}
if (Lang.CPlusPlus && HSOpts.UseStandardCXXIncludes)
AddDefaultCPlusPlusIncludePaths(triple);
AddDefaultCIncludePaths(triple, HSOpts);