Revert the use of the new compiler defines as they are not autodetected correctly yet
This commit is contained in:
parent
54b76a7568
commit
2efd207660
2 changed files with 3 additions and 3 deletions
2
gfx.h
2
gfx.h
|
@ -57,7 +57,7 @@
|
||||||
#if GFX_NO_INLINE
|
#if GFX_NO_INLINE
|
||||||
#define GFXINLINE
|
#define GFXINLINE
|
||||||
#else
|
#else
|
||||||
#if (GFX_COMPILER == GFX_COMPILER_ARMCC) || (GFX_COMPILER == GFX_COMPILER_KEIL)
|
#if defined(__KEIL__) || defined(__C51__)
|
||||||
#define GFXINLINE __inline
|
#define GFXINLINE __inline
|
||||||
#else
|
#else
|
||||||
#define GFXINLINE inline
|
#define GFXINLINE inline
|
||||||
|
|
|
@ -203,12 +203,12 @@ static thread mainthread; // The main thread context
|
||||||
* If they don't exist compile them to be the standard setjmp() function.
|
* If they don't exist compile them to be the standard setjmp() function.
|
||||||
* Similarly for longjmp().
|
* Similarly for longjmp().
|
||||||
*/
|
*/
|
||||||
#if (!defined(setjmp) && !defined(_setjmp)) || (GFX_COMPILER == GFX_COMPILER_ARMCC) || (GFX_COMPILER == GFX_COMPILER_KEIL)
|
#if (!defined(setjmp) && !defined(_setjmp)) || defined(__KEIL__) || defined(__C51__)
|
||||||
#define CXT_SAVE setjmp
|
#define CXT_SAVE setjmp
|
||||||
#else
|
#else
|
||||||
#define CXT_SAVE _setjmp
|
#define CXT_SAVE _setjmp
|
||||||
#endif
|
#endif
|
||||||
#if (!defined(longjmp) && !defined(_longjmp)) || (GFX_COMPILER == GFX_COMPILER_ARMCC) || (GFX_COMPILER == GFX_COMPILER_KEIL)
|
#if (!defined(longjmp) && !defined(_longjmp)) || defined(__KEIL__) || defined(__C51__)
|
||||||
#define CXT_RESTORE longjmp
|
#define CXT_RESTORE longjmp
|
||||||
#else
|
#else
|
||||||
#define CXT_RESTORE _longjmp
|
#define CXT_RESTORE _longjmp
|
||||||
|
|
Loading…
Add table
Reference in a new issue