mirror of
https://github.com/boostorg/config.git
synced 2025-07-31 04:47:16 +02:00
Rename mips1 to mips and alias mips1 to mips
This commit is contained in:
@ -18,7 +18,8 @@ obj 64 : 64.cpp ;
|
|||||||
|
|
||||||
obj arm : arm.cpp ;
|
obj arm : arm.cpp ;
|
||||||
obj combined : combined.cpp ;
|
obj combined : combined.cpp ;
|
||||||
obj mips1 : mips1.cpp ;
|
obj mips : mips.cpp ;
|
||||||
|
alias mips1 : mips ; # Backwards compatibility
|
||||||
obj power : power.cpp ;
|
obj power : power.cpp ;
|
||||||
obj riscv : riscv.cpp ;
|
obj riscv : riscv.cpp ;
|
||||||
obj sparc : sparc.cpp ;
|
obj sparc : sparc.cpp ;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
// mips1.cpp
|
// mips.cpp
|
||||||
//
|
//
|
||||||
// Copyright (c) 2012 Steven Watanabe
|
// Copyright (c) 2012 Steven Watanabe
|
||||||
//
|
//
|
||||||
@ -7,5 +7,5 @@
|
|||||||
// http://www.boost.org/LICENSE_1_0.txt)
|
// http://www.boost.org/LICENSE_1_0.txt)
|
||||||
|
|
||||||
#if !(defined(__mips) || defined(_MIPS_ISA_MIPS1) || defined(_R3000))
|
#if !(defined(__mips) || defined(_MIPS_ISA_MIPS1) || defined(_R3000))
|
||||||
#error "Not MIPS1"
|
#error "Not MIPS"
|
||||||
#endif
|
#endif
|
Reference in New Issue
Block a user