diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-02-25 09:02:57 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-02-25 09:02:57 +0000 |
commit | c2f9adab4e6da2ee9745155970bef152baeee2ee (patch) | |
tree | 2e12127838e4fe395d79d46f27f31b8450b41c9e | |
parent | 6e6be1e59fadbc9c78622844ba2f864699472f6b (diff) |
Both Miles and Manuel complained about this one. I was silently
losing all -Wl calls...
-rw-r--r-- | extra/gcc-uClibc/gcc-uClibc.c | 4 |
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'; |