opnsense-src/lib/libc/arm/Symbol.map
Brooks Davis f695db9fba libc: centralize a few numeric symbols
fabs, __infinity, and __nan are universally implemented so declare them
in gen/Symbol.map.

We would also include __flt_rounds, but  it's under FBSD_1.3 on arm so
until that's gone we're stuck with it.  Likewise, everyone but i386
implements fp[gs]etmask.

Reviewed by:	imp, kib, emaste
Differential Revision:	https://reviews.freebsd.org/D42618

(cherry picked from commit c7045186819dbc64c3f005cb1138a1948868cf5a)
2023-12-13 22:08:14 +00:00

42 lines
584 B
Text

/*
* This only needs to contain symbols that are not listed in
* symbol maps from other parts of libc (i.e., not found in
* stdlib/Symbol.map, string/Symbol.map, sys/Symbol.map, ...).
*/
FBSD_1.0 {
__mcount;
alloca;
brk;
sbrk;
};
FBSD_1.3 {
__flt_rounds;
};
FBSD_1.4 {
__gnu_Unwind_Find_exidx;
dl_unwind_find_exidx;
};
FBSD_1.6 {
arm_drain_writebuf;
arm_sync_icache;
};
FBSDprivate_1.0 {
/* PSEUDO syscalls */
_getlogin;
__aeabi_read_tp;
___longjmp;
__longjmp;
signalcontext;
_signalcontext;
__siglongjmp;
_vfork;
_brk;
_sbrk;
_libc_arm_fpu_present;
};