summaryrefslogtreecommitdiff
path: root/share/qbs/modules/cpp/DarwinGCC.qbs
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@qt.io>2018-02-21 17:57:32 +0100
committerChristian Kandeler <christian.kandeler@qt.io>2018-02-22 15:19:48 +0000
commitedeac6bab66d6fc8d53daf82bc51e145158b1a3d (patch)
treee67f5d1fb58b1857d4259998a2e9b468ba2ac3c0 /share/qbs/modules/cpp/DarwinGCC.qbs
parent905b78882ac6c6bc14674a23f2eeb8fdea331c9b (diff)
downloadqbs-edeac6bab66d6fc8d53daf82bc51e145158b1a3d.tar.gz
Darwin: Fix lipo rules
- We must activate these rules only on the product that is the actual aggregator. - The lipo command must only consider artifacts of the multiplexed variants of the same product. Change-Id: I25dc42cb53d84d85786b2d7ff96297b7fd58a90d Reviewed-by: Jake Petroules <jake.petroules@qt.io>
Diffstat (limited to 'share/qbs/modules/cpp/DarwinGCC.qbs')
-rw-r--r--share/qbs/modules/cpp/DarwinGCC.qbs9
1 files changed, 5 insertions, 4 deletions
diff --git a/share/qbs/modules/cpp/DarwinGCC.qbs b/share/qbs/modules/cpp/DarwinGCC.qbs
index e6a668486..16176b4eb 100644
--- a/share/qbs/modules/cpp/DarwinGCC.qbs
+++ b/share/qbs/modules/cpp/DarwinGCC.qbs
@@ -64,6 +64,7 @@ UnixGCC {
lipoName: "lipo"
lipoPath: lipoPathPrefix + lipoName
+ property bool enableAggregationRules: product.aggregate && !product.multiplexConfigurationId
targetVendor: "apple"
targetSystem: "darwin"
@@ -206,7 +207,7 @@ UnixGCC {
property bool libcxxAvailable: qbs.toolchain.contains("clang") && cxxLanguageVersion !== "c++98"
Rule {
- condition: product.aggregate
+ condition: enableAggregationRules
inputsFromDependencies: ["application"]
multiplex: true
@@ -217,7 +218,7 @@ UnixGCC {
}
Rule {
- condition: product.aggregate
+ condition: enableAggregationRules
inputsFromDependencies: ["loadablemodule"]
multiplex: true
@@ -229,7 +230,7 @@ UnixGCC {
}
Rule {
- condition: product.aggregate
+ condition: enableAggregationRules
inputsFromDependencies: ["dynamiclibrary"]
multiplex: true
@@ -241,7 +242,7 @@ UnixGCC {
}
Rule {
- condition: product.aggregate
+ condition: enableAggregationRules
inputsFromDependencies: ["staticlibrary"]
multiplex: true