mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-22 13:26:12 +03:00
Fix broken overloading of libc close in static OpenWrt build
This commit is contained in:
parent
546fb10186
commit
70f57b7da0
@ -82,6 +82,7 @@ bool IsFDOwned(int fd) {
|
|||||||
|
|
||||||
} // namespace base
|
} // namespace base
|
||||||
|
|
||||||
|
#ifndef OPENWRT_BUILD_STATIC
|
||||||
#if !defined(COMPONENT_BUILD)
|
#if !defined(COMPONENT_BUILD)
|
||||||
using LibcCloseFuncPtr = int (*)(int);
|
using LibcCloseFuncPtr = int (*)(int);
|
||||||
|
|
||||||
@ -113,3 +114,4 @@ __attribute__((visibility("default"), noinline)) int close(int fd) {
|
|||||||
|
|
||||||
} // extern "C"
|
} // extern "C"
|
||||||
#endif // !defined(COMPONENT_BUILD)
|
#endif // !defined(COMPONENT_BUILD)
|
||||||
|
#endif // OPENWRT_BUILD_STATIC
|
||||||
|
@ -34,6 +34,7 @@ config("compiler") {
|
|||||||
if (build_static) {
|
if (build_static) {
|
||||||
# Musl static objects are not built with -fPIC, cannot use -static-pie.
|
# Musl static objects are not built with -fPIC, cannot use -static-pie.
|
||||||
ldflags += [ "-static" ]
|
ldflags += [ "-static" ]
|
||||||
|
defines += [ "OPENWRT_BUILD_STATIC" ]
|
||||||
} else if (current_cpu == "x86") {
|
} else if (current_cpu == "x86") {
|
||||||
ldflags += [ "-Wl,--dynamic-linker=/lib/ld-musl-i386.so.1" ]
|
ldflags += [ "-Wl,--dynamic-linker=/lib/ld-musl-i386.so.1" ]
|
||||||
} else if (current_cpu == "mipsel") {
|
} else if (current_cpu == "mipsel") {
|
||||||
|
Loading…
Reference in New Issue
Block a user