2024-11-15 19:14:59 +01:00
|
|
|
#!/bin/sh
|
2018-08-21 21:23:22 +02:00
|
|
|
|
2024-11-15 19:14:59 +01:00
|
|
|
# preload.sh - Test dynamically linked executables
|
|
|
|
|
|
|
|
[ -n "${LD_PRELOAD}" ] && LD_PRELOAD="${LD_PRELOAD} " # If LD_PRELOAD is already set, add a space.
|
|
|
|
export LD_PRELOAD="${LD_PRELOAD}${PWD}/out/libhardened_malloc.so" # Add the library to LD_PRELOAD.
|
|
|
|
exec "$@" # Run the command.
|