10 lines
145 B
Bash
10 lines
145 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
prefix=/usr/local
|
||
|
exec_prefix=/usr/local
|
||
|
libdir=${exec_prefix}/lib
|
||
|
|
||
|
LD_PRELOAD=${libdir}/libjemalloc.so.2
|
||
|
export LD_PRELOAD
|
||
|
exec "$@"
|