forked from OSchip/llvm-project
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
This commit is contained in:
parent
1403f404da
commit
ad90855730
|
|
@ -407,7 +407,7 @@ def main(args):
|
||||||
files[i] = out
|
files[i] = out
|
||||||
if not output:
|
if not output:
|
||||||
output = 'a.out'
|
output = 'a.out'
|
||||||
args = ['-o', output] + link_opts + files
|
args = ['-o', output] + files + link_opts
|
||||||
link(args, native)
|
link(args, native)
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue