mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-25 17:10:23 +00:00
LibWeb: Add user agent CPU string for PowerPC
This commit is contained in:
parent
ffe2f16c58
commit
14d26397f0
Notes:
sideshowbarker
2024-07-17 03:45:48 +09:00
Author: https://github.com/sideeffect42 Commit: https://github.com/LadybirdBrowser/ladybird/commit/14d26397f0 Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/391 Reviewed-by: https://github.com/ADKaster ✅
1 changed files with 4 additions and 0 deletions
|
@ -20,6 +20,10 @@ namespace Web {
|
|||
# define CPU_STRING "x86"
|
||||
#elif ARCH(RISCV64)
|
||||
# define CPU_STRING "RISC-V 64"
|
||||
#elif ARCH(PPC64) || ARCH(PPC64LE)
|
||||
# define CPU_STRING "PowerPC 64"
|
||||
#elif ARCH(PPC)
|
||||
# define CPU_STRING "PowerPC"
|
||||
#else
|
||||
# error Unknown architecture
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue