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:
@@ -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__ ) || \
|
||||
|
||||
Reference in New Issue
Block a user