diff options
| -rwxr-xr-x | clang/utils/ccc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/utils/ccc b/clang/utils/ccc index 43ded027168..d999d2bfc79 100755 --- a/clang/utils/ccc +++ b/clang/utils/ccc @@ -217,7 +217,7 @@ def main(args): if action == 'link': for i, file in enumerate(files): ext = extension(file) - if ext != "o" and ext != "a": + if ext != "o" and ext != "a" and ext != "so": out = changeextension(file, "o") args = ['-o', out, file] + compile_opts compile(args) |

