summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFranklin Wei <git@fwei.tk>2017-12-24 17:53:30 -0500
committerFranklin Wei <git@fwei.tk>2017-12-24 18:01:28 -0500
commit54d8e675303a55cfe31b956ec9ce1f4564b7e846 (patch)
treeadc3413df7670ca664f6e5f63e6d9367b569694c
parent8d3e3056f75fbcd8e7db6cc396981750fb65806b (diff)
downloadrockbox-54d8e675303a55cfe31b956ec9ce1f4564b7e846.tar.gz
rockbox-54d8e675303a55cfe31b956ec9ce1f4564b7e846.zip
duke3d: restrict targets to ARM only
Change-Id: I484d6de2d5d4a495ed54e8ee2a80459785b5f5e8
-rw-r--r--apps/plugins/SOURCES2
-rw-r--r--apps/plugins/SUBDIRS3
2 files changed, 3 insertions, 2 deletions
diff --git a/apps/plugins/SOURCES b/apps/plugins/SOURCES
index 132dd534f2..1ae0144866 100644
--- a/apps/plugins/SOURCES
+++ b/apps/plugins/SOURCES
@@ -76,7 +76,7 @@ iriverify.c
76 76
77#if defined(HAVE_LCD_COLOR) && \ 77#if defined(HAVE_LCD_COLOR) && \
78 (!defined(LCD_STRIDEFORMAT) || (LCD_STRIDEFORMAT != VERTICAL_STRIDE)) 78 (!defined(LCD_STRIDEFORMAT) || (LCD_STRIDEFORMAT != VERTICAL_STRIDE))
79#if (CONFIG_PLATFORM & PLATFORM_NATIVE) && (PLUGIN_BUFFER_SIZE > 0x14000) 79#if (PLUGIN_BUFFER_SIZE > 0x14000) && defined(CPU_ARM)
80duke3d.c 80duke3d.c
81#endif 81#endif
82#endif 82#endif
diff --git a/apps/plugins/SUBDIRS b/apps/plugins/SUBDIRS
index 62b1a6a83d..07c435123c 100644
--- a/apps/plugins/SUBDIRS
+++ b/apps/plugins/SUBDIRS
@@ -18,7 +18,8 @@ clock
18xworld 18xworld
19 19
20/* for duke, etc. */ 20/* for duke, etc. */
21#if (CONFIG_PLATFORM & PLATFORM_NATIVE) && (PLUGIN_BUFFER_SIZE > 0x14000) 21#if (CONFIG_PLATFORM & PLATFORM_NATIVE) && (PLUGIN_BUFFER_SIZE > 0x14000) && \
22 defined(CPU_ARM)
22sdl 23sdl
23#endif 24#endif
24 25