mirror of https://github.com/encounter/SDL.git
-Wundef errors from clang-11.1 when targeting macOS Targeting i386 against 10.8 SDK: In file included from src/SDL_assert.c:21: In file included from src/./SDL_internal.h:52: In file included from include/SDL_config.h:33: include/SDL_platform.h:73:5: error: 'TARGET_OS_TV' is not defined, evaluates to 0 [-Werror,-Wundef-prefix=TARGET_OS_] ^ 1 error generated. src/joystick/iphoneos/SDL_mfijoystick.m:38:5: error: 'TARGET_OS_IOS' is not defined, evaluates to 0 [-Werror,-Wundef-prefix=TARGET_OS_] ^ src/joystick/iphoneos/SDL_mfijoystick.m:460:5: error: 'TARGET_OS_TV' is not defined, evaluates to 0 [-Werror,-Wundef-prefix=TARGET_OS_] ^ 2 errors generated. src/filesystem/cocoa/SDL_sysfilesystem.m:83:6: error: 'TARGET_OS_TV' is not defined, evaluates to 0 [-Werror,-Wundef-prefix=TARGET_OS_] ^ 1 error generated. Targeting x86_64 against 10.12 SDK: src/video/SDL_video.c:1492:25: error: 'TARGET_OS_MACCATALYST' is not defined, evaluates to 0 [-Werror,-Wundef-prefix=TARGET_OS_] ^ 1 error generated.
This commit is contained in:
parent
16e3bfe807
commit
170924278d
|
@ -70,6 +70,24 @@
|
||||||
/* lets us know what version of Mac OS X we're compiling on */
|
/* lets us know what version of Mac OS X we're compiling on */
|
||||||
#include "AvailabilityMacros.h"
|
#include "AvailabilityMacros.h"
|
||||||
#include "TargetConditionals.h"
|
#include "TargetConditionals.h"
|
||||||
|
|
||||||
|
/* Fix building with older SDKs that don't define these
|
||||||
|
See this for more information:
|
||||||
|
https://stackoverflow.com/questions/12132933/preprocessor-macro-for-os-x-targets
|
||||||
|
*/
|
||||||
|
#ifndef TARGET_OS_MACCATALYST
|
||||||
|
#define TARGET_OS_MACCATALYST 0
|
||||||
|
#endif
|
||||||
|
#ifndef TARGET_OS_IOS
|
||||||
|
#define TARGET_OS_IOS 0
|
||||||
|
#endif
|
||||||
|
#ifndef TARGET_OS_IPHONE
|
||||||
|
#define TARGET_OS_IPHONE 0
|
||||||
|
#endif
|
||||||
|
#ifndef TARGET_OS_TV
|
||||||
|
#define TARGET_OS_TV 0
|
||||||
|
#endif
|
||||||
|
|
||||||
#if TARGET_OS_TV
|
#if TARGET_OS_TV
|
||||||
#undef __TVOS__
|
#undef __TVOS__
|
||||||
#define __TVOS__ 1
|
#define __TVOS__ 1
|
||||||
|
|
Loading…
Reference in New Issue