diff options
Diffstat (limited to 'src/allocators/glibc.py')
| -rw-r--r-- | src/allocators/glibc.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/allocators/glibc.py b/src/allocators/glibc.py index 8ccd8a0..4f596ae 100644 --- a/src/allocators/glibc.py +++ b/src/allocators/glibc.py @@ -25,8 +25,10 @@ class Glibc (Allocator): "cd glibc-build; make", "cd glibc-build; make install"] - kwargs["cmd_prefix"] = ("{dir}/lib/ld-linux-x86-64.so.2 --library-path {dir}/lib:" - + library_path) + # kwargs["cmd_prefix"] = ("{dir}/lib/ld-linux-x86-64.so.2 --library-path {dir}/lib:" + # + library_path) + + kwargs["LD_LIBRARY_PATH"] = "{dir}/lib:" + library_path super().__init__(name, **kwargs) |
