Sorry
I ll try to explain what append;
When I define TARGET_IS_NDS as preprocessor option, b2Settings includes jtypes.h file which asks for stdint.h
and from this point I dont know what to do.
I ve tried with the one gived with devkitpro and with another one i found on wiki (ISO C9x compliant stdint.h for Microsoft Visual Studio)
but both requieres other includes and each time i build the lib i have type conflics
for example :
_types.h(15) : error C2144: erreur de syntaxe : '__int64' doit être précédé de ';'
_types.h(15) : error C4430: spécificateur de type manquant - int est pris en compte par défaut. Remarque : C++ ne prend pas en charge int par défaut
_types.h(34) : error C2059: erreur de syntaxe : '__value'
where
_types.h(15) is : [ __extension__ typedef long long _off64_t; ]
and
_types.h(34) is : [ } __value; /* Value so far. */ ](in _mbstate_t struct def)
(sorry, errors are in french

)
I guess I have not the good files and i don't well understand these basics types definition to solve the problem myself.
If you succeed building the library, it will be kind to share the config you use !
Thanks