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

Side by Side Diff: chrome/nacl/nacl_helper_bootstrap_linux.x

Issue 8811002: Revert 113074 - Use nacl_helper_bootstrap from native_client repository (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years 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 unified diff | Download patch | Annotate | Revision Log
Property Changes:
Added: svn:mergeinfo
OLDNEW
1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. 3 * found in the LICENSE file.
4 * 4 *
5 * This is a custom linker script used to build nacl_helper_bootstrap. 5 * This is a custom linker script used to build nacl_helper_bootstrap.
6 * It has a very special layout. This script will only work with input 6 * It has a very special layout. This script will only work with input
7 * that is kept extremely minimal. If there are unexpected input sections 7 * that is kept extremely minimal. If there are unexpected input sections
8 * not named here, the result will not be correct. 8 * not named here, the result will not be correct.
9 * 9 *
10 * We need to use a standalone loader program rather than just using a 10 * We need to use a standalone loader program rather than just using a
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 /* 124 /*
125 * These are empty input sections the linker generates. 125 * These are empty input sections the linker generates.
126 * If we don't discard them, they pollute the flags in the output segment. 126 * If we don't discard them, they pollute the flags in the output segment.
127 */ 127 */
128 /DISCARD/ : { 128 /DISCARD/ : {
129 *(.iplt) 129 *(.iplt)
130 *(.rel*) 130 *(.rel*)
131 *(.igot.plt) 131 *(.igot.plt)
132 } 132 }
133 } 133 }
OLDNEW
« no previous file with comments | « chrome/nacl/nacl_helper_bootstrap_linux.c ('k') | chrome/nacl/nacl_helper_bootstrap_munge_phdr.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698