aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xutils/ccc2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/ccc b/utils/ccc
index 43ded02716..d999d2bfc7 100755
--- a/utils/ccc
+++ b/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)