Add support for MIPS architecture to config.h
This commit is contained in:
parent
c5ef1c85a6
commit
5de5e64fb6
2 changed files with 9 additions and 0 deletions
8
config.h
8
config.h
|
|
@ -44,6 +44,14 @@
|
|||
#include "ruby/config-sparc.h"
|
||||
#elif defined(__aarch64__)
|
||||
#include "ruby/config-aarch64.h"
|
||||
#elif defined(__mips64) && defined(__MIPSEL__)
|
||||
#include "ruby/config-mips64el.h"
|
||||
#elif defined(__mips64)
|
||||
#include "ruby/config-mips64.h"
|
||||
#elif defined(__mips) && defined(__MIPSEL__)
|
||||
#include "ruby/config-mipsel.h"
|
||||
#elif defined(__mips)
|
||||
#include "ruby/config-mips.h"
|
||||
#else
|
||||
#error "The ruby-devel package is not usable with the architecture."
|
||||
#endif
|
||||
|
|
|
|||
|
|
@ -893,6 +893,7 @@ make check TESTS="-v $DISABLE_TESTS"
|
|||
- Fix directory ownership.
|
||||
- Fix the git BR following the git package split.
|
||||
- Move gemified net-telnet into subpackage.
|
||||
- Add support for MIPS architecture to config.h
|
||||
|
||||
* Tue Feb 03 2015 Vít Ondruch <vondruch@redhat.com> - 2.2.0-5
|
||||
- Make operating_system.rb more robust.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue