mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-14 16:33:28 +00:00
Add support for allowing the user to extend the GCCLD searchpath
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5825 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
085c801dee
commit
d34a51dbbe
@ -294,6 +294,10 @@ int main(int argc, char **argv) {
|
||||
if (Composite.get() == 0)
|
||||
return PrintAndReturn(argv[0], ErrorMessage);
|
||||
|
||||
// If the user specied an extra search path in their environment, respect it.
|
||||
if (char *SearchPath = getenv("LLVM_LIB_SEARCH_PATH"))
|
||||
LibPaths.push_back(SearchPath);
|
||||
|
||||
for (unsigned i = 1; i < InputFilenames.size(); ++i) {
|
||||
std::auto_ptr<Module> M(LoadObject(InputFilenames[i], ErrorMessage));
|
||||
if (M.get() == 0)
|
||||
|
Loading…
x
Reference in New Issue
Block a user