0009-resolve-__memcmpeq-aliased-to-undefined-symbol-memcm.patch 630 B

12345678910111213141516171819202122232425
  1. From 5d6ab9fef7281483da3e9c306b56413c40165ef1 Mon Sep 17 00:00:00 2001
  2. From: "max.ma" <max.ma@starfivetech.com>
  3. Date: Tue, 6 Sep 2022 20:01:36 -0700
  4. Subject: [PATCH 09/19] resolve '__memcmpeq' aliased to undefined symbol
  5. 'memcmp' issue
  6. cx
  7. ---
  8. string/memcmp.c | 2 +-
  9. 1 file changed, 1 insertion(+), 1 deletion(-)
  10. diff --git a/string/memcmp.c b/string/memcmp.c
  11. index 40029474e6..b275e5fbff 100644
  12. --- a/string/memcmp.c
  13. +++ b/string/memcmp.c
  14. @@ -361,5 +361,5 @@ weak_alias (memcmp, bcmp)
  15. #endif
  16. #undef __memcmpeq
  17. -strong_alias (memcmp, __memcmpeq)
  18. +strong_alias (MEMCMP, __memcmpeq)
  19. libc_hidden_def(__memcmpeq)
  20. --
  21. 2.25.1