aboutsummaryrefslogtreecommitdiff
path: root/Driver/clang.cpp
diff options
context:
space:
mode:
authorLauro Ramos Venancio <lauro.venancio@gmail.com>2008-02-15 22:36:38 +0000
committerLauro Ramos Venancio <lauro.venancio@gmail.com>2008-02-15 22:36:38 +0000
commita674349df307a3e9528805c4cbe03a0feff8779b (patch)
tree62b6b16ff02bdafc0b52e0bfca0d2c5df2940998 /Driver/clang.cpp
parent279876b3b4a98d2edc46df591577e904b209be94 (diff)
Set Ubuntu 7.10 c++ include path.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@47186 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Driver/clang.cpp')
-rw-r--r--Driver/clang.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/Driver/clang.cpp b/Driver/clang.cpp
index 71291ae0a2..4c6a47c90d 100644
--- a/Driver/clang.cpp
+++ b/Driver/clang.cpp
@@ -848,6 +848,13 @@ static void InitializeIncludePaths(HeaderSearch &Headers, FileManager &FM,
false, Headers);
AddPath("/usr/include/c++/4.0.0/backward", System, true, false, false,
Headers);
+
+ // Ubuntu 7.10 - Gutsy Gibbon
+ AddPath("/usr/include/c++/4.1.3", System, true, false, false, Headers);
+ AddPath("/usr/include/c++/4.1.3/i486-linux-gnu", System, true, false,
+ false, Headers);
+ AddPath("/usr/include/c++/4.1.3/backward", System, true, false, false,
+ Headers);
}
AddPath("/usr/local/include", System, false, false, false, Headers);