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

Unified Diff: tools/ld_bfd/ld

Issue 7529047: Fix syntax for threading arguments. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/ld_bfd/ld
diff --git a/tools/ld_bfd/ld b/tools/ld_bfd/ld
index 06547cb0fbc1cd2b6c43985cf3ac215aebd6da3e..5a5d84ef5decd4e4dc04d1d5227457436561ca28 100755
--- a/tools/ld_bfd/ld
+++ b/tools/ld_bfd/ld
@@ -30,9 +30,9 @@ def main():
args = list()
args.append("/usr/bin/ld.bfd")
for arg in sys.argv[1:]:
- if arg == "-Wl,--threads":
+ if arg == "-Wl,--threads" or arg == "--threads":
continue
- if arg == "-Wl,--thread-count=4":
+ if arg == "-Wl,--thread-count=4" or arg == "--thread-count=4":
continue
args.append(arg)
print("ld_bfd/ld: exec ", args)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698