From 96704a002acbb3ec542a542c9e0a4c970cab0300 Mon Sep 17 00:00:00 2001 From: akuker Date: Thu, 9 Jul 2020 17:57:13 -0500 Subject: [PATCH] Fix the CFlags and correct the debugger to launch the correct exe --- src/raspberrypi/Makefile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/raspberrypi/Makefile b/src/raspberrypi/Makefile index 81632219..dfcc34fe 100644 --- a/src/raspberrypi/Makefile +++ b/src/raspberrypi/Makefile @@ -5,9 +5,11 @@ CXX = g++ # Debug CFLAGS #CFLAGS = -DDISK_LOG -O0 -g -Wall -#CFLAGS = -DDISK_LOG -O0 -g -Wall +#CXXFLAGS = -DDISK_LOG -O0 -g -Wall +#CFLAGS = -O0 -g -Wall +#CXXFLAGS = -O0 -g -Wall # Release CFLAGS -CXXFLAGS = -O3 -Wall +CFLAGS = -O3 -Wall CXXFLAGS = -O3 -Wall @@ -113,4 +115,4 @@ $(DOC_DIR)/%_man_page.txt : $(DOC_DIR)/%.1 man -l $< | col -bx >> $@ .PHONY: Debug -Debug: scsimon +Debug: all