From 14f2e115c2a1ee473ec8f28b1e804329f6a4d765 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Fri, 14 Oct 2011 23:31:04 -0400 Subject: add dummy __cxa_finalize musl's dynamic linker does not support unloading dsos, so there's nothing for this function to do. adding the symbol in case anything depends on its presence.. --- src/exit/atexit.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/exit/atexit.c b/src/exit/atexit.c index c613d85b..9d9c2fbe 100644 --- a/src/exit/atexit.c +++ b/src/exit/atexit.c @@ -33,6 +33,10 @@ void __funcs_on_exit() } } +void __cxa_finalize(void *dso) +{ +} + int __cxa_atexit(void (*func)(void *), void *arg, void *dso) { int i; -- cgit v1.2.1