[MIPS] Adding support for MIPS architecture for WebRTC.

Small change to typedefs.h to enable MIPS Little Endian port.

TBR=niklas.enbom@webrtc.org
BUG=https://code.google.com/p/chromium/issues/detail?id=130022
TEST=make chrome

Review URL: https://webrtc-codereview.appspot.com/679005

git-svn-id: http://webrtc.googlecode.com/svn/trunk@2451 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
andrew@webrtc.org 2012-06-27 22:24:43 +00:00
parent f5e99db10b
commit e22beabaf1
2 changed files with 6 additions and 1 deletions

View File

@ -3,4 +3,5 @@
Google Inc.
Mozilla Foundation
Ben Strong <bstrong@gmail.com>
Ben Strong <bstrong@gmail.com>
Petar Jovanovic <petarj@mips.com>

View File

@ -48,6 +48,10 @@
#define WEBRTC_ARCH_32_BITS
#define WEBRTC_ARCH_LITTLE_ENDIAN
#define WEBRTC_LITTLE_ENDIAN
#elif defined(__MIPSEL__)
#define WEBRTC_ARCH_32_BITS
#define WEBRTC_ARCH_LITTLE_ENDIAN
#define WEBRTC_LITTLE_ENDIAN
#else
#error Please add support for your architecture in typedefs.h
#endif