aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorVictor Mignot <victor@vmignot.fr>2025-07-29 08:39:33 +0200
committerVictor Mignot <victor@vmignot.fr>2025-08-08 09:01:29 +0200
commitc4314b35efe14fd0c1c57c8c3577431b380e323e (patch)
treea903b06c5043214ba2ac4ead7143cfc2f31f0cb1 /Makefile
parent6d10f951d5c5ebae58f7c24df1066a479b68d5fa (diff)
downloadnanji-c4314b35efe14fd0c1c57c8c3577431b380e323e.tar.gz
use c99 instead of c23
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 8576e6f..053c357 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
ARCH = arm-none-eabi
CC = $(ARCH)-gcc
-CFLAGS = -mcpu=cortex-m4 -mthumb -mfloat-abi=hard -std=c23 -g -O0 -ffreestanding -Wpedantic -Wall -Wextra -Werror
+CFLAGS = -mcpu=cortex-m4 -mthumb -mfloat-abi=hard -std=c99 -g -O0 -ffreestanding -Wpedantic -Wall -Wextra -Werror
LDFLAGS = -Tlink.ld -nostdlib
SRCDIR = src