compile with NOASM=1 by default

The asm code for the software renderer is very old and unstable which leads to alot of random segfaults when using it, so disable it by default
modern GCC is very good at optimizing non asm code anyways, so theres no realy benefit in keeping those anyways
This commit is contained in:
Alug 2024-03-30 00:54:00 +01:00
parent 62294dfe35
commit 90511cdee9

View file

@ -148,6 +148,9 @@ D_FILES=$(D_DIR)/srb2.srb \
PKG_CONFIG?=pkg-config
NOASM=1
# The software renderer is very prone due to old asm code, so disable it by default
ifdef WIILINUX
LINUX=1
endif