2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-14 00:32:11 +00:00

define OSPLAT: MIPS64/MIPS32 instead of MIPS (#517)

context need to define abi as o32 for MIPS32, while n64 for MIPS64.
we need a way to know about it.
This commit is contained in:
YunQiang Su
2019-12-26 23:23:27 +08:00
committed by Rene Rivera
parent 99e6619682
commit e67fc8a4be

View File

@@ -412,7 +412,11 @@
#endif
#ifdef __mips__
#define OSPLAT "OSPLAT=MIPS"
#if defined(_ABI64)
#define OSPLAT "OSPLAT=MIPS64"
#elif defined(_ABIO32)
#define OSPLAT "OSPLAT=MIPS32"
#endif
#endif
#if defined( __arm__ ) || \