Skip to content

Commit

Permalink
Switch mips1 to mips
Browse files Browse the repository at this point in the history
  • Loading branch information
FlyGoat committed Dec 2, 2018
1 parent 7601e2a commit 6edc818
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions build/Jamfile.v2
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ alias asm_sources
asm/ontop_mips32_o32_elf_gas.S
: <abi>o32
<address-model>32
<architecture>mips1
<architecture>mips
<binary-format>elf
<toolset>clang
;
Expand All @@ -242,7 +242,7 @@ alias asm_sources
asm/ontop_mips32_o32_elf_gas.S
: <abi>o32
<address-model>32
<architecture>mips1
<architecture>mips
<binary-format>elf
<toolset>gcc
;
Expand All @@ -254,7 +254,7 @@ alias asm_sources
asm/ontop_mips64_n64_elf_gas.S
: <abi>n64
<address-model>64
<architecture>mips1
<architecture>mips
<binary-format>elf
<toolset>clang
;
Expand All @@ -265,7 +265,7 @@ alias asm_sources
asm/ontop_mips64_n64_elf_gas.S
: <abi>n64
<address-model>64
<architecture>mips1
<architecture>mips
<binary-format>elf
<toolset>gcc
;
Expand Down
4 changes: 2 additions & 2 deletions build/architecture.jam
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ rule deduce-architecture ( properties * )
{
return <architecture>arm ;
}
else if [ configure.builds /boost/architecture//mips1 : $(properties) : mips1 ]
else if [ configure.builds /boost/architecture//mips : $(properties) : mips ]
{
return <architecture>mips1 ;
return <architecture>mips ;
}
else if [ configure.builds /boost/architecture//power : $(properties) : power ]
{
Expand Down
2 changes: 1 addition & 1 deletion doc/architectures.qbk
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ architectures:
[[arm (aarch32)] [AAPCS|ELF] [AAPCS|PE] [-] [AAPCS|MACH-O]]
[[arm (aarch64)] [AAPCS|ELF] [-] [-] [AAPCS|MACH-O]]
[[i386] [SYSV|ELF] [MS|PE] [SYSV|MACH-O] [-]]
[[mips1] [O32|ELF] [-] [-] [-]]
[[mips] [O32,N64|ELF] [-] [-] [-]]
[[ppc32] [SYSV|ELF,XCOFF] [-] [SYSV|MACH-O] [-]]
[[ppc64] [SYSV|ELF,XCOFF] [-] [SYSV|MACH-O] [-]]
[[sparc] [-] [-] [-] [-]]
Expand Down
4 changes: 2 additions & 2 deletions doc/context.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5117,12 +5117,12 @@
<row>
<entry>
<para>
mips1
mips
</para>
</entry>
<entry>
<para>
O32|ELF
O32,N64|ELF
</para>
</entry>
<entry>
Expand Down
4 changes: 2 additions & 2 deletions doc/html/context/architectures.html
Original file line number Diff line number Diff line change
Expand Up @@ -153,12 +153,12 @@
<tr>
<td>
<p>
mips1
mips
</p>
</td>
<td>
<p>
O32|ELF
O32,N64|ELF
</p>
</td>
<td>
Expand Down

0 comments on commit 6edc818

Please sign in to comment.