aboutsummaryrefslogtreecommitdiff
path: root/common_targets.py
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fl.fischer@fau.de>2018-08-31 23:45:40 +0200
committerFlorian Fischer <florian.fl.fischer@fau.de>2018-08-31 23:45:40 +0200
commit0ea389f7b4048821a72020fb6a15ef9cb41c2b14 (patch)
tree2bf8b252c65f9635e1f22f93a82e64d3ba588844 /common_targets.py
parent00ec0f6340257cd82e596725aa077d6bfd15eef4 (diff)
downloadallocbench-0ea389f7b4048821a72020fb6a15ef9cb41c2b14.tar.gz
allocbench-0ea389f7b4048821a72020fb6a15ef9cb41c2b14.zip
change benchmark.py for mysql and remove run from mysql.py
also simplify chattymalloc because memusage fails for mysqld and fix glibc-no-tc
Diffstat (limited to 'common_targets.py')
-rw-r--r--common_targets.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/common_targets.py b/common_targets.py
index 6d7d539..277c3bf 100644
--- a/common_targets.py
+++ b/common_targets.py
@@ -1,7 +1,6 @@
import subprocess
-glibc_path = "/home/cip/2014/aj46ezos/BA/glibc/glibc-install/lib"
-glibc_path_notc = "/home/cip/2014/aj46ezos/BA/glibc/glibc-install-notc/lib"
+glibc_path_notc = "../glibc/glibc-install-notc/lib"
library_path = ""
p = subprocess.run(["ldconfig", "-v"], stdout=subprocess.PIPE,
@@ -38,9 +37,9 @@ common_targets = {
"color" : "C4"
},
"glibc-notc" : {
- "cmd_prefix" : glibc_path+"/ld-2.28.9000.so "
+ "cmd_prefix" : glibc_path_notc+"/ld-linux-x86-64.so.2 "
+ "--library-path "
- + glibc_path + ":"
+ + glibc_path_notc + ":"
+ library_path,
"binary_suffix" : "-glibc-notc",
"LD_PRELOAD" : "/usr/lib/libstdc++.so /usr/lib/libgcc_s.so.1",