X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Frules.mk;h=6b858474124b85b6cbdbf5a991af093e369e438d;hb=b9e1e52093d33494bf4a8ca27c14a56a25b6e0bc;hp=0bcefe63ac79286cf44212fb363b93b11eef40a2;hpb=388d3841c38fe298c64cf14dafeb7d9800c774e3;p=bertos.git diff --git a/bertos/rules.mk b/bertos/rules.mk index 0bcefe63..6b858474 100644 --- a/bertos/rules.mk +++ b/bertos/rules.mk @@ -161,6 +161,9 @@ ifeq ($$($(1)_DEBUG),1) $(1)_CFLAGS += -D_DEBUG $(1)_CXXFLAGS += -D_DEBUG +else + $(1)_CFLAGS += -fomit-frame-pointer + $(1)_CXXFLAGS += -fomit-frame-pointer endif $(1)_COBJ = $$(foreach file,$$($(1)_CSRC:%.c=%.o),$$(OBJDIR)/$(1)/$$(file)) @@ -172,49 +175,40 @@ $(1)_OBJ := $$($(1)_COBJ) $$($(1)_CXXOBJ) $$($(1)_PCOBJ) $$($(1)_AOBJ) $$($(1 $(1)_SRC := $$($(1)_CSRC) $$($(1)_CXXSRC) $$($(1)_PCSRC) $$($(1)_ASRC) $$($(1)_CPPASRC) OBJ += $$($(1)_OBJ) -# Sometimes $(CC) is actually set to a C++ compiler in disguise, and it -# would whine if we passed it C-only flags. Checking for the presence of -# "++" in the name is a kludge that seems to work mostly. -ifeq (++,$$(findstring ++,$$($(1)_CC))) - $(1)_REAL_CFLAGS = $$(CXXFLAGS) -else - $(1)_REAL_CFLAGS = $$(CFLAGS) -endif - # Compile: instructions to create assembler and/or object files from C source $$($(1)_COBJ) : $$(OBJDIR)/$(1)/%.o : %.c $L "$(1): Compiling $$< (C)" @$$(MKDIR_P) $$(dir $$@) - $Q $$($(1)_CC) -c $$($(1)_REAL_CFLAGS) $$($(1)_CFLAGS) $$($(1)_CPPFLAGS) $$(CPPFLAGS) $$< -o $$@ + $Q $$($(1)_CC) -c $$(CFLAGS) $$($(1)_CFLAGS) $$($(1)_CPPFLAGS) $$(CPPFLAGS) $$($$(*F)_CFLAGS) $$< -o $$@ # Compile: instructions to create assembler and/or object files from C++ source $$($(1)_CXXOBJ) : $$(OBJDIR)/$(1)/%.o : %.cpp $L "$(1): Compiling $$< (C++)" @$$(MKDIR_P) $$(dir $$@) - $Q $$($(1)_CXX) -c $$(CXXFLAGS) $$($(1)_CXXFLAGS) $$($(1)_CPPFLAGS) $$(CPPFLAGS) $$< -o $$@ + $Q $$($(1)_CXX) -c $$(CXXFLAGS) $$($(1)_CXXFLAGS) $$($(1)_CPPFLAGS) $$(CPPFLAGS) $$($$(*F)_CXXFLAGS) $$< -o $$@ # Generate assembly sources from C files (debug) $$(OBJDIR)/$(1)/%.s : %.c $L "$(1): Generating asm source $$<" @$$(MKDIR_P) $$(dir $$@) - $Q $$($(1)_CC) -S $$(CFLAGS) $$($(1)_CFLAGS) $$($(1)_CPPFLAGS) $$< -o $$@ + $Q $$($(1)_CC) -S $$(CFLAGS) $$($(1)_CFLAGS) $$($(1)_CPPFLAGS) $$($$(*F)_CFLAGS) $$< -o $$@ # Generate special progmem variant of a source file $$($(1)_PCOBJ) : $$(OBJDIR)/$(1)/%_P.o : %.c $L "$(1): Compiling $$< (PROGMEM)" @$$(MKDIR_P) $$(dir $$@) - $Q $$($(1)_CC) -c -D_PROGMEM $$(CFLAGS) $$($(1)_CFLAGS) $$($(1)_CPPFLAGS) $$(CPPFLAGS) $$< -o $$@ + $Q $$($(1)_CC) -c -D_PROGMEM $$(CFLAGS) $$($(1)_CFLAGS) $$($(1)_CPPFLAGS) $$(CPPFLAGS) $$($$(*F)_CFLAGS) $$< -o $$@ # Assemble: instructions to create object file from assembler files $$($(1)_AOBJ): $$(OBJDIR)/$(1)/%.o : %.s $L "$(1): Assembling $$<" @$$(MKDIR_P) $$(dir $$@) - $Q $$($(1)_AS) -c $$(ASFLAGS) $$($(1)_ASFLAGS) $$< -o $$@ + $Q $$($(1)_AS) -c $$(ASFLAGS) $$($(1)_ASFLAGS) $$($$(*F)_ASFLAGS) $$< -o $$@ $$($(1)_CPPAOBJ): $$(OBJDIR)/$(1)/%.o : %.S $L "$(1): Assembling with CPP $$<" @$$(MKDIR_P) $$(dir $$@) - $Q $$($(1)_CC) -c $$(CPPAFLAGS) $$($(1)_CPPAFLAGS) $$($(1)_CPPFLAGS) $$(CPPFLAGS) $$< -o $$@ + $Q $$($(1)_CC) -c $$(CPPAFLAGS) $$($(1)_CPPAFLAGS) $$($(1)_CPPFLAGS) $$(CPPFLAGS) $$($$(*F)_CPPAFLAGS) $$< -o $$@ # Link: instructions to create elf output file from object files @@ -246,7 +240,7 @@ $$(OUTDIR)/$(1)_whole.elf: bumprev $$($(1)_SRC) $$($(1)_LDSCRIPT) flash_$(1): $(OUTDIR)/$(1).hex flash_$(1)_local $L "$(1): Flashing target" $Q if [ ! -f $$($(1)_FLASH_SCRIPT) ] ; then \ - printf "No flash script found.\n" ; \ + printf "CLDLG: No flash script found.\n" ; \ exit 1 ; \ fi $Q if [ ! "$$($(1)_PROGRAMMER_TYPE)" == "none" ] ; then \ @@ -254,7 +248,7 @@ flash_$(1): $(OUTDIR)/$(1).hex flash_$(1)_local PROGRAMMER_PORT=$$($(1)_PROGRAMMER_PORT) IMAGE_FILE=$$< \ $$($(1)_FLASH_SCRIPT) ; \ else \ - printf "No programmer interface configured, see http://dev.bertos.org/wiki/ProgrammerInterface\n" ; \ + printf "CLDLG: No programmer interface configured, see http://dev.bertos.org/wiki/ProgrammerInterface\n" ; \ exit 1 ; \ fi @@ -265,7 +259,7 @@ flash_$(1)_local: stopflash_$(1): $L "$(1): Stopping target flashing" $Q if [ ! -f $$($(1)_STOPFLASH_SCRIPT) ] ; then \ - printf "No stopflash script found.\n" ; \ + printf "CLDLG: No stopflash script found.\n" ; \ exit 1 ; \ fi $Q $$($(1)_STOPFLASH_SCRIPT) ; @@ -276,7 +270,7 @@ stopflash_$(1): debug_$(1): $(OUTDIR)/$(1).elf $L "$(1): Debugging target" $Q if [ ! -f $$($(1)_DEBUG_SCRIPT) ] ; then \ - printf "No debug script found.\n" ; \ + printf "CLDLG: No debug script found.\n" ; \ exit 1 ; \ fi $Q if [ ! "$$($(1)_PROGRAMMER_TYPE)" == "none" ] ; then \ @@ -285,7 +279,7 @@ debug_$(1): $(OUTDIR)/$(1).elf ELF_FILE=$$< \ $$($(1)_DEBUG_SCRIPT) ; \ else \ - printf "No programmer interface configured, see http://dev.bertos.org/wiki/ProgrammerInterface\n" ; \ + printf "CLDLG: No programmer interface configured, see http://dev.bertos.org/wiki/ProgrammerInterface\n" ; \ exit 1 ; \ fi @@ -293,7 +287,7 @@ debug_$(1): $(OUTDIR)/$(1).elf stopdebug_$(1): $L "$(1): Stopping debugger" $Q if [ ! -f $$($(1)_STOPDEBUG_SCRIPT) ] ; then \ - printf "No stopdebug script found.\n" ; \ + printf "CLDLG: No stopdebug script found.\n" ; \ exit 1 ; \ fi $Q $$($(1)_STOPDEBUG_SCRIPT) ;