diff options
| -rw-r--r-- | allocbench/allocators/glibc.py | 6 |
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( |
