Skip to content

Commit 13226ed

Browse files
committed
Add compat symbol name for x86 architecture
1 parent 3b19536 commit 13226ed

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

utils/compat/glibc_version.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
__asm__(".symver log,log@GLIBC_2.0");
2828
__asm__(".symver pow,pow@GLIBC_2.0");
2929
__asm__(".symver exp,exp@GLIBC_2.0");
30+
__asm__(".symver fcntl64,fcntl@GLIBC_2.0");
3031
__asm__(".symver fcntl,fcntl@GLIBC_2.0");
3132
#else
3233
.symver memcmp,memcmp@GLIBC_2.0
@@ -35,6 +36,7 @@
3536
.symver log,log@GLIBC_2.0
3637
.symver pow,pow@GLIBC_2.0
3738
.symver exp,exp@GLIBC_2.0
39+
.symver fcntl64,fcntl@GLIBC_2.0
3840
.symver fcntl,fcntl@GLIBC_2.0
3941
#endif
4042

utils/compat/glibc_version_x86.redef

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,5 @@ powf powf@GLIBC_2.0
1010
log log@GLIBC_2.0
1111
pow pow@GLIBC_2.0
1212
exp exp@GLIBC_2.0
13+
fcntl64 fcntl@GLIBC_2.0
1314
fcntl fcntl@GLIBC_2.0

0 commit comments

Comments
 (0)