We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89da6bb commit 7eaf3d4Copy full SHA for 7eaf3d4
lld/ELF/DriverUtils.cpp
@@ -141,7 +141,7 @@ std::string elf::createResponseFile(const opt::InputArgList &Args) {
141
142
// Copy the command line to the output while rewriting paths.
143
for (auto *Arg : Args) {
144
- switch (Arg->getOption().getID()) {
+ switch (Arg->getOption().getUnaliasedOption().getID()) {
145
case OPT_reproduce:
146
break;
147
case OPT_INPUT:
@@ -157,7 +157,6 @@ std::string elf::createResponseFile(const opt::InputArgList &Args) {
157
case OPT_L:
158
case OPT_dynamic_list:
159
case OPT_rpath:
160
- case OPT_alias_script_T:
161
case OPT_script:
162
case OPT_version_script:
163
OS << Arg->getSpelling() << " " << quote(rewritePath(Arg->getValue()))
0 commit comments