
Originally Posted by
luni
Glad that VisualTeensy is useful for you.
Would it be possible to send me that tweaked Linux makefile? I could then add a "generate Linux compatible makefile" option if that would be usesful.
Hmm... I produced a lovely .rtf file with changes highlighted - any idea how I can attach it here or send it to you via this forum @luni?
In the meantime here is the linux makefile
Code:
#******************************************************************************
# Generated by VisualTeensy (https://github.com/luni64/VisualTeensy)
#
# Board Teensy 3.2 / 3.1
# USB Type Serial
# CPU Speed 96 MHz (overclock)
# Optimize Faster
# Keyboard Layout US English
#
# 06/11/2018 13:30
#******************************************************************************
#SHELL := cmd.exe
#export SHELL
TARGET_NAME := TeensyViewDemo
BOARD_ID := TEENSY31
LIBS_SHARED_BASE := /home/hugh/arduino-1.8.7/libraries
LIBS_SHARED :=
LIBS_LOCAL_BASE := lib
LIBS_LOCAL := SPI
CORE_BASE := /home/hugh/arduino-1.8.7/hardware/teensy/avr/cores/teensy3
GCC_BASE := /home/hugh/arduino-1.8.7/hardware/tools/arm
UPL_PJRC_B := /home/hugh/arduino-1.8.7/hardware/tools
UPL_TYCMD_B := /home/hugh/Arduino
UPL_CLICMD_B :=
MCU := mk20dx256
FLAGS_CPU := -mthumb -mcpu=cortex-m4 -fsingle-precision-constant
FLAGS_OPT := -O2
FLAGS_COM := -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD
FLAGS_LSP :=
FLAGS_CPP := -fno-exceptions -felide-constructors -std=gnu++14 -Wno-error=narrowing -fno-rtti
FLAGS_C :=
FLAGS_S := -x assembler-with-cpp
FLAGS_LD := -Wl,--gc-sections,--relax,--defsym=__rtc_localtime=$(shell date +%s)
LIBS := -larm_cortexM4l_math -lm
LD_SCRIPT := mk20dx256.ld
DEFINES := -D__MK20DX256__ -DTEENSYDUINO=144 -DARDUINO=10807
DEFINES += -DF_CPU=96000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH
CPP_FLAGS := $(FLAGS_CPU) $(FLAGS_OPT) $(FLAGS_COM) $(DEFINES) $(FLAGS_CPP)
C_FLAGS := $(FLAGS_CPU) $(FLAGS_OPT) $(FLAGS_COM) $(DEFINES) $(FLAGS_C)
S_FLAGS := $(FLAGS_CPU) $(FLAGS_OPT) $(FLAGS_COM) $(DEFINES) $(FLAGS_S)
LD_FLAGS := $(FLAGS_CPU) $(FLAGS_OPT) $(FLAGS_LSP) $(FLAGS_LD)
AR_FLAGS := rcs
USR_SRC := src
LIB_SRC := lib
CORE_SRC := $(CORE_BASE)
BIN := bin
USR_BIN := $(BIN)/src
CORE_BIN := $(BIN)/core
LIB_BIN := $(BIN)/lib
CORE_LIB := $(BIN)/core.a
TARGET_HEX := $(BIN)/$(TARGET_NAME).hex
TARGET_ELF := $(BIN)/$(TARGET_NAME).elf
TARGET_LST := $(BIN)/$(TARGET_NAME).lst
#******************************************************************************
# BINARIES
#******************************************************************************
CC := $(GCC_BASE)/bin/arm-none-eabi-gcc
CXX := $(GCC_BASE)/bin/arm-none-eabi-g++
AR := $(GCC_BASE)/bin/arm-none-eabi-gcc-ar
OBJCOPY := $(GCC_BASE)/bin/arm-none-eabi-objcopy
SIZE := $(GCC_BASE)/bin/arm-none-eabi-size
OBJDUMP := $(GCC_BASE)/bin/arm-none-eabi-objdump
UPL_PJRC := "$(UPL_PJRC_B)/teensy_post_compile" -test -file=$(TARGET_NAME) -path=$(BIN) -tools="$(UPL_PJRC_B)" -board=$(BOARD_ID) -reboot
UPL_TYCMD := $(UPL_TYCMD_B)/tycommander upload $(TARGET_HEX) --autostart --wait --multi
UPL_CLICMD := $(UPL_CLICMD_B)/teensy_loader_cli -mmcu=$(MCU) -v $(TARGET_HEX)
#******************************************************************************
# Source and Include Files
#******************************************************************************
# Recursively create list of source and object files in USR_SRC and CORE_SRC
# and corresponding subdirectories.
# The function rwildcard is taken from http://stackoverflow.com/a/12959694)
rwildcard =$(wildcard $1$2) $(foreach d,$(wildcard $1*),$(call rwildcard,$d/,$2))
#User Sources -----------------------------------------------------------------
USR_C_FILES := $(call rwildcard,$(USR_SRC)/,*.c)
USR_CPP_FILES := $(call rwildcard,$(USR_SRC)/,*.cpp)
USR_S_FILES := $(call rwildcard,$(USR_SRC)/,*.S)
USR_OBJ := $(USR_S_FILES:$(USR_SRC)/%.S=$(USR_BIN)/%.o) $(USR_C_FILES:$(USR_SRC)/%.c=$(USR_BIN)/%.o) $(USR_CPP_FILES:$(USR_SRC)/%.cpp=$(USR_BIN)/%.o)
# Core library sources --------------------------------------------------------
CORE_CPP_FILES := $(call rwildcard,$(CORE_SRC)/,*.cpp)
CORE_C_FILES := $(call rwildcard,$(CORE_SRC)/,*.c)
CORE_OBJ := $(CORE_S_FILES:$(CORE_SRC)/%.S=$(CORE_BIN)/%.o) $(CORE_C_FILES:$(CORE_SRC)/%.c=$(CORE_BIN)/%.o) $(CORE_CPP_FILES:$(CORE_SRC)/%.cpp=$(CORE_BIN)/%.o)
# User library sources (see) https://github.com/arduino/arduino/wiki/arduino-ide-1.5:-library-specification
LIB_DIRS_SHARED := $(foreach d, $(LIBS_SHARED), $(LIBS_SHARED_BASE)/$d/ $(LIBS_SHARED_BASE)/$d/utility/) # base and /utility
LIB_DIRS_SHARED += $(foreach d, $(LIBS_SHARED), $(LIBS_SHARED_BASE)/$d/src/ $(dir $(call rwildcard,$(LIBS_SHARED_BASE)/$d/src/,*/.))) # src and all subdirs of base
LIB_DIRS_LOCAL := $(foreach d, $(LIBS_LOCAL), $(LIBS_LOCAL_BASE)/$d/ $(LIBS_LOCAL_BASE)/$d/utility/ ) # base and /utility
LIB_DIRS_LOCAL += $(foreach d, $(LIBS_LOCAL), $(LIBS_LOCAL_BASE)/$d/src/ $(dir $(call rwildcard,$(LIBS_LOCAL_BASE)/$d/src/,*/.))) # src and all subdirs of base
LIB_CPP_SHARED := $(foreach d, $(LIB_DIRS_SHARED),$(call wildcard,$d*.cpp))
LIB_C_SHARED := $(foreach d, $(LIB_DIRS_SHARED),$(call wildcard,$d*.c))
LIB_CPP_LOCAL := $(foreach d, $(LIB_DIRS_LOCAL),$(call wildcard,$d*.cpp)) # $d already has trailing /
LIB_C_LOCAL := $(foreach d, $(LIB_DIRS_LOCAL),$(call wildcard,$d*.c)) # $d already has trailing /
LIB_OBJ := $(LIB_CPP_SHARED:$(LIBS_SHARED_BASE)/%.cpp=$(LIB_BIN)/%.o) $(LIB_CPP_LOCAL:$(LIBS_LOCAL_BASE)/%.cpp=$(LIB_BIN)/%.o)
LIB_OBJ += $(LIB_C_SHARED:$(LIBS_SHARED_BASE)/%.c=$(LIB_BIN)/%.o) $(LIB_C_LOCAL:$(LIBS_LOCAL_BASE)/%.c=$(LIB_BIN)/%.o)
# Includes -------------------------------------------------------------
INCLUDE := -I.\$(USR_SRC) -I$(CORE_SRC)
INCLUDE += $(foreach d, $(LIB_DIRS_SHARED), -I$d)
INCLUDE += $(foreach d, $(LIB_DIRS_LOCAL), -I$d)
# Generate directories --------------------------------------------------------
DIRECTORIES := $(sort $(dir $(CORE_OBJ) $(USR_OBJ) $(LIB_OBJ)))
generateDirs := $(foreach d, $(DIRECTORIES), $(shell if [ ! -d "$(d)" ]; then mkdir -p "$(d)"; fi))
#$(info dirs: $(DIRECTORIES))
#$(info dirs: $(LIB_DIRS_LOCAL))
#$(info )
#$(info cpp: $(LIB_CPP_SHARED))
#$(info include: ${INCLUDE})
#******************************************************************************
# Rules:
#******************************************************************************
.PHONY: directories all rebuild upload uploadTy uploadCLI clean cleanUser cleanCore
all: $(TARGET_LST) $(TARGET_HEX)
rebuild: cleanUser all
clean: cleanUser cleanCore cleanLib
upload: all
@$(UPL_PJRC)
uploadTy: all
@$(UPL_TYCMD)
uploadCLI: all
@$(UPL_CLICMD)
# Core library ----------------------------------------------------------------
$(CORE_BIN)/%.o: $(CORE_SRC)/%.S
@echo CORE [ASM] $(notdir $<)
@"$(CC)" $(S_FLAGS) $(INCLUDE) -o $@ -c $<
$(CORE_BIN)/%.o: $(CORE_SRC)/%.c
@echo CORE [CC] $(notdir $<)
@"$(CC)" $(C_FLAGS) $(INCLUDE) -o $@ -c $<
$(CORE_BIN)/%.o: $(CORE_SRC)/%.cpp
@echo CORE [CPP] $(notdir $<)
@"$(CXX)" $(CPP_FLAGS) $(INCLUDE) -o $@ -c $<
$(CORE_LIB) : $(CORE_OBJ)
@echo CORE [AR] $@
@$(AR) $(AR_FLAGS) $@ $^
@echo Teensy core built successfully && echo
# Shared Libraries ------------------------------------------------------------
$(LIB_BIN)/%.o: $(LIBS_SHARED_BASE)/%.S
@echo LIB [ASM] $(notdir $<)
@"$(CC)" $(S_FLAGS) $(INCLUDE) -o $@ -c $<
$(LIB_BIN)/%.o: $(LIBS_SHARED_BASE)/%.cpp
@echo LIB [CPP] $(notdir $<)
@"$(CXX)" $(CPP_FLAGS) $(INCLUDE) -o $@ -c $<
$(LIB_BIN)/%.o: $(LIBS_SHARED_BASE)/%.c
@echo LIB [CC] $(notdir $<)
@"$(CC)" $(C_FLAGS) $(INCLUDE) -o $@ -c $<
# Local Libraries -------------------------------------------------------------
$(LIB_BIN)/%.o: $(LIBS_LOCAL_BASE)/%.S
@echo LIB [ASM] $(notdir $<)
@"$(CC)" $(S_FLAGS) $(INCLUDE) -o $@ -c $<
$(LIB_BIN)/%.o: $(LIBS_LOCAL_BASE)/%.cpp
@echo LIB [CPP] $(notdir $<)
@"$(CXX)" $(CPP_FLAGS) $(INCLUDE) -o $@ -c $<
$(LIB_BIN)/%.o: $(LIBS_LOCAL_BASE)/%.c
@echo LIB [CC] $(notdir $<)
@"$(CC)" $(C_FLAGS) $(INCLUDE) -o $@ -c $<
# Handle user sources ---------------------------------------------------------
$(USR_BIN)/%.o: $(USR_SRC)/%.S
@echo USER [ASM] $<
@"$(CC)" $(S_FLAGS) $(INCLUDE) -o $@ -c $<
$(USR_BIN)/%.o: $(USR_SRC)/%.c
@echo USER [CC] $(notdir $<)
@"$(CC)" $(C_FLAGS) $(INCLUDE) -o "$@" -c $<
$(USR_BIN)/%.o: $(USR_SRC)/%.cpp
@echo USER [CPP] $(notdir $<)
@"$(CXX)" $(CPP_FLAGS) $(INCLUDE) -o "$@" -c $<
# Linking ---------------------------------------------------------------------
$(TARGET_ELF): $(CORE_LIB) $(LIB_OBJ) $(USR_OBJ)
@echo [LD] $@
@$(CC) $(LD_FLAGS) -T$(CORE_SRC)/$(LD_SCRIPT) -o "$@" $(USR_OBJ) $(LIB_OBJ) $(CORE_LIB) $(LIBS)
@echo User code built and linked to libraries && echo
%.lst: %.elf
@echo [LST] $(notdir $@)
@$(OBJDUMP) -d -S --demangle --no-show-raw-insn --syms "$<" > "$@"
@echo Listfile generated && echo
%.hex: %.elf
@echo [HEX] $@
@$(SIZE) "$<"
@$(OBJCOPY) -O ihex -R.eeprom "$<" "$@"
@echo Sucessfully built project && echo
# Cleaning --------------------------------------------------------------------
cleanUser:
@echo Cleaning user binaries...
@if [ -d $(USR_BIN) ]; then rm -r $(USR_BIN); fi
@if [ -f $(TARGET_HEX) ]; then rm $(TARGET_HEX); fi
@if [ -f $(TARGET_ELF) ]; then rm $(TARGET_ELF); fi
@if [ -f $(TARGET_LST) ]; then rm $(TARGET_LST); fi
cleanCore:
@echo Cleaning core binaries...
@if [ -d $(CORE_BIN) ]; then rm -r $(CORE_BIN); fi
@if [ -f $(CORE_LIB) ]; then rm $(CORE_LIB); fi
cleanLib:
@echo Cleaning user library binaries...
@if [ -d $(LIB_BIN) ]; then rm -r $(LIB_BIN); fi
# compiler generated dependency info ------------------------------------------
-include $(CORE_OBJ:.o=.d)
-include $(USR_OBJ:.o=.d)
-include $(LIB_OBJ:.o=.d)
Changes are ...
1) Most are obvious path and directory separator changes.
2) SHELL definition and export commented out – not required.
3) Shell commands changed to suit linux.
4) tyCommander changed to tycommander.
5) LIB_CPP_LOCAL and LIB_C_LOCAL – I removed an extra ‘/’ which was causing directory names such as ‘lib/SPI//’ to be produced. Windows apparently doesn’t mind this but linux did.
6) The echo commands in the build had an ‘echo.’ (note the ‘.’). Linux didn’t like that.
7) Clean commands changed to suit linux.
and the c_cpp_properties.json
Code:
{
"configurations": [
{
"name": "VisualTeensy",
"includePath": [
"src/**",
"lib/**",
"/home/hugh/arduino-1.8.7/hardware/teensy/avr/cores/teensy3/**",
"/home/hugh/Arduino/libraries/**"
],
"defines": [
"__MK20DX256__",
"TEENSYDUINO=144",
"F_CPU=96000000",
"USB_SERIAL",
"LAYOUT_US_ENGLISH",
"ARDUINO"
],
"compilerPath": "/home/hugh/arduino-1.8.7/hardware/tools/arm/bin/arm-none-eabi-gcc",
"intelliSenseMode": "gcc-x64"
}
],
"version": 4
}
and the tasks.json
Code:
{
"tasks": [
{
"label": "Build",
"group": {
"kind": "build",
"isDefault": true
},
"command": "make",
"args": [
"all",
"-j",
"-Otarget"
]
},
{
"label": "Rebuild User Code",
"group": {
"kind": "build",
"isDefault": true
},
"command": "make",
"args": [
"rebuild",
"-j",
"-Otarget"
]
},
{
"label": "Clean",
"group": {
"kind": "build",
"isDefault": true
},
"command": "make",
"args": [
"clean"
]
},
{
"label": "Upload (Teensy Uploader)",
"group": {
"kind": "build",
"isDefault": true
},
"command": "make",
"args": [
"upload",
"-j",
"-Otarget"
]
},
{
"label": "Upload (TyCommander)",
"group": {
"kind": "build",
"isDefault": true
},
"command": "make",
"args": [
"uploadTy",
"-j",
"-Otarget"
]
},
{
"label": "Upload (CLI)",
"group": {
"kind": "build",
"isDefault": true
},
"command": "make",
"args": [
"uploadCLI",
"-j",
"-Otarget"
]
}
],
"version": "2.0.0",
"type": "shell",
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared",
"showReuseMessage": false
},
"problemMatcher": "$gcc"
}