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

Unified 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, 11 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
« README.chromium ('K') | « ld ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ld.bfd
===================================================================
--- ld.bfd (revision 0)
+++ ld.bfd (revision 0)
@@ -0,0 +1,11 @@
+#!/bin/sh
+
+# This script forwards requests for a program named "ld.bfd", to
bradn 2012/01/31 18:57:26 NaCl
+# work around NaCL build dependencies.
+
+if [ -x /usr/bin/ld.bfd ]; then
+ /usr/bin/ld.bfd "$@"
+else
+ # Hope for the best!
+ /usr/bin/ld "$@"
+fi
Property changes on: ld.bfd
___________________________________________________________________
Added: svn:executable
+ *
« README.chromium ('K') | « ld ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698