freebsd-src/lib/libgcc_s/Versions.def
Brooks Davis 44e89340fe libgcc_s: expose __divmoddi4 on i386
GCC has used this for some time (since 7.0) and apparently we were
getting away with using the hidden symbol, but when linking with
--no-undefined-version we get an error unless it's properly exported.
(For anyone who wonders at the assymetry, __udivmoddi4 is indeed much
older and was introduced with GCC 3.0.)

MFC after:	3 days
Reviewed by:	dim
Differential Revision:	https://reviews.freebsd.org/D44878
2024-04-19 22:56:13 +01:00

37 lines
286 B
Modula-2

GCC_3.0 {
};
GCC_3.3 {
} GCC_3.0;
GCC_3.3.1 {
} GCC_3.3;
GCC_3.4 {
} GCC_3.3.1;
GCC_3.4.2 {
} GCC_3.4;
GCC_3.4.4 {
} GCC_3.4.2;
GCC_3.5 {
} GCC_3.4.4;
GCC_4.0.0 {
} GCC_3.5;
GCC_4.2.0 {
} GCC_4.0.0;
GCC_4.3.0 {
} GCC_4.2.0;
GCC_4.6.0 {
} GCC_4.3.0;
GCC_7.0.0 {
} GCC_4.6.0;