Allow mips to build.
Test: Build mips. Change-Id: Ice2fe1d11b7c628b325ea2ad1fd1252ad8e10668
This commit is contained in:
parent
c34afb1cd5
commit
32766f1f52
|
@ -30,15 +30,6 @@ cc_defaults {
|
|||
enabled: false,
|
||||
},
|
||||
},
|
||||
|
||||
arch: {
|
||||
mips: {
|
||||
enabled: false,
|
||||
},
|
||||
mips64: {
|
||||
enabled: false,
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
cc_library {
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue