Skip to content
Snippets Groups Projects
Commit 531e5e53 authored by Jo-Philipp Wich's avatar Jo-Philipp Wich
Browse files

mklibs: import missing symbol workaround from Freetz project (#7590)

SVN-Revision: 24984
parent 0b98f1f6
Branches
Tags
No related merge requests found
......@@ -8,15 +8,18 @@
symbols.update(library_symbols_used[library])
@@ -575,6 +576,7 @@ while 1:
@@ -575,6 +576,10 @@ while 1:
symbols.add(ProvidedSymbol('__uClibc_init', None, None, True))
symbols.add(ProvidedSymbol('__uClibc_fini', None, None, True))
extra_flags.append("-Wl,-init,__uClibc_init")
+ libgcc_link = "-lgcc_s_pic"
+
+ if soname in ("libm.so.0"):
+ libgcc_link = "-lgcc_s_pic"
map_file = find_pic_map(library)
if map_file:
@@ -590,7 +592,7 @@ while 1:
@@ -590,7 +595,7 @@ while 1:
cmd.append(pic_file)
cmd.extend(extra_post_obj)
cmd.extend(extra_flags)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment