summaryrefslogtreecommitdiff
path: root/extra/gcc-uClibc/gcc-uClibc.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-02-25 09:02:57 +0000
committerEric Andersen <andersen@codepoet.org>2002-02-25 09:02:57 +0000
commitc2f9adab4e6da2ee9745155970bef152baeee2ee (patch)
tree2e12127838e4fe395d79d46f27f31b8450b41c9e /extra/gcc-uClibc/gcc-uClibc.c
parent6e6be1e59fadbc9c78622844ba2f864699472f6b (diff)
Both Miles and Manuel complained about this one. I was silently
losing all -Wl calls...
Diffstat (limited to 'extra/gcc-uClibc/gcc-uClibc.c')
-rw-r--r--extra/gcc-uClibc/gcc-uClibc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/extra/gcc-uClibc/gcc-uClibc.c b/extra/gcc-uClibc/gcc-uClibc.c
index dfe6216c2..00407f516 100644
--- a/extra/gcc-uClibc/gcc-uClibc.c
+++ b/extra/gcc-uClibc/gcc-uClibc.c
@@ -291,10 +291,10 @@ int main(int argc, char **argv)
continue;
} else if (strstr(argv[j],static_linking) != NULL) {
continue;
- } else if (strncmp("-Wl,",argv[j], 4) == 0) {
- continue;
+#if 0
} else if (strncmp("-v",argv[j], 2) == 0) {
continue;
+#endif
} else {
gcc_argument[k++] = argv[j];
gcc_argument[k] = '\0';