diff options
| author | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2012-06-10 10:59:13 +0000 |
|---|---|---|
| committer | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2012-06-10 10:59:13 +0000 |
| commit | 6fc0bb6096c84fba3cb275b69938cc9fcb9a870b (patch) | |
| tree | 8a09bcdff5ada17d149c3a443f225eda47ceace9 /LUFA/Build | |
| parent | 9a47c6fec893d966f9bc5939844d690fc92a5130 (diff) | |
Add compile time warnings for experimental architectures, for those that don't read the manual.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@2325 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'LUFA/Build')
| -rw-r--r-- | LUFA/Build/lufa.build.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/LUFA/Build/lufa.build.in b/LUFA/Build/lufa.build.in index 066986ae..62e902ad 100644 --- a/LUFA/Build/lufa.build.in +++ b/LUFA/Build/lufa.build.in @@ -87,10 +87,12 @@ ifeq ($(ARCH), AVR8) CROSS := avr- else ifeq ($(ARCH), XMEGA) 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) CROSS := avr32- + $(warning The UC3 device support is currently EXPERIMENTAL (incomplete and/or non-functional), and is included for preview purposes only.) else - $(error Unsupported architecture "$(ARCH)".) + $(error Unsupported architecture "$(ARCH)") endif # Output Messages |
