Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(967)

Unified Diff: src/trusted/service_runtime/sel_qualify.c

Issue 18861003: [MIPS] Remove NaClCheckDEP for MIPS (Closed) Base URL: http://git.chromium.org/native_client/src/native_client.git@master
Patch Set: Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/trusted/platform_qualify/build.scons ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/trusted/service_runtime/sel_qualify.c
diff --git a/src/trusted/service_runtime/sel_qualify.c b/src/trusted/service_runtime/sel_qualify.c
index 2d04300478af49bcbbd8f1010b495e00efa4eb46..0cf24e1caf53ea490fc32ce5d6aa8b27eecadc26 100644
--- a/src/trusted/service_runtime/sel_qualify.c
+++ b/src/trusted/service_runtime/sel_qualify.c
@@ -18,9 +18,12 @@ NaClErrorCode NaClRunSelQualificationTests(void) {
return LOAD_UNSUPPORTED_OS_PLATFORM;
}
+ /* Mips does not support DEP and it does not need it, so skip it. */
+#if NACL_ARCH(NACL_BUILD_ARCH) != NACL_mips
if (!NaClCheckDEP()) {
return LOAD_DEP_UNSUPPORTED;
}
+#endif
#if NACL_ARCH(NACL_BUILD_ARCH) == NACL_x86
if (NaCl_ThisCPUIsBlacklisted()) {
« no previous file with comments | « src/trusted/platform_qualify/build.scons ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698