mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-26 04:35:39 +03:00
32 lines
1 KiB
Diff
32 lines
1 KiB
Diff
diff --git a/include/iprt/linux/symvers.h b/include/iprt/linux/symvers.h
|
|
index 7d552b1..e5edbeb 100644
|
|
--- a/include/iprt/linux/symvers.h
|
|
+++ b/include/iprt/linux/symvers.h
|
|
@@ -37,12 +37,14 @@
|
|
/* Use versions of glibc symbols which are available in 32-bit EL3 or
|
|
* 64-bit EL4. Currently only those symbols needed by the Additions,
|
|
* though this could probably be extended to work for host builds too. */
|
|
+#if defined(__GLIBC__)
|
|
#if defined(RT_ARCH_AMD64)
|
|
__asm__(".symver memcpy,memcpy@GLIBC_2.2.5");
|
|
__asm__(".symver posix_spawn,posix_spawn@GLIBC_2.2.5");
|
|
#else /* RT_ARCH_X86 */
|
|
__asm__(".symver posix_spawn,posix_spawn@GLIBC_2.2");
|
|
#endif
|
|
+#endif
|
|
|
|
/* Do not use *_chk functions */
|
|
#undef _FORTIFY_SOURCE
|
|
@@ -65,10 +67,12 @@ __asm__(".symver posix_spawn,posix_spawn@GLIBC_2.2");
|
|
#ifdef fnctl
|
|
# undef fcntl
|
|
#endif
|
|
+#if defined(__GLIBC__)
|
|
#if defined(RT_ARCH_AMD64)
|
|
__asm__(".symver fcntl64,fcntl@GLIBC_2.2.5");
|
|
#else
|
|
__asm__(".symver fcntl64,fcntl@GLIBC_2.0");
|
|
#endif
|
|
+#endif
|
|
|
|
#endif /* ___iprt_linux_symvers_h */
|