Files
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
241 B
Meson

libifunc_test = shared_library('ifunc-test', 'lib.c', dependencies: libc_dep)
test_link_with = [libifunc_test]
libifunc_test_native = shared_library('native-ifunc-test', 'lib.c', native: true)
test_native_link_with = [libifunc_test_native]