Boost logo

Boost :

Subject: Re: [boost] [predef] Status and review results?
From: Michael Marcin (mike.marcin_at_[hidden])
Date: 2013-04-27 16:07:25


On 4/27/2013 11:07 AM, Rene Rivera wrote:
> I have been waiting on adding iOS defs while I figure out the nicest way to
> do them. But I added an issue for this now.
>
>

A few more you could possibly add:

#if defined(_XBOX)
# if defined(_XENON) || (_XBOX_VER == 200)
# define BOOST_OS_XBOX360
# else
# define BOOST_OS_XBOX
# endif
#endif

#if defined(R5900)
# define BOOST_OS_PS2
#endif

#if defined(__CELLOS_LV2__)
# define BOOST_OS_PS3
#endif

#if defined(GEKKO)
# define BOOST_OS_GAMECUBE
#endif

#if defined(RVL)
# define BOOST_OS_WII
#endif

#if defined(__espresso__)
# define BOOST_OS_WIIU
#endif

#if defined(__psp__)
# define BOOST_OS_PSP
#endif

#if defined(__psp2__)
# define BOOST_OS_PSVITA
#endif

#if defined(_arch_dreamcast)
# define BOOST_OS_DREAMCAST
#endif

#if defined(NN_PLATFORM_CTR)
# define BOOST_OS_3DS
#endif

#if defined(SDK_TWL)
# define BOOST_OS_DSI
#elif defined(SDK_ARM9) // this may pull in too many platforms
# define BOOST_OS_NDS
#endif


Boost list run by bdawes at acm.org, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk