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

Unified Diff: src/untrusted/irt/nacl.scons

Issue 12386091: Simplify check_tls on ARM, now that llvm emits mapping symbols. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: simplify_more Created 7 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 | « src/untrusted/irt/check_tls.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/untrusted/irt/nacl.scons
diff --git a/src/untrusted/irt/nacl.scons b/src/untrusted/irt/nacl.scons
index 9952557806eb46bdbb71b8e70cb3edc37defb033..4caa22558a125c038ea296a3109355c68dc9904c 100644
--- a/src/untrusted/irt/nacl.scons
+++ b/src/untrusted/irt/nacl.scons
@@ -144,10 +144,7 @@ if ((env.Bit('build_arm') or env.Bit('build_x86_32'))
and not env.Bit('built_elsewhere')):
check_tls_arch = '${TARGET_FULLARCH}'
if env.Bit('build_arm'):
- if env.Bit('bitcode'):
- check_tls_arch = 'arm-pnacl'
- else:
- check_tls_arch = 'arm-gcc'
+ check_tls_arch = 'arm'
node = env.CommandTest('irt_core_tls_test.out',
['${PYTHON}', env.File('check_tls.py'),
check_tls_arch, '${OBJDUMP}', irt_core_library],
« no previous file with comments | « src/untrusted/irt/check_tls.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698