Files
KirkOS/user/include/mlibc/tests/rtld/ifunc-dlopen/meson.build
T
kaguya 9a9b91c940 user: implement mlibc as the libc, finally.
It's finally done..

Signed-off-by: kaguya <vpshinomiya@protonmail.com>
2026-05-02 03:31:49 -04:00

6 lines
266 B
Meson

libifunc_test = shared_library('ifunc-test-dlopen', 'lib.c', dependencies: libc_dep, install: true)
test_depends = [libifunc_test]
libifunc_test_native = shared_library('native-ifunc-test-dlopen', 'lib.c', native: true)
test_native_depends = [libifunc_test_native]