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

Unified Diff: toolchain_build/pnacl_targetlibs.py

Issue 269703002: Non-SFI Mode: Add nonsfi_loader and plumbing to test it (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: Review Created 6 years, 8 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
« buildbot/buildbot_pnacl.sh ('K') | « src/nonsfi/loader/elf_loader.c ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: toolchain_build/pnacl_targetlibs.py
diff --git a/toolchain_build/pnacl_targetlibs.py b/toolchain_build/pnacl_targetlibs.py
index e8d1016244dad2a55f39e8e0e21258e55a234f01..5c9bb7e4138931c6b37b1ea3146985a913c113b1 100644
--- a/toolchain_build/pnacl_targetlibs.py
+++ b/toolchain_build/pnacl_targetlibs.py
@@ -591,7 +591,7 @@ def UnsandboxedIRT(arch):
'output_subdir': 'lib-' + arch,
# This lib #includes
# arbitrary stuff from native_client/src/{include,untrusted,trusted}
- 'inputs': { 'support': os.path.join(NACL_DIR, 'pnacl', 'support'),
+ 'inputs': { 'support': os.path.join(NACL_DIR, 'src', 'nonsfi', 'irt'),
'include': os.path.join(NACL_DIR, 'src'), },
'commands': [
# The NaCl headers insist on having a platform macro such as
@@ -603,7 +603,7 @@ def UnsandboxedIRT(arch):
command.Command([
'gcc', '-m32', '-O2', '-Wall', '-Werror',
'-I%(top_srcdir)s/..', '-DNACL_LINUX=1',
- '-c', command.path.join('%(support)s', 'unsandboxed_irt.c'),
+ '-c', command.path.join('%(support)s', 'irt_interfaces.c'),
'-o', command.path.join('%(output)s', 'unsandboxed_irt.o')]),
],
},
« buildbot/buildbot_pnacl.sh ('K') | « src/nonsfi/loader/elf_loader.c ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698