From c32e1595ed5f1e79282fd416ef0968fa4898f8c9 Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Sun, 19 Jan 2025 09:23:08 -0500 Subject: [PATCH] Update Makefile change to g++ for main --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 28001f3b..4cc59e57 100644 --- a/Makefile +++ b/Makefile @@ -182,7 +182,7 @@ main.o: afsk/status.h main.o: afsk/ax5043.h main.o: afsk/ax25.h main.o: ax5043/spi/ax5043spi.h - gcc -std=gnu99 $(DEBUG_BEHAVIOR) -I ../ax5043 -c main.cpp; + g++ -std=c++14 $(DEBUG_BEHAVIOR) -I ../ax5043 -c main.cpp; telem.o: telem.c gcc -std=gnu99 $(DEBUG_BEHAVIOR) -I ../ax5043 -c telem.c;