aboutsummaryrefslogtreecommitdiff
path: root/allocators/glibcs.py
diff options
context:
space:
mode:
Diffstat (limited to 'allocators/glibcs.py')
-rw-r--r--allocators/glibcs.py37
1 files changed, 0 insertions, 37 deletions
diff --git a/allocators/glibcs.py b/allocators/glibcs.py
deleted file mode 100644
index 891bf15..0000000
--- a/allocators/glibcs.py
+++ /dev/null
@@ -1,37 +0,0 @@
-import os
-import subprocess
-
-from src.allocator import *
-from src.allocator import Allocator as Alloc
-from src.allocator import Allocator_Sources as Alloc_Src
-
-optimisation_flag = "-O2"
-
-glibc_src = Alloc_Src("glibc",
- retrieve_cmds=["git clone git://sourceware.org/git/glibc.git"],
- prepare_cmds=["git checkout release/2.29/master"],
- reset_cmds=["git stash"])
-
-glibc = Alloc("glibc", sources=glibc_src,
- build_cmds=["mkdir -p glibc-build",
- "cd glibc-build; {srcdir}/configure --prefix={dir}",
- "cd glibc-build; make",
- "cd glibc-build; make install"],
- cmd_prefix="{dir}/lib/ld-linux-x86-64.so.2 --library-path {dir}/lib:"+library_path)
-
-glibc_notc = Alloc("glibc_notc", sources=glibc_src,
- build_cmds=["mkdir -p glibc-build",
- "cd glibc-build; {srcdir}/configure --prefix={dir} --disable-experimental-malloc",
- "cd glibc-build; make",
- "cd glibc-build; make install"],
- cmd_prefix="{dir}/lib/ld-linux-x86-64.so.2 --library-path {dir}/lib:"+library_path)
-
-glibc_nofs = patch_alloc("glibc_nofs", glibc,
- ["allocators/glibc_2.28_no_passive_falsesharing.patch"])
-
-glibc_nofs_fancy = patch_alloc("glibc_nofs_fancy", glibc,
- ["allocators/glibc_2.28_no_passive_falsesharing_fancy.patch"])
-
-allocators_to_build = [glibc, glibc_notc, glibc_nofs, glibc_nofs_fancy]
-
-allocators = {a.name: a.build() for a in allocators_to_build}