diff --git a/build/config.mak b/build/config.mak index 2e344fdfa..d19ae2834 100644 --- a/build/config.mak +++ b/build/config.mak @@ -8,5 +8,4 @@ EPSILON_APPS ?= calculation graph code statistics probability solver sequence re EPSILON_I18N ?= en fr nl pt it de es EPSILON_COUNTRIES ?= WW CA DE ES FR GB IT NL PT US EPSILON_GETOPT ?= 0 -EPSILON_TELEMETRY ?= 0 ESCHER_LOG_EVENTS_BINARY ?= 0 diff --git a/build/platform.blackbox.mak b/build/platform.blackbox.mak index 235feb87a..5c4683d06 100644 --- a/build/platform.blackbox.mak +++ b/build/platform.blackbox.mak @@ -1,4 +1,6 @@ TOOLCHAIN ?= host-gcc USE_LIBA ?= 0 ION_KEYBOARD_LAYOUT = layout_B2 -EXE = bin \ No newline at end of file +EXE = bin + +EPSILON_TELEMETRY ?= 0 \ No newline at end of file diff --git a/build/platform.device.mak b/build/platform.device.mak index 60559e357..34ca783d0 100644 --- a/build/platform.device.mak +++ b/build/platform.device.mak @@ -2,6 +2,8 @@ MODEL ?= n0110 USE_LIBA = 1 EXE = elf +EPSILON_TELEMETRY ?= 0 + BUILD_DIR := $(BUILD_DIR)/$(MODEL) $(BUILD_DIR)/python/port/port.o: CXXFLAGS += -DMP_PORT_USE_STACK_SYMBOLS=1 diff --git a/build/platform.simulator.linux.mak b/build/platform.simulator.linux.mak index 19e01ba1e..695fa0b55 100644 --- a/build/platform.simulator.linux.mak +++ b/build/platform.simulator.linux.mak @@ -1,2 +1,4 @@ TOOLCHAIN = host-gcc EXE = bin + +EPSILON_TELEMETRY ?= 0 diff --git a/build/platform.simulator.macos.mak b/build/platform.simulator.macos.mak index bbe011e52..dcfeac04b 100644 --- a/build/platform.simulator.macos.mak +++ b/build/platform.simulator.macos.mak @@ -3,6 +3,7 @@ EXE = bin APPLE_PLATFORM = macos APPLE_PLATFORM_MIN_VERSION = 10.10 +EPSILON_TELEMETRY ?= 0 ARCHS = x86_64 diff --git a/build/platform.simulator.web.mak b/build/platform.simulator.web.mak index 0a39c53f8..f3433497e 100644 --- a/build/platform.simulator.web.mak +++ b/build/platform.simulator.web.mak @@ -1,2 +1,4 @@ TOOLCHAIN = emscripten EXE = js + +EPSILON_TELEMETRY ?= 0 diff --git a/build/platform.simulator.windows.mak b/build/platform.simulator.windows.mak index 1d71772f4..a1718feac 100644 --- a/build/platform.simulator.windows.mak +++ b/build/platform.simulator.windows.mak @@ -1,2 +1,4 @@ TOOLCHAIN = windows EXE = exe + +EPSILON_TELEMETRY ?= 0