1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-08 15:29:37 +00:00

Use C89 for reference builds (Fixes: #2277)

This commit is contained in:
Jakob Haufe 2023-12-05 18:19:16 +01:00
parent 5537b61e6a
commit 48b04e44e7
No known key found for this signature in database
GPG Key ID: 4CF2B218F54DAE3D

View File

@ -40,7 +40,7 @@ OPTIONS = g O Os Osi Osir Osr Oi Oir Or
ISEQUAL = ..$S..$Stestwrk$Sisequal$(EXE)
CC = gcc
CFLAGS = -O2 -Wall -W -Wextra -funsigned-char -fwrapv -fno-strict-overflow
CFLAGS = -std=c89 -O2 -Wall -W -Wextra -funsigned-char -fwrapv -fno-strict-overflow
.PHONY: all clean