Merge "linker: add the L3 cache auxv constants." into main

This commit is contained in:
Elliott Hughes 2023-10-25 20:44:03 +00:00 committed by Gerrit Code Review
commit 2520ce694b

View file

@ -86,6 +86,12 @@ static const char* auxv_name(int at) {
#endif
#if defined(AT_L2_CACHEGEOMETRY)
case AT_L2_CACHEGEOMETRY: return "AT_L2_CACHEGEOMETRY";
#endif
#if defined(AT_L3_CACHESIZE)
case AT_L3_CACHESIZE: return "AT_L3_CACHESIZE";
#endif
#if defined(AT_L3_CACHEGEOMETRY)
case AT_L3_CACHEGEOMETRY: return "AT_L3_CACHEGEOMETRY";
#endif
}
static char name[32];