Add minimal supports to build multilib x86 toolchain with OpenMP

Change-Id: I095c15d2a2de11992890c2a03be0f90332d372de
This commit is contained in:
Andrew Hsieh
2013-08-02 14:24:43 +08:00
parent 18dc709e82
commit 09073f3d88

View File

@@ -191,8 +191,13 @@ typedef uint64_t uint_fast64_t;
* intptr_t & uintptr_t
*/
#ifdef __LP64__
typedef long intptr_t;
typedef unsigned long uintptr_t;
#else
typedef int intptr_t;
typedef unsigned int uintptr_t;
#endif
#ifdef __STDINT_LIMITS
# define INTPTR_MIN INT32_MIN