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

Unified Diff: src/trusted/platform_qualify/build.scons

Issue 3539011: Enable check for DEP / NX page protection (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
Patch Set: Modify windows check to use Noel's signal interface Created 10 years, 2 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
Index: src/trusted/platform_qualify/build.scons
===================================================================
--- src/trusted/platform_qualify/build.scons (revision 3470)
+++ src/trusted/platform_qualify/build.scons (working copy)
@@ -49,9 +49,9 @@
if env['TARGET_SUBARCH'] == '64':
# Compile x86-64 primitives for verifying NX functionality
- pql_inputs += ['arch/x86_64/nacl_dep_qualify.c']
+ pql_inputs += ['arch/x86_64/nacl_dep_qualify_arch.c']
elif env['TARGET_SUBARCH'] == '32':
- pql_inputs += ['arch/x86_32/nacl_dep_qualify.c']
+ pql_inputs += ['arch/x86_32/nacl_dep_qualify_arch.c']
# TODO(bradchen): re-enable when issue 440 is fixed
# env.ComponentProgram('platform_qual_test',
@@ -63,7 +63,7 @@
if env['BUILD_ARCHITECTURE'] == 'arm':
# Compile ARM primitives for checking XN functionality
- pql_inputs += ['arch/arm/nacl_dep_qualify.c']
+ pql_inputs += ['arch/arm/nacl_dep_qualify_arch.c']
# ----------------------------------------------------------
@@ -77,4 +77,3 @@
# TODO(bradnelson): figure out a way to get coverage working for these.
if env.Bit('windows') and env.get('COVERAGE_ENABLED'):
Return()
-
« no previous file with comments | « src/trusted/platform_qualify/arch/x86_64/nacl_dep_qualify_arch.c ('k') | src/trusted/platform_qualify/platform_qual_test.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698