Skip to content

Commit

Permalink
Makefile: add assembly arm cpu flags
Browse files Browse the repository at this point in the history
  • Loading branch information
Apaczer committed Jan 17, 2025
1 parent 866c8be commit 954625e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ PKG_CONFIG ?= $(CHAINPREFIX)/usr/bin/pkg-config
PKGS = sdl SDL_image zlib
PKGS_CFLAGS = $(shell $(PKG_CONFIG) --cflags $(PKGS))
PKGS_LIBS = $(shell $(PKG_CONFIG) --libs $(PKGS))
CFLAGS = -O2 -pipe -fno-builtin -fno-common \
CFLAGS = -O2 -mcpu=arm926ej-s -mtune=arm926ej-s -pipe -fno-builtin -fno-common \
-fomit-frame-pointer -fexpensive-optimizations -Wno-write-strings -DLSB_FIRST
CFLAGS += -D__cdecl="" -D__fastcall=""
CFLAGS += $(PKGS_CFLAGS)
Expand Down

0 comments on commit 954625e

Please sign in to comment.