File tree Expand file tree Collapse file tree 2 files changed +20
-0
lines changed Expand file tree Collapse file tree 2 files changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -15,3 +15,13 @@ CIRCUITPY_CANIO = 1
15
15
CIRCUITPY_SYNTHIO = 0
16
16
17
17
CIRCUITPY_LTO_PARTITION = one
18
+
19
+ # We don't have room for the fonts for terminalio for certain languages,
20
+ # so turn off terminalio, and if it's off and displayio is on,
21
+ # force a clean build.
22
+ # Note that we cannot test $(CIRCUITPY_DISPLAYIO) directly with an
23
+ # ifeq, because it's not set yet.
24
+ ifneq (,$(filter $(TRANSLATION ) ,ja ko ru) )
25
+ CIRCUITPY_TERMINALIO = 0
26
+ RELEASE_NEEDS_CLEAN_BUILD = $(CIRCUITPY_DISPLAYIO )
27
+ endif
Original file line number Diff line number Diff line change @@ -12,3 +12,13 @@ LONGINT_IMPL = MPZ
12
12
13
13
CIRCUITPY__EVE = 1
14
14
CIRCUITPY_SYNTHIO = 0
15
+
16
+ # We don't have room for the fonts for terminalio for certain languages,
17
+ # so turn off terminalio, and if it's off and displayio is on,
18
+ # force a clean build.
19
+ # Note that we cannot test $(CIRCUITPY_DISPLAYIO) directly with an
20
+ # ifeq, because it's not set yet.
21
+ ifneq (,$(filter $(TRANSLATION ) ,ja ko ru) )
22
+ CIRCUITPY_TERMINALIO = 0
23
+ RELEASE_NEEDS_CLEAN_BUILD = $(CIRCUITPY_DISPLAYIO )
24
+ endif
You can’t perform that action at this time.
0 commit comments