Fix broken overloading of libc close in static build

This commit is contained in:
klzgrad 2023-06-04 09:15:13 +08:00
parent 3d2793e968
commit 2dcaa72d8d
2 changed files with 5 additions and 0 deletions

View File

@ -81,6 +81,8 @@ bool IsFDOwned(int fd) {
} // namespace base
#ifndef OPENWRT_BUILD_STATIC
using LibcCloseFuncPtr = int (*)(int);
// Load the libc close symbol to forward to from the close wrapper.
@ -110,3 +112,5 @@ __attribute__((visibility("default"), noinline)) int close(int fd) {
}
} // extern "C"
#endif // OPENWRT_BUILD_STATIC

View File

@ -32,6 +32,7 @@ config("compiler") {
if (build_static) {
# Musl static objects are not built with -fPIC, cannot use -static-pie.
ldflags += [ "-static" ]
defines += [ "OPENWRT_BUILD_STATIC" ]
} else if (current_cpu == "x86") {
ldflags += [ "-Wl,--dynamic-linker=/lib/ld-musl-i386.so.1" ]
} else if (current_cpu == "mipsel") {