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

Side by Side Diff: ld.bfd

Issue 9302017: Check in a binary of gold from binutils 2.21.1. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/gold/
Patch Set: '' Created 8 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 unified diff | Download patch | Annotate | Revision Log
« README.chromium ('K') | « ld ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:executable
+ *
OLDNEW
(Empty)
1 #!/bin/sh
2
3 # This script forwards requests for a program named "ld.bfd", to
bradn 2012/01/31 18:57:26 NaCl
4 # work around NaCL build dependencies.
5
6 if [ -x /usr/bin/ld.bfd ]; then
7 /usr/bin/ld.bfd "$@"
8 else
9 # Hope for the best!
10 /usr/bin/ld "$@"
11 fi
OLDNEW
« README.chromium ('K') | « ld ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698