diff options
Diffstat (limited to 'src/allocators/tcmalloc.py')
| -rw-r--r-- | src/allocators/tcmalloc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/allocators/tcmalloc.py b/src/allocators/tcmalloc.py index 0940400..9372f00 100644 --- a/src/allocators/tcmalloc.py +++ b/src/allocators/tcmalloc.py @@ -14,7 +14,7 @@ class TCMalloc (src.allocator.Allocator): kwargs["sources"] = tcmalloc_src kwargs["LD_PRELOAD"] = "{dir}/lib/libtcmalloc.so" - kwargs["build_cmds"] = ["cd {srcdir}; ./configure --prefix={dir} CXXFLAGS=-O2", + kwargs["build_cmds"] = ["cd {srcdir}; ./configure --prefix={dir}", "cd {srcdir}; make install -j4"] super().__init__(name, **kwargs) |
