aboutsummaryrefslogtreecommitdiffstats
path: root/src/app/qbs-setup-toolchains
diff options
context:
space:
mode:
authorJake Petroules <jake.petroules@qt.io>2016-07-27 08:53:44 -0700
committerJake Petroules <jake.petroules@qt.io>2016-07-28 07:04:35 +0000
commita26835d1e04fb01c3580d91d3826af302d787ad2 (patch)
tree40f573eeacf780b8572ac65b98c6d3595bfa5ad3 /src/app/qbs-setup-toolchains
parentfc6723fe180f045d5405209f94ae1e6fc183e4ba (diff)
Don't set the compiler or linker name in the Xcode probe
This fixes linkerMode:automatic where the linker is determined by Qbs, and the compilerName assignment is unnecessary because the default name is sufficient. Change-Id: I1fce60377f03313370e60df4ab0ed163ceae4655 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'src/app/qbs-setup-toolchains')
-rw-r--r--src/app/qbs-setup-toolchains/xcodeprobe.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/app/qbs-setup-toolchains/xcodeprobe.cpp b/src/app/qbs-setup-toolchains/xcodeprobe.cpp
index a23c3e869..e11af6296 100644
--- a/src/app/qbs-setup-toolchains/xcodeprobe.cpp
+++ b/src/app/qbs-setup-toolchains/xcodeprobe.cpp
@@ -165,8 +165,6 @@ void XcodeProbe::setupDefaultToolchains(const QString &devPath, const QString &x
Profile installationProfile(xcodeName, settings);
installationProfile.removeProfile();
- installationProfile.setValue(QStringLiteral("cpp.compilerName"), QStringLiteral("clang++"));
- installationProfile.setValue(QStringLiteral("cpp.linkerName"), QStringLiteral("clang++"));
installationProfile.setValue(QStringLiteral("qbs.toolchain"), QStringList()
<< QLatin1String("xcode")
<< QLatin1String("clang")