mirror of
https://github.com/yugr/Implib.so
synced 2026-06-08 18:33:41 +00:00
42 lines
936 B
Bash
Executable File
42 lines
936 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Copyright 2024 Yury Gribov
|
|
#
|
|
# The MIT License (MIT)
|
|
#
|
|
# Use of this source code is governed by MIT license that can be
|
|
# found in the LICENSE.txt file.
|
|
|
|
# This is a simple test for Implib.so functionality.
|
|
# Run it like
|
|
# ./run.sh ARCH
|
|
# where ARCH stands for any supported arch (arm, x86_64, etc., see `implib-gen -h' for full list).
|
|
# Note that you may need to install qemu-user for respective platform
|
|
# (i386 also needs gcc-multilib).
|
|
|
|
set -eu
|
|
|
|
cd $(dirname $0)
|
|
|
|
if test -n "${1:-}"; then
|
|
ARCH="$1"
|
|
fi
|
|
|
|
. ../common.sh
|
|
|
|
CFLAGS="-g -O2 $CFLAGS"
|
|
|
|
# Build shlib to test against
|
|
$CC $CFLAGS -shared -fPIC interposed.c -o libinterposed.so
|
|
|
|
# Prepare implib
|
|
${PYTHON:-} ../../implib-gen.py -q --target $TARGET libinterposed.so
|
|
|
|
# Build app
|
|
$CC $CFLAGS main.c libinterposed.so.tramp.S libinterposed.so.init.c $LIBS
|
|
|
|
LD_LIBRARY_PATH=.:${LD_LIBRARY_PATH:-} $INTERP ./a.out > a.out.log
|
|
diff test.ref a.out.log
|
|
|
|
echo SUCCESS
|