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

Unified Diff: tests/irt_compatibility/nacl.scons

Issue 19571003: IRT: Replace __attribute__((constructor)) with explicit call in _start() (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: Fix + cleanup Created 7 years, 5 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/nacl.scons ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/irt_compatibility/nacl.scons
diff --git a/tests/irt_compatibility/nacl.scons b/tests/irt_compatibility/nacl.scons
index 73cf786f0307da5b51f43fa3d91099742208bba6..5e1c4cc97ac33b11ee02a1761dff988d771a25cf 100644
--- a/tests/irt_compatibility/nacl.scons
+++ b/tests/irt_compatibility/nacl.scons
@@ -16,15 +16,12 @@ blob_env = env['NACL_IRT_ENV'].Clone()
blob_env.Append(LINKFLAGS=[blob_env.RodataSwitch('${IRT_BLOB_DATA_START}'),
blob_env.TextSwitch('${IRT_BLOB_CODE_START}')])
-irt_entry_obj = blob_env.ComponentObject(
- '${MAIN_DIR}/src/untrusted/irt/irt_entry.c')
-
# Build custom IRT library which provides a minimal subset of old
# interface versions.
blob_env.Append(CPPDEFINES=[['ALLOW_DYNAMIC_LINKING',
str(int(not env.Bit('nacl_static_link')))]])
irt_comp_test_library = blob_env.ComponentProgram(
- 'irt_comp_test', [irt_entry_obj, 'irt_comp_interfaces.c'],
+ 'irt_comp_test', ['irt_comp_interfaces.c'],
EXTRA_LIBS=['irt_support_private'])
# Don't provide IRT, we provide it ourselves via -B.
« no previous file with comments | « src/untrusted/irt/nacl.scons ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698