From 2a26c1506192468be6c4cd06465bee861d87db51 Mon Sep 17 00:00:00 2001 From: Johannes Stoelp Date: Mon, 27 Jan 2025 01:20:19 +0100 Subject: elf: simple elf-parser for dynamic symbols --- test/elf_parser/Makefile | 12 ++++++++++++ test/elf_parser/test.cc | 7 +++++++ 2 files changed, 19 insertions(+) create mode 100644 test/elf_parser/Makefile create mode 100644 test/elf_parser/test.cc (limited to 'test/elf_parser') diff --git a/test/elf_parser/Makefile b/test/elf_parser/Makefile new file mode 100644 index 0000000..ea726bd --- /dev/null +++ b/test/elf_parser/Makefile @@ -0,0 +1,12 @@ +all: libtest-32.h libtest-64.h + +libtest-%.h: libtest-%.so + xxd -i $^ > $@ + sed -i 's#^unsigned#// NOLINTNEXTLINE\nunsigned#' $@ + clang-format -i $@ + +libtest-%.so: test.cc + $(CC) -m$* -shared -fPIC -o $@ $^ + +clean: + $(RM) libtest-*.so libtest-*.h diff --git a/test/elf_parser/test.cc b/test/elf_parser/test.cc new file mode 100644 index 0000000..7cc71dd --- /dev/null +++ b/test/elf_parser/test.cc @@ -0,0 +1,7 @@ +extern "C" int exported_func_c(int x) { + return x + 1; +} + +int exported_func_cpp(int x) { + return x + 1; +} -- cgit v1.2.3