diff options
author | Daniel Dunbar <daniel@zuster.org> | 2008-11-18 17:38:30 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2008-11-18 17:38:30 +0000 |
commit | ad90855730f85eed01a7be71f2648ba6be2e36c5 (patch) | |
tree | 6839f10617bf3b4cf3523b62fc04fae43da77852 | |
parent | 1403f404da844e4967c4677965e42805b78ce603 (diff) | |
download | bcm5719-llvm-ad90855730f85eed01a7be71f2648ba6be2e36c5.tar.gz bcm5719-llvm-ad90855730f85eed01a7be71f2648ba6be2e36c5.zip |
Input files should be before link options.
- PR3094.
- No test case, ccc is not really a supported product (llvmc2 already
got this right).
llvm-svn: 59535
-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 96548553eab..1a7fea415a4 100755 --- a/clang/utils/ccc +++ b/clang/utils/ccc @@ -407,7 +407,7 @@ def main(args): files[i] = out if not output: output = 'a.out' - args = ['-o', output] + link_opts + files + args = ['-o', output] + files + link_opts link(args, native) if __name__ == '__main__': |