Allow gcc 5.x to compile library.
Change check of __GNUC__ macro from: __GNUC__ == 4 to __GNUC__ >= 4 git-svn-id: https://llvm.org/svn/llvm-project/openmp/trunk@238347 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -365,7 +365,7 @@ typedef double kmp_real64;
|
||||
|
||||
#define KMP_EXPORT extern /* export declaration in guide libraries */
|
||||
|
||||
#if __GNUC__ == 4
|
||||
#if __GNUC__ >= 4
|
||||
#define __forceinline __inline
|
||||
#endif
|
||||
|
||||
|
||||
Reference in New Issue
Block a user