SerenityOS build: Sunday, April 09
Images 💾⌗
- serenity-x86_64-20230409-e891f13.img.gz (Raw image, 178.13 MiB)
Last commit ⭐⌗
commit e891f13c844906d5fb3fd6269263f286b0a41dcb
Author: Brian Gianforcaro <bgianf@serenityos.org>
AuthorDate: Sat Apr 8 15:25:45 2023 -0700
Commit: Brian Gianforcaro <bgianf@serenityos.org>
CommitDate: Sat Apr 8 19:16:35 2023 -0700
Kernel: Fix compilation of aarch64/RPi/Framebuffer.cpp
The definitions were being defined already by `BootInfo.h` and that was
being included here via transitive includes. The extern definitions of
the variables do not have the `READONLY_AFTER_INIT` attribute in
`BootInfo.h`. This causes conflicting definitions of the same variable.
The `READONLY_AFTER_INIT` specifier is not needed for extern variables
as it only effects their linkage, not their actual use, so just use the
versions in `BootInfo.h` instead of re-declaring.
Other builds