diff --git a/src/plugins/projectexplorer/gcctoolchain.cpp b/src/plugins/projectexplorer/gcctoolchain.cpp
index ec4c0c91a4907eaffdbff75e265ccedc2947d397..a6b1d6942ebc3189f6fb29e62b5cf385a03cb8a9 100644
--- a/src/plugins/projectexplorer/gcctoolchain.cpp
+++ b/src/plugins/projectexplorer/gcctoolchain.cpp
@@ -146,10 +146,12 @@ static QByteArray gccPredefinedMacros(const Utils::FileName &gcc, const QStringL
     return predefinedMacros;
 }
 
-static QList<HeaderPath> gccHeaderPathes(const Utils::FileName &gcc, const QStringList &env)
+QList<HeaderPath> GccToolChain::gccHeaderPaths(const Utils::FileName &gcc, const QStringList &env, const QString &sysrootPath)
 {
     QList<HeaderPath> systemHeaderPaths;
     QStringList arguments;
+    if (!sysrootPath.isEmpty())
+        arguments.append(QString::fromLatin1("--sysroot=%1").arg(sysrootPath));
     arguments << QLatin1String("-xc++")
               << QLatin1String("-E")
               << QLatin1String("-v")
@@ -326,7 +328,7 @@ GccToolChain::GccToolChain(const GccToolChain &tc) :
     m_debuggerCommand(tc.debuggerCommand()),
     m_targetAbi(tc.m_targetAbi),
     m_supportedAbis(tc.m_supportedAbis),
-    m_headerPathes(tc.m_headerPathes),
+    m_headerPaths(tc.m_headerPaths),
     m_version(tc.m_version)
 { }
 
@@ -409,13 +411,13 @@ ProjectExplorer::ToolChain::CompilerFlags GccToolChain::compilerFlags(const QStr
 
 QList<HeaderPath> GccToolChain::systemHeaderPaths() const
 {
-    if (m_headerPathes.isEmpty()) {
+    if (m_headerPaths.isEmpty()) {
         // Using a clean environment breaks ccache/distcc/etc.
         Utils::Environment env = Utils::Environment::systemEnvironment();
         addToEnvironment(env);
-        m_headerPathes = gccHeaderPathes(m_compilerCommand, env.toStringList());
+        m_headerPaths = gccHeaderPaths(m_compilerCommand, env.toStringList());
     }
-    return m_headerPathes;
+    return m_headerPaths;
 }
 
 void GccToolChain::addToEnvironment(Utils::Environment &env) const
diff --git a/src/plugins/projectexplorer/gcctoolchain.h b/src/plugins/projectexplorer/gcctoolchain.h
index ca9a2c239f4d52d437f9371126545ec667d04286..4a77843c16e0ce8bb213edadb4202aa7510e868a 100644
--- a/src/plugins/projectexplorer/gcctoolchain.h
+++ b/src/plugins/projectexplorer/gcctoolchain.h
@@ -97,6 +97,8 @@ protected:
     virtual QList<Abi> detectSupportedAbis() const;
     virtual QString detectVersion() const;
 
+    static QList<HeaderPath> gccHeaderPaths(const Utils::FileName &gcc, const QStringList &env, const QString &sysrootPath = QString());
+
     mutable QByteArray m_predefinedMacros;
 
 private:
@@ -109,7 +111,7 @@ private:
 
     Abi m_targetAbi;
     mutable QList<Abi> m_supportedAbis;
-    mutable QList<HeaderPath> m_headerPathes;
+    mutable QList<HeaderPath> m_headerPaths;
     mutable QString m_version;
 
     friend class Internal::GccToolChainFactory;