Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 32766f1f authored by Christopher Ferris's avatar Christopher Ferris
Browse files

Allow mips to build.

Test: Build mips.
Change-Id: Ice2fe1d11b7c628b325ea2ad1fd1252ad8e10668
parent c34afb1c
Loading
Loading
Loading
Loading
+0 −9
Original line number Diff line number Diff line
@@ -30,15 +30,6 @@ cc_defaults {
            enabled: false,
        },
    },

    arch: {
        mips: {
            enabled: false,
        },
        mips64: {
            enabled: false,
        },
    },
}

cc_library {
+5 −0
Original line number Diff line number Diff line
@@ -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