Merge pull request #2474 from brooksytech/dev

Set Mesa to compile with O3 and not Ofast
This commit is contained in:
Brooksytech 2023-12-01 06:41:41 -08:00 committed by GitHub
commit b72712fb13
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -100,6 +100,11 @@ else
PKG_MESON_OPTS_TARGET+=" -Dvulkan-drivers="
fi
pre_configure_target() {
TARGET_CFLAGS=$(echo ${CFLAGS} | sed -e "s|-Ofast|-O3|")
TARGET_CXXFLAGS=$(echo ${CXXFLAGS} | sed -e "s|-Ofast|-O3|")
}
post_makeinstall_target() {
case ${DEVICE} in
S922X)