This patch let the driver keep going until it parses all
command line options.
Details
Details
Diff Detail
Diff Detail
Event Timeline
| ELF/Driver.cpp | ||
|---|---|---|
| 68 | Fair. Done. | |
| ELF/Driver.cpp | ||
|---|---|---|
| 120 | This will not work. Problem is that searchLibrary() returns std::string which is destroyed after assigning buffer pointer to StringRef. Buffer is filled with garbage in debug and some tests under windows + msvs2015/debug were failing because of that. std::string Path = searchLibrary(Name); | |
This is a broken file case, I would leave it for another patch.