mirror of
https://github.com/boostorg/config.git
synced 2025-07-30 20:37:15 +02:00
Merge pull request #312 from wzssyqa/no-mips1-only
make mips1.cpp recognize all mips
This commit is contained in:
@ -6,6 +6,6 @@
|
||||
// accompanying file LICENSE_1_0.txt or copy at
|
||||
// http://www.boost.org/LICENSE_1_0.txt)
|
||||
|
||||
#if !((defined(__mips) && __mips == 1) || defined(_MIPS_ISA_MIPS1) || defined(_R3000))
|
||||
#if !(defined(__mips) || defined(_MIPS_ISA_MIPS1) || defined(_R3000))
|
||||
#error "Not MIPS1"
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user