You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

63 lines
2.4 KiB

  1. --- a/boostcpp.jam
  2. +++ b/boostcpp.jam
  3. @@ -634,7 +634,7 @@ rule address-model ( )
  4. return <conditional>@boostcpp.deduce-address-model ;
  5. }
  6. -local deducable-architectures = arm mips1 power riscv s390x sparc x86 combined ;
  7. +local deducable-architectures = arm mips power riscv s390x sparc x86 combined ;
  8. feature.feature deduced-architecture : $(deducable-architectures) : propagated optional composite hidden ;
  9. for a in $(deducable-architectures)
  10. {
  11. @@ -645,10 +645,10 @@ rule deduce-architecture ( properties *
  12. {
  13. local result ;
  14. local filtered = [ toolset-properties $(properties) ] ;
  15. - local names = arm mips1 power riscv s390x sparc x86 combined ;
  16. + local names = arm mips power riscv s390x sparc x86 combined ;
  17. local idx = [ configure.find-builds "default architecture" : $(filtered)
  18. : /boost/architecture//arm
  19. - : /boost/architecture//mips1
  20. + : /boost/architecture//mips
  21. : /boost/architecture//power
  22. : /boost/architecture//riscv
  23. : /boost/architecture//s390x
  24. --- a/libs/atomic/build/atomic-arch-config.jam
  25. +++ b/libs/atomic/build/atomic-arch-config.jam
  26. @@ -27,9 +27,9 @@ rule deduce-architecture ( properties *
  27. {
  28. return arm ;
  29. }
  30. - else if [ configure.builds /boost/architecture//mips1 : $(properties) : "mips1" ]
  31. + else if [ configure.builds /boost/architecture//mips : $(properties) : "mips" ]
  32. {
  33. - return mips1 ;
  34. + return mips ;
  35. }
  36. else if [ configure.builds /boost/architecture//power : $(properties) : "power" ]
  37. {
  38. --- a/libs/config/checks/architecture/Jamfile.jam
  39. +++ b/libs/config/checks/architecture/Jamfile.jam
  40. @@ -18,7 +18,7 @@ obj 64 : 64.cpp ;
  41. obj arm : arm.cpp ;
  42. obj combined : combined.cpp ;
  43. -obj mips1 : mips1.cpp ;
  44. +obj mips : mips1.cpp ;
  45. obj power : power.cpp ;
  46. obj riscv : riscv.cpp ;
  47. obj sparc : sparc.cpp ;
  48. --- a/libs/log/build/log-arch-config.jam
  49. +++ b/libs/log/build/log-arch-config.jam
  50. @@ -56,9 +56,9 @@ rule deduce-architecture ( properties *
  51. {
  52. return arm ;
  53. }
  54. - else if [ configure.builds /boost/architecture//mips1 : $(properties) : mips1 ]
  55. + else if [ configure.builds /boost/architecture//mips : $(properties) : mips ]
  56. {
  57. - return mips1 ;
  58. + return mips ;
  59. }
  60. else if [ configure.builds /boost/architecture//power : $(properties) : power ]
  61. {