From: falcovorbis <fal...@us...> - 2024-10-05 13:56:26
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "A pseudo Operating System for the Dreamcast.". The branch, master has been updated via 0482d86c883088f482cfa86855efe0c390a93a3b (commit) from 495e77fd60d5b09a1ad52a26cd4a7e73cd0d9d51 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 0482d86c883088f482cfa86855efe0c390a93a3b Author: Andy Barajas <and...@gm...> Date: Sat Oct 5 06:55:38 2024 -0700 Remove compiling pvrtex with LTO because it is not needed and can cause issues on certain hosts. (#789) ----------------------------------------------------------------------- Summary of changes: utils/pvrtex/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/pvrtex/Makefile b/utils/pvrtex/Makefile index a581f382..f68f5576 100644 --- a/utils/pvrtex/Makefile +++ b/utils/pvrtex/Makefile @@ -8,12 +8,12 @@ OBJS = elbg.o mem.o log.o bprint.o avstring.o lfg.o crc.o md5.o stb_image_impl.o file_pvr.o file_tex.o file_dctex.o pvr_texture_encoder.o main.o CPPFLAGS = -Ilibavutil -I. -DCONFIG_MEMORY_POISONING=0 -DHAVE_FAST_UNALIGNED=0 -CXXFLAGS = -flto=auto -Wall -Wextra -Wno-unused-parameter -Wno-sign-compare +CXXFLAGS = -Wall -Wextra -Wno-unused-parameter -Wno-sign-compare ifdef $(DEBUGBUILD) CXXFLAGS += -Og -pg -g else - CXXFLAGS += -O3 -flto + CXXFLAGS += -O3 endif CFLAGS := $(CXXFLAGS) -Wno-pointer-sign hooks/post-receive -- A pseudo Operating System for the Dreamcast. |