From 7c489645c375cec54f76e72be973af3063bd8966 Mon Sep 17 00:00:00 2001 From: Jesse Vincent Date: Mon, 16 Nov 2020 13:27:04 -0800 Subject: [PATCH] Remove some obsolete make variables --- etc/makefiles/sketch.mk | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/etc/makefiles/sketch.mk b/etc/makefiles/sketch.mk index 0b89cd48..9f00541c 100644 --- a/etc/makefiles/sketch.mk +++ b/etc/makefiles/sketch.mk @@ -71,19 +71,6 @@ export LIB_FILE_PATH := $(OUTPUT_PATH)/$(OUTPUT_FILE_PREFIX).a KALEIDOSCOPE_BUNDLE_LIB_DIR := $(abspath (KALEIDOSCOPE_DIR)/..) - -# We should use compiler.path instead of appending bin, but we -# don't have substitution for arduino props yet - -export COMPILER_PATH := $(call _arduino_prop,runtime.tools.avr-gcc.path)/bin - -# Allow the compiler prefix to be empty for virtual builds -COMPILER_PREFIX ?= avr- -AVR_OBJDUMP := ${COMPILER_PATH}/${COMPILER_PREFIX}objdump -AVR_OBJCOPY := ${COMPILER_PATH}/${COMPILER_PREFIX}objcopy -AVR_NM := ${COMPILER_PATH}/${COMPILER_PREFIX}nm -AVR_SIZE := ${COMPILER_PATH}/${COMPILER_PREFIX}size - # Flashing related config flashing_instructions := $(call _arduino_prop,build.flashing_instructions)