make __getauxval a public ABI symbol

This is needed so that libgcc can access AT_HWCAP without violating
link namespace rules.

Internally musl already used __getauxval symbol for the same reason,
we just remove the hidden marking.
This commit is contained in:
Szabolcs Nagy
2025-06-13 14:36:08 -04:00
committed by Rich Felker
parent fcdff46a32
commit ab4635fba6
+1 -1
View File
@@ -5,6 +5,6 @@
#include <features.h>
hidden unsigned long __getauxval(unsigned long);
unsigned long __getauxval(unsigned long);
#endif