summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@theqtcompany.com>2016-02-05 15:50:49 +0100
committerChristian Kandeler <christian.kandeler@theqtcompany.com>2016-02-08 08:50:11 +0000
commit703ae8f08f8a488467db62bced44b5aef8f9abb5 (patch)
tree04a7024289df60ae52d4ca124d797b6326c05ce9
parent927b65e5b82e26ec0fcdd01206064649fe3baf19 (diff)
PerfParser: Use system elfutils by default when building with qbs.
Ever since a qmake-only refactoring of our internal elfutils project, the qbs build has been broken and it does not seem worth the effort to try to fix it, as there are no advantages over the system-provided elfutils. Change-Id: I2bced31ebd659242c2829d8060350bfda556ed0a Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
-rw-r--r--perfparser.qbs3
1 files changed, 1 insertions, 2 deletions
diff --git a/perfparser.qbs b/perfparser.qbs
index b2b2412..6b3e9f3 100644
--- a/perfparser.qbs
+++ b/perfparser.qbs
@@ -4,8 +4,7 @@ Project {
name: "Perf Parser"
condition: qbs.targetOS.contains("linux")
- property bool useSystemElfUtils: !qbs.toolchain.contains("gcc")
- || qbs.toolchain.contains("clang")
+ property bool useSystemElfUtils: true
references: [
"3rdparty/elfutils",