mirror of
https://github.com/hak5/wifipineapple-openwrt.git
synced 2025-10-29 16:57:19 +00:00
mklibs: preserve the uclibc init symbol
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18085 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
e496f76ecb
commit
df959c2ac1
14
tools/mklibs/patches/007-uclibc_init.patch
Normal file
14
tools/mklibs/patches/007-uclibc_init.patch
Normal file
@ -0,0 +1,14 @@
|
||||
--- a/src/mklibs.py
|
||||
+++ b/src/mklibs.py
|
||||
@@ -571,6 +571,11 @@ while 1:
|
||||
extra_post_obj.append(sysroot + libc_extras_dir + "/sofini.o")
|
||||
symbols.add(ProvidedSymbol('__dso_handle', None, None, True))
|
||||
|
||||
+ if soname in ("libc.so.0"):
|
||||
+ symbols.add(ProvidedSymbol('__uClibc_init', None, None, True))
|
||||
+ symbols.add(ProvidedSymbol('__uClibc_fini', None, None, True))
|
||||
+ extra_flags.append("-Wl,-init,__uClibc_init")
|
||||
+
|
||||
map_file = find_pic_map(library)
|
||||
if map_file:
|
||||
extra_flags.append("-Wl,--version-script=" + map_file)
|
||||
Loading…
x
Reference in New Issue
Block a user