aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fl.fischer@fau.de>2021-04-07 19:42:19 +0200
committerFlorian Fischer <florian.fl.fischer@fau.de>2021-04-07 19:42:19 +0200
commit5ff84f712ad55afd9b6c5dfe4c5dfc24ac1f9be1 (patch)
tree70d3001ff4a0a6dd880af89eaa74c9e606ed897c
parentb9a0c317b0a7622530513c641fe4facd6783cf9d (diff)
downloadallocbench-5ff84f712ad55afd9b6c5dfe4c5dfc24ac1f9be1.tar.gz
allocbench-5ff84f712ad55afd9b6c5dfe4c5dfc24ac1f9be1.zip
[glibc] bump version to 2.31
-rw-r--r--allocbench/allocators/glibc.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/allocbench/allocators/glibc.py b/allocbench/allocators/glibc.py
index 44ac4af..b903724 100644
--- a/allocbench/allocators/glibc.py
+++ b/allocbench/allocators/glibc.py
@@ -21,6 +21,8 @@ from multiprocessing import cpu_count
from allocbench.allocator import Allocator, LIBRARY_PATH
from allocbench.artifact import GitArtifact
+VERSION = 'glibc-2.31'
+
class Glibc(Allocator):
"""Glibc definition for allocbench
@@ -48,11 +50,11 @@ class Glibc(Allocator):
# pylint: disable=invalid-name
-glibc = Glibc("glibc", version="glibc-2.29", color="xkcd:red")
+glibc = Glibc("glibc", version=VERSION, color="xkcd:red")
glibc_notc = Glibc("glibc-noThreadCache",
configure_args="--disable-experimental-malloc",
- version="glibc-2.29",
+ version=VERSION,
color="xkcd:maroon")
glibc_nofs = Glibc(