From: Øyvind Harboe Date: Tue, 10 Nov 2009 07:36:19 +0000 (+0100) Subject: tcl: HostOs now picks up eCos as well during compile time X-Git-Tag: v0.4.0-rc1~854 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=151a270695416824940ca64016b3dcd75d9c75fa;p=openocd tcl: HostOs now picks up eCos as well during compile time Signed-off-by: Øyvind Harboe --- diff --git a/src/helper/command.c b/src/helper/command.c index d29b6ec3..5d69ffb3 100644 --- a/src/helper/command.c +++ b/src/helper/command.c @@ -770,6 +770,8 @@ command_context_t* command_init() HostOs = "cygwin"; #elif defined(__MINGW32__) HostOs = "mingw32"; +#elif defined(__ECOS) + HostOs = "ecos"; #else #warn unrecognized host OS... HostOs = "other";