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

Unified Diff: toolchain_build/pnacl_targetlibs.py

Issue 1692253005: Subzero: Build x86-64 target libs. (Closed) Base URL: https://chromium.googlesource.com/native_client/src/native_client.git@master
Patch Set: Created 4 years, 10 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 | « no previous file | 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 320c95b0e2f72573c44c615f3c4818664fc00973..29d537ecd334e1c9483d0a9a9f75886d4e476d55 100755
--- a/toolchain_build/pnacl_targetlibs.py
+++ b/toolchain_build/pnacl_targetlibs.py
@@ -642,6 +642,12 @@ def SubzeroRuntimeCommands(arch, out_dir):
LlcArchArgs = [ '-mcpu=pentium4m', '-relocation-model=pic',
'-force-tls-non-pic', '-malign-double']
AsmSourceBase = 'szrt_asm_x8632'
+ elif arch == 'x86-64-linux':
+ Triple = 'x86_64-none-linux-gnux32'
+ LlcArchArgs = [ '-mcpu=x86-64']
+ elif arch == 'x86-64':
+ Triple = 'x86_64-none-nacl'
+ LlcArchArgs = [ '-mcpu=x86-64']
elif arch == 'arm-linux':
Triple = 'arm-linux-gnu'
LlcArchArgs = [ '-mcpu=cortex-a9']
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698