mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-25 13:24:46 +00:00
1. Use better error messages in LinkFiles().
2. I think the caller of LinkFiles() should not ignore a true return value. (If you have a good reason why it ought to, feel free to revert this. It's just something that's been bugging me for a while.) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8760 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -256,7 +256,8 @@ main(int argc, char **argv, char ** envp)
|
||||
Libraries.end());
|
||||
|
||||
// Link in all of the files
|
||||
LinkFiles(argv[0], Composite.get(), InputFilenames, Verbose);
|
||||
if (LinkFiles(argv[0], Composite.get(), InputFilenames, Verbose))
|
||||
return 1; // Error already printed
|
||||
LinkLibraries(argv[0], Composite.get(), Libraries, LibPaths, Verbose, Native);
|
||||
|
||||
// Link in all of the libraries next...
|
||||
|
Reference in New Issue
Block a user