Home | History | Annotate | Download | only in tools

Lines Matching refs:to

5  * references to libgcc.a functions to force the dynamic linker
6 * to copy their definition into the final libc.so binary.
8 * They are required to ensure backwards binary compatibility with
15 * functions used to implement certain operations that are not necessarily
18 * compiler-generated machine code as a call to an __idiv helper function.
20 * Normally, one has to place libgcc.a in the link command used to generate
36 * into libfoo.so. Instead, a symbol import definition will be added to it
40 * flags, the set of helper functions copied to libc.so may change, which
42 * from vendors to fail to load properly.
44 * The NDK has been fixed after 1.6_r1 to use the correct link command, so
50 * After 3.2, the toolchain was updated again, adding __aeabi_f2uiz to the
51 * list of requirements. Technically, this is due to mis-linked NDK libraries
52 * but it is easier to add a single function here than asking several app
53 * developers to fix their build.
55 * The __aeabi_idiv function is added to the list since cortex-a15 supports
56 * HW idiv instructions so the system libc.so doesn't pull in the reference to
60 * Final note: some of the functions below should really be in libm.so to
62 * since libm.so depends on libc.so, it's easier to put all of
103 prog=re.compile("(?<=undefined reference to ')\w+")