LibWeb: Set CPU_STRING for i386

This commit is contained in:
Sergey Bugaev 2023-09-03 20:45:18 +03:00 committed by Andrew Kaster
parent 88a3b4da9e
commit b21382bd4e
Notes: sideshowbarker 2024-07-17 07:31:31 +09:00

View File

@ -22,6 +22,8 @@ namespace Web {
# define CPU_STRING "x86_64"
#elif ARCH(AARCH64)
# define CPU_STRING "AArch64"
#elif ARCH(I386)
# define CPU_STRING "x86"
#endif
#if defined(AK_OS_SERENITY)