summaryrefslogtreecommitdiffstats
path: root/tools/buildscripts
diff options
context:
space:
mode:
authorPierre Rossi <pierre.rossi@digia.com>2014-08-18 18:18:52 +0200
committerAllan Sandfeld Jensen <allan.jensen@digia.com>2014-08-19 10:16:15 +0200
commit065fa1ef2fbbec21c03f00eeaa9cd70f3956890c (patch)
tree7d1af1cbbf61a05e7af904eef90a151989950eac /tools/buildscripts
parentafd4c43bcef467da03d89d5468742a1dcbfa04fa (diff)
Update the gyp variable used to disable tcmalloc
This changed with chrome 37. We only need to define it unconditionally in gyp_qtwebengine as tcmalloc is never an option for us. Change-Id: I8b21eb1114582c1d9a8aa61c5f15fc8469721395 Reviewed-by: Jocelyn Turcotte <jocelyn.turcotte@digia.com>
Diffstat (limited to 'tools/buildscripts')
-rwxr-xr-xtools/buildscripts/gyp_qtwebengine2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/buildscripts/gyp_qtwebengine b/tools/buildscripts/gyp_qtwebengine
index 3cdacd184..3c7461993 100755
--- a/tools/buildscripts/gyp_qtwebengine
+++ b/tools/buildscripts/gyp_qtwebengine
@@ -106,7 +106,7 @@ if __name__ == '__main__':
# We always have to disable tcmalloc.
# Allocating with tcmalloc in chromium code and freeing without
# tcmalloc outside of chromium code would cause erratic behavior.
- args.extend(['-D', 'linux_use_tcmalloc=0'])
+ args.extend(['-D', 'use_allocator=none'])
# On Mac we want to build in x64 mode. And we want to use libc++.
if sys.platform in ('darwin',) and not 'GYP_CROSSCOMPILE' in os.environ: