diff options
Diffstat (limited to 'src/targets.py')
| -rw-r--r-- | src/targets.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/targets.py b/src/targets.py new file mode 100644 index 0000000..50fcab0 --- /dev/null +++ b/src/targets.py @@ -0,0 +1,19 @@ +targets = {"glibc" : { + "cmd_prefix" : "", + "binary_suffix" : "", + "LD_PRELOAD" : "", + "color" : "C1" + }, + "tcmalloc" : { + "cmd_prefix" : "", + "binary_suffix" : "", + "LD_PRELOAD" : "targets/libtcmalloc.so", + "color" : "C2" + }, + "jemalloc" : { + "cmd_prefix" : "", + "binary_suffix" : "", + "LD_PRELOAD" : "targets/libjemalloc.so", + "color" : "C3" + }, + } |
