8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc691c2 commit bc465e5Copy full SHA for bc465e5
ports/atmel-samd/boards/itsybitsy_m4_express/mpconfigboard.mk
@@ -16,3 +16,13 @@ CIRCUITPY_GIFIO = 0
16
CIRCUITPY_JPEGIO = 0
17
18
CIRCUITPY_BITBANG_APA102 = 1
19
+
20
+# We don't have room for the fonts for terminalio for certain languages,
21
+# so turn off terminalio, and if it's off and displayio is on,
22
+# force a clean build.
23
+# Note that we cannot test $(CIRCUITPY_DISPLAYIO) directly with an
24
+# ifeq, because it's not set yet.
25
+ifneq (,$(filter $(TRANSLATION),ja ko ru))
26
+CIRCUITPY_TERMINALIO = 0
27
+RELEASE_NEEDS_CLEAN_BUILD = $(CIRCUITPY_DISPLAYIO)
28
+endif
0 commit comments