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

Unified Diff: toolchain_build/pnacl_targetlibs.py

Issue 686723003: Non-SFI mode: Implement nacl_irt_random only for nacl_helper_nonsfi. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: Rebase Created 6 years, 1 month 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
« src/nonsfi/irt/irt_random.h ('K') | « src/untrusted/nacl/nacl.scons ('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 8fc6a67aafc0cc41b8880b3f5ed8b1bf2c92534c..9a48f5bf953ce760582126032dec72df5e4dc5ca 100755
--- a/toolchain_build/pnacl_targetlibs.py
+++ b/toolchain_build/pnacl_targetlibs.py
@@ -694,6 +694,11 @@ def UnsandboxedIRT(arch):
command.Command([
'gcc', '-m32', '-O2', '-Wall', '-Werror',
'-I%(top_srcdir)s/..',
+ '-c', command.path.join('%(support)s', 'irt_random.c'),
+ '-o', command.path.join('%(output)s', 'irt_random.o')]),
+ command.Command([
+ 'gcc', '-m32', '-O2', '-Wall', '-Werror',
+ '-I%(top_srcdir)s/..',
'-c', command.path.join('%(untrusted)s', 'irt_query_list.c'),
'-o', command.path.join('%(output)s', 'irt_query_list.o')]),
],
« src/nonsfi/irt/irt_random.h ('K') | « src/untrusted/nacl/nacl.scons ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698