Skip to content

Commit

Permalink
Add missing NOHWOPT to scripts/makefile.msys
Browse files Browse the repository at this point in the history
Signed-off-by: John Bowler <jbowler@acm.org>
  • Loading branch information
jbowler committed Sep 3, 2024
1 parent 7174637 commit cbf24df
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion scripts/makefile.msys
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,11 @@ CP = cp
RM_F = rm -rf
LN_SF = ln -sf

CPPFLAGS = # -DPNG_DEBUG=5
NOHWOPT = -DPNG_ARM_NEON_OPT=0 -DPNG_MIPS_MSA_OPT=0 \
-DPNG_POWERPC_VSX_OPT=0 -DPNG_INTEL_SSE_OPT=0\
-DPNG_MIPS_MMI_OPT=0 -DPNG_LOONGARCH_LSX_OPT=0

CPPFLAGS = $(NOHWOPT) # -DPNG_DEBUG=5
CFLAGS = -O2 -Wall -Wextra -Wundef # -g
ARFLAGS = rc
LDFLAGS = # -g
Expand Down

0 comments on commit cbf24df

Please sign in to comment.