mirror of
https://github.com/qmk/qmk_firmware.git
synced 2025-06-12 20:04:15 +00:00
Add compile time warnings for experimental architectures, for those that don't read the manual.
This commit is contained in:
parent
6dc85e4023
commit
59056ce544
@ -87,10 +87,12 @@ ifeq ($(ARCH), AVR8)
|
|||||||
CROSS := avr-
|
CROSS := avr-
|
||||||
else ifeq ($(ARCH), XMEGA)
|
else ifeq ($(ARCH), XMEGA)
|
||||||
CROSS := avr-
|
CROSS := avr-
|
||||||
|
$(warning The XMEGA device support is currently EXPERIMENTAL (incomplete and/or non-functional), and is included for preview purposes only.)
|
||||||
else ifeq ($(ARCH), UC3)
|
else ifeq ($(ARCH), UC3)
|
||||||
CROSS := avr32-
|
CROSS := avr32-
|
||||||
|
$(warning The UC3 device support is currently EXPERIMENTAL (incomplete and/or non-functional), and is included for preview purposes only.)
|
||||||
else
|
else
|
||||||
$(error Unsupported architecture "$(ARCH)".)
|
$(error Unsupported architecture "$(ARCH)")
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# Output Messages
|
# Output Messages
|
||||||
|
Loading…
Reference in New Issue
Block a user