Allow mips to build.

Test: Build mips.
Change-Id: Ice2fe1d11b7c628b325ea2ad1fd1252ad8e10668
This commit is contained in:
Christopher Ferris 2017-08-01 18:09:44 -07:00
parent c34afb1cd5
commit 32766f1f52
2 changed files with 5 additions and 9 deletions

View File

@ -30,15 +30,6 @@ cc_defaults {
enabled: false,
},
},
arch: {
mips: {
enabled: false,
},
mips64: {
enabled: false,
},
},
}
cc_library {

View File

@ -97,6 +97,11 @@ inline void RegsGetLocal(Regs* regs) {
regs->SetFromRaw();
}
#elif defined(__mips__)
// Stub to allow mips to build.
void RegsGetLocal(Regs*) {}
#endif
} // namespace unwindstack