From 849369cceccfa3b9d70257306a8a93cfb852263e Mon Sep 17 00:00:00 2001 From: inmarket Date: Thu, 12 Nov 2015 18:43:20 +1000 Subject: Fix compiler detection for Keil uVision V5 --- src/gos/gos_x_threads.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/gos/gos_x_threads.c') diff --git a/src/gos/gos_x_threads.c b/src/gos/gos_x_threads.c index 8a781b21..bdb61ab9 100644 --- a/src/gos/gos_x_threads.c +++ b/src/gos/gos_x_threads.c @@ -203,12 +203,12 @@ static thread mainthread; // The main thread context * If they don't exist compile them to be the standard setjmp() function. * Similarly for longjmp(). */ - #if (!defined(setjmp) && !defined(_setjmp)) || defined(__KEIL__) || defined(__C51__) + #if (!defined(setjmp) && !defined(_setjmp)) || GFX_COMPILER == GFX_COMILER_KEIL #define CXT_SAVE setjmp #else #define CXT_SAVE _setjmp #endif - #if (!defined(longjmp) && !defined(_longjmp)) || defined(__KEIL__) || defined(__C51__) + #if (!defined(longjmp) && !defined(_longjmp)) || GFX_COMPILER == GFX_COMILER_KEIL #define CXT_RESTORE longjmp #else #define CXT_RESTORE _longjmp -- cgit v1.2.3