Re: [hackers] [st] Proposed makefile tweak for debugging

2018-04-23 Thread Michael Buch
Fair, could run that instead :) Thanks, Michael On Tue, 24 Apr 2018 at 03:07, Quentin Rameau wrote: > > Hey, > > Hi, > > > Any thoughts on adding following to the config.mk?: > > > > #·flags > > STCFLAGS = $(INCS) $(CPPFLAGS) $(CFLAGS) > > ifneq "$(ST_DEBUG)" "" > >STCFLAGS += -g -O0 > >

Re: [hackers] [st] Proposed makefile tweak for debugging

2018-04-23 Thread Quentin Rameau
> Hey, Hi, > Any thoughts on adding following to the config.mk?: > > #·flags > STCFLAGS = $(INCS) $(CPPFLAGS) $(CFLAGS) > ifneq "$(ST_DEBUG)" "" >STCFLAGS += -g -O0 > endif No [0]. > I found myself often adding flags to the makefile locally in order for me > to debug some of the patches i

[hackers] [st] Proposed makefile tweak for debugging

2018-04-23 Thread Michael Buch
Hey, I found myself often adding flags to the makefile locally in order for me to debug some of the patches im working on. Any thoughts on adding following to the config.mk?: #·flags STCFLAGS = $(INCS) $(CPPFLAGS) $(CFLAGS) ifneq "$(ST_DEBUG)" "" STCFLAGS += -g -O0 endif Cheers, Michael