From 93baf94dc33a83758d15c26545380f465073e8dc Mon Sep 17 00:00:00 2001 From: Solomon Peachy Date: Sat, 7 Dec 2024 16:57:04 -0500 Subject: [PATCH] configure: Disallow 'sdlapp' to be build as a simulator target. Change-Id: I52cf549aa8a24080832413ca5afb197047b42bd7 --- tools/configure | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tools/configure b/tools/configure index ef87266773..ddf1b93c7b 100755 --- a/tools/configure +++ b/tools/configure @@ -4398,6 +4398,9 @@ fi if [ "$modelname" = "sansae200r" ]; then echo "Do not use the e200R target for simulator builds. Use e200 instead." exit 8 + elif [ "$modelname" = "sdlapp" ]; then + echo "Do not use sdlapp for simulator builds; it is already a native SDL application." + exit 8 fi debug="-DDEBUG" simulator="yes"