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

Unified Diff: gcc/gcc.c

Issue 6995084: Restore simple LIB_SPEC using just -lc (Closed) Base URL: http://git.chromium.org/native_client/nacl-gcc.git@master
Patch Set: Created 9 years, 6 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 | « gcc/config/i386/nacl.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gcc/gcc.c
diff --git a/gcc/gcc.c b/gcc/gcc.c
index 5ef245e4e891fe69ffd54f32970ee62750cf5f39..55bc335d7dde2ba21290a7550875229d053f5055 100644
--- a/gcc/gcc.c
+++ b/gcc/gcc.c
@@ -6806,10 +6806,7 @@ main (int argc, char **argv)
/* Use the same thing in %o, unless cp->spec says otherwise. */
- if (strcmp(input_filename, "-lnosys") == 0)
khim 2011/06/08 19:32:29 If you want to remove this logic then libnosys.a s
- outfiles[i] = NULL;
- else
- outfiles[i] = input_filename;
+ outfiles[i] = input_filename;
/* Figure out which compiler from the file's suffix. */
« no previous file with comments | « gcc/config/i386/nacl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698