You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The tangle of #ifdefs in CpuArch.h decides that getauxval is available on ARM32 in old Android NDKs, but it just isn't. This breaks my upgrade of libchdr in PPSSPP: hrydgard/ppsspp#20462
Can we have a DONT_HAVE_AUXVAL define or something, so I don't have to fork?
Or, just do something like
# if __ANDROID_API__ < 18
// don't use getauxval
#endif