Explorar el Código

Merge pull request #94 from dfries/fixups

Makefile, set MCU at top and remove -nostdlib
teensy4-core
Paul Stoffregen hace 9 años
padre
commit
7ebeb074f9
Se han modificado 1 ficheros con 10 adiciones y 6 borrados
  1. +10
    -6
      teensy3/Makefile

+ 10
- 6
teensy3/Makefile Ver fichero

# set your MCU type here, or make command line `make MCU=MK20DX256`
MCU=MK20DX256

# make it lower case
LOWER_MCU := $(subst A,a,$(subst B,b,$(subst C,c,$(subst D,d,$(subst E,e,$(subst F,f,$(subst G,g,$(subst H,h,$(subst I,i,$(subst J,j,$(subst K,k,$(subst L,l,$(subst M,m,$(subst N,n,$(subst O,o,$(subst P,p,$(subst Q,q,$(subst R,r,$(subst S,s,$(subst T,t,$(subst U,u,$(subst V,v,$(subst W,w,$(subst X,x,$(subst Y,y,$(subst Z,z,$(MCU)))))))))))))))))))))))))))
MCU_LD = $(LOWER_MCU).ld


# The name of your project (used to name the compiled .hex file) # The name of your project (used to name the compiled .hex file)
TARGET = main TARGET = main
OPTIONS = -DF_CPU=48000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -DUSING_MAKEFILE OPTIONS = -DF_CPU=48000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -DUSING_MAKEFILE


# options needed by many Arduino libraries to configure for Teensy 3.0 # options needed by many Arduino libraries to configure for Teensy 3.0
OPTIONS += -D__MK20DX256__ -DARDUINO=10600 -DTEENSYDUINO=121
OPTIONS += -D__$(MCU)__ -DARDUINO=10600 -DTEENSYDUINO=121




# Other Makefiles and project templates for Teensy 3.x: # Other Makefiles and project templates for Teensy 3.x:
#************************************************************************ #************************************************************************


# CPPFLAGS = compiler options for C and C++ # CPPFLAGS = compiler options for C and C++
CPPFLAGS = -Wall -g -Os -mcpu=cortex-m4 -mthumb -nostdlib -MMD $(OPTIONS) -I.
CPPFLAGS = -Wall -g -Os -mcpu=cortex-m4 -mthumb -MMD $(OPTIONS) -I.


# compiler options for C++ only # compiler options for C++ only
CXXFLAGS = -std=gnu++0x -felide-constructors -fno-exceptions -fno-rtti CXXFLAGS = -std=gnu++0x -felide-constructors -fno-exceptions -fno-rtti
CFLAGS = CFLAGS =


# linker options # linker options
LDFLAGS = -Os -Wl,--gc-sections,--defsym=__rtc_localtime=0 --specs=nano.specs -mcpu=cortex-m4 -mthumb -Tmk20dx256.ld
LDFLAGS = -Os -Wl,--gc-sections,--defsym=__rtc_localtime=0 --specs=nano.specs -mcpu=cortex-m4 -mthumb -T$(MCU_LD)


# additional libraries to link # additional libraries to link
LIBS = -lm LIBS = -lm


all: $(TARGET).hex all: $(TARGET).hex


$(TARGET).elf: $(OBJS) mk20dx256.ld
$(TARGET).elf: $(OBJS) $(MCU_LD)
$(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS) $(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS)


%.hex: %.elf %.hex: %.elf


clean: clean:
rm -f *.o *.d $(TARGET).elf $(TARGET).hex rm -f *.o *.d $(TARGET).elf $(TARGET).hex



Cargando…
Cancelar
Guardar