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

Unified Diff: src/trusted/service_runtime/nacl.scons

Issue 62643002: Deploy new x86 binutils (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: rebased Created 7 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
Index: src/trusted/service_runtime/nacl.scons
diff --git a/src/trusted/service_runtime/nacl.scons b/src/trusted/service_runtime/nacl.scons
index f76eb50d4326aec55a87de6390920be5d10bb44b..ae1230c6d9c34562ecf16248d567b79d2e047f24 100644
--- a/src/trusted/service_runtime/nacl.scons
+++ b/src/trusted/service_runtime/nacl.scons
@@ -56,9 +56,9 @@ def NewAsmEnv(env, defines, rodata_address, rwdata_address):
' -o ${TARGET} ${SOURCES}')
if env.Bit('target_x86_32'):
- link_cmd += ' -melf_nacl'
+ link_cmd += ' -melf_i386_nacl'
elif env.Bit('target_x86_64'):
- link_cmd += ' -melf64_nacl'
+ link_cmd += ' -melf_x86_64_nacl'
elif env.Bit('target_arm'):
link_cmd += ' -marmelf_nacl'
elif env.Bit('target_mips32'):

Powered by Google App Engine
This is Rietveld 408576698