Skip to content

Commit

Permalink
build(makefile): fix build on aarch64 (Termux)
Browse files Browse the repository at this point in the history
  • Loading branch information
dbohdan committed Sep 29, 2023
1 parent 35262f5 commit d7e5a59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GNUmakefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
WIN32_CC ?= i686-w64-mingw32-gcc
CFLAGS ?= -g -O3 -static -lm -Wall -Wextra
CFLAGS ?= -g -O3 -static -ffunction-sections -fdata-sections -Wl,--gc-sections -lm -Wall -Wextra
PREFIX ?= /usr/local

all: hicolor
Expand Down

0 comments on commit d7e5a59

Please sign in to comment.