diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2021-04-07 19:42:19 +0200 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2021-04-07 19:42:19 +0200 |
| commit | 5ff84f712ad55afd9b6c5dfe4c5dfc24ac1f9be1 (patch) | |
| tree | 70d3001ff4a0a6dd880af89eaa74c9e606ed897c | |
| parent | b9a0c317b0a7622530513c641fe4facd6783cf9d (diff) | |
| download | allocbench-5ff84f712ad55afd9b6c5dfe4c5dfc24ac1f9be1.tar.gz allocbench-5ff84f712ad55afd9b6c5dfe4c5dfc24ac1f9be1.zip | |
[glibc] bump version to 2.31
| -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( |
