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

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

Issue 22859030: Remove wrapper-link-and-translate from PNaCl and pnacl_shared_newlib from SCons. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: one more reference Created 7 years, 4 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 | « site_scons/site_tools/naclsdk.py ('k') | src/untrusted/nacl/pthread_initialize_minimal_using_ldso.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/untrusted/nacl/nacl.scons
diff --git a/src/untrusted/nacl/nacl.scons b/src/untrusted/nacl/nacl.scons
index c979b188f80e938d4fe5d3dace7df7f7a5184ea5..5bf698dc10ff492aa4a369f921cef4a8e19bd548 100644
--- a/src/untrusted/nacl/nacl.scons
+++ b/src/untrusted/nacl/nacl.scons
@@ -63,18 +63,11 @@ SRCS_NEWLIB_MISC = [
'start.c', # contains _start, preventing us from making this a .so
'nacl_add_tp.c',
'nacl_read_tp.c',
- 'pthread_stubs.c', # weak version of __pthread_initialize
-]
-
-SRCS_NEWLIB_STATIC = [
'pthread_initialize_minimal.c',
+ 'pthread_stubs.c', # weak version of __pthread_initialize
'tls.c',
]
-SRCS_NEWLIB_SHARED = [
- 'pthread_initialize_minimal_using_ldso.c',
- 'tls_using_ldso.c',
-]
# used by both glibc and newlib
SRCS_NACL_EXTENSIONS = [
@@ -90,12 +83,8 @@ if env.Bit('nacl_glibc'):
sources = SRCS_NACL_EXTENSIONS
else:
sources = SRCS_NACL_EXTENSIONS + SRCS_NEWLIB_SYSCALL + SRCS_NEWLIB_MISC
- if env.Bit('pnacl_shared_newlib'):
- sources += SRCS_NEWLIB_SHARED
- else:
- sources += SRCS_NEWLIB_STATIC
- if env.Bit('target_arm') and not env.Bit('bitcode'):
- sources.append('aeabi_read_tp.S')
+ if env.Bit('target_arm') and not env.Bit('bitcode'):
+ sources.append('aeabi_read_tp.S')
# Do not make a shared version of libnacl.
libnacl = env.ComponentLibrary('libnacl', sources)
« no previous file with comments | « site_scons/site_tools/naclsdk.py ('k') | src/untrusted/nacl/pthread_initialize_minimal_using_ldso.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698