duane> [ patch introducing "HostOS"]

Committed, along with a Documentation patch.
Actual names are shown below.

-Duane.

#if defined( _MSC_VER )
    /* WinXX - is generic, the forward
     * looking problem is this:
     *
     *   "win32" or "win64"
     *
     * "winxx" is generic.
     */
    HostOs = "winxx";
#elif defined( __LINUX__)
    HostOs = "linux";
#elif defined( __DARWIN__ )
    HostOs = "darwin";
#elif defined( __CYGWIN__ )
    HostOs = "cygwin";
#elif defined( __MINGW32__ )
    HostOs = "mingw32";
#else
    HostOs = "other";
#endif

_______________________________________________
Openocd-development mailing list
Openocd-development@lists.berlios.de
https://lists.berlios.de/mailman/listinfo/openocd-development

Reply via email to