Handle OUTPUT_FORMAT arguments in quotation marks

llvm-svn: 346068
This commit is contained in:
Galina Kistanova 2018-11-03 05:25:49 +00:00
parent 3c617b2c23
commit 4ec5d67e49
2 changed files with 7 additions and 1 deletions

View File

@ -384,7 +384,7 @@ void ScriptParser::readOutputArch() {
}
std::pair<ELFKind, uint16_t> ScriptParser::readBfdName() {
StringRef S = next();
StringRef S = unquote(next());
if (S == "elf32-i386")
return {ELF32LEKind, EM_386};
if (S == "elf32-iamcu")

View File

@ -61,3 +61,9 @@
# RUN: llvm-readobj %t.out -sections -section-data -symbols | FileCheck -check-prefix=X86-64 %s
# X86-64: Format: ELF64-x86-64
# RUN: echo 'OUTPUT_FORMAT("elf64-x86-64")' > %t.script
# RUN: ld.lld -b binary %t.binary -T %t.script -o %t.out
# RUN: llvm-readobj %t.out -sections -section-data -symbols | FileCheck -check-prefix=X86-64-in-quotes %s
# X86-64-in-quotes: Format: ELF64-x86-64