Fix compile errors under Android toolchain. Seems to have the same issue as the NDS.
This commit is contained in:
parent
df6f09b78d
commit
26026fcdaa
1 changed files with 6 additions and 4 deletions
|
@ -167,9 +167,10 @@ SDL_COMPILE_TIME_ASSERT(uint16, sizeof(Uint16) == 2);
|
||||||
SDL_COMPILE_TIME_ASSERT(sint16, sizeof(Sint16) == 2);
|
SDL_COMPILE_TIME_ASSERT(sint16, sizeof(Sint16) == 2);
|
||||||
SDL_COMPILE_TIME_ASSERT(uint32, sizeof(Uint32) == 4);
|
SDL_COMPILE_TIME_ASSERT(uint32, sizeof(Uint32) == 4);
|
||||||
SDL_COMPILE_TIME_ASSERT(sint32, sizeof(Sint32) == 4);
|
SDL_COMPILE_TIME_ASSERT(sint32, sizeof(Sint32) == 4);
|
||||||
#ifndef __NINTENDODS__ /* TODO: figure out why the following happens:
|
#if !defined(__NINTENDODS__) && !defined(__ANDROID__)
|
||||||
include/SDL_stdinc.h:150: error: size of array 'SDL_dummy_uint64' is negative
|
/* TODO: figure out why the following happens:
|
||||||
include/SDL_stdinc.h:151: error: size of array 'SDL_dummy_sint64' is negative */
|
include/SDL_stdinc.h:150: error: size of array 'SDL_dummy_uint64' is negative
|
||||||
|
include/SDL_stdinc.h:151: error: size of array 'SDL_dummy_sint64' is negative */
|
||||||
SDL_COMPILE_TIME_ASSERT(uint64, sizeof(Uint64) == 8);
|
SDL_COMPILE_TIME_ASSERT(uint64, sizeof(Uint64) == 8);
|
||||||
SDL_COMPILE_TIME_ASSERT(sint64, sizeof(Sint64) == 8);
|
SDL_COMPILE_TIME_ASSERT(sint64, sizeof(Sint64) == 8);
|
||||||
#endif
|
#endif
|
||||||
|
@ -188,7 +189,8 @@ SDL_COMPILE_TIME_ASSERT(sint64, sizeof(Sint64) == 8);
|
||||||
|
|
||||||
/** \cond */
|
/** \cond */
|
||||||
#ifndef DOXYGEN_SHOULD_IGNORE_THIS
|
#ifndef DOXYGEN_SHOULD_IGNORE_THIS
|
||||||
#ifndef __NINTENDODS__ /* TODO: include/SDL_stdinc.h:174: error: size of array 'SDL_dummy_enum' is negative */
|
#if !defined(__NINTENDODS__) && !defined(__ANDROID__)
|
||||||
|
/* TODO: include/SDL_stdinc.h:174: error: size of array 'SDL_dummy_enum' is negative */
|
||||||
typedef enum
|
typedef enum
|
||||||
{
|
{
|
||||||
DUMMY_ENUM_VALUE
|
DUMMY_ENUM_VALUE
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue