diff options
| author | Rui Ueyama <ruiu@google.com> | 2019-02-11 22:01:32 +0000 |
|---|---|---|
| committer | Rui Ueyama <ruiu@google.com> | 2019-02-11 22:01:32 +0000 |
| commit | 016833bac2da972c1c9753cde2ff949e06dc5908 (patch) | |
| tree | 43b0a42c18163390fcce1622826f28d41cc5dc8c | |
| parent | 72a0f4e8db404d1978138279bfcabceea9446d35 (diff) | |
| download | bcm5719-llvm-016833bac2da972c1c9753cde2ff949e06dc5908.tar.gz bcm5719-llvm-016833bac2da972c1c9753cde2ff949e06dc5908.zip | |
lld: unquote possibly quoted `EXTERN("symbol")` entry in linker script.
gold accepts quoted strings. binutils requires quoted strings for some
kinds of symbols, e.g.:
it accepts quoted symbols with @ in name:
$ echo 'EXTERN("__libc_start_main@@GLIBC_2.2.5")' > a.script
$ g++ a.script
/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/crt1.o: In function `_start':
(.text+0x20): undefined reference to `main'
collect2: error: ld returned 1 exit status
but rejects them if unquoted:
$ echo 'EXTERN(__libc_start_main@@GLIBC_2.2.5)' > a.script
$ g++ a.script
a.script: file not recognized: File format not recognized
collect2: error: ld returned 1 exit status
To maintain compatibility with existing linker scripts support quoted
strings in lld as well.
Patch by Lucian Adrian Grijincu.
Differential Revision: https://reviews.llvm.org/D57987
llvm-svn: 353756
| -rw-r--r-- | lld/ELF/ScriptParser.cpp | 2 | ||||
| -rw-r--r-- | lld/test/ELF/linkerscript/linkerscript.s | 2 | ||||
| -rw-r--r-- | lld/test/ELF/undefined-opt.s | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/lld/ELF/ScriptParser.cpp b/lld/ELF/ScriptParser.cpp index a33e92b0700..a072b5a5296 100644 --- a/lld/ELF/ScriptParser.cpp +++ b/lld/ELF/ScriptParser.cpp @@ -329,7 +329,7 @@ void ScriptParser::readEntry() { void ScriptParser::readExtern() { expect("("); while (!errorCount() && !consume(")")) - Config->Undefined.push_back(next()); + Config->Undefined.push_back(unquote(next())); } void ScriptParser::readGroup() { diff --git a/lld/test/ELF/linkerscript/linkerscript.s b/lld/test/ELF/linkerscript/linkerscript.s index 39d2d4620a4..5e1cf27f076 100644 --- a/lld/test/ELF/linkerscript/linkerscript.s +++ b/lld/test/ELF/linkerscript/linkerscript.s @@ -3,7 +3,7 @@ # RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux \ # RUN: %p/Inputs/libsearch-st.s -o %t2.o -# RUN: echo "EXTERN( undef undef2 )" > %t.script +# RUN: echo "EXTERN( undef undef2 \"undef3\" \"undef4@@other\")" > %t.script # RUN: ld.lld %t -o %t2 %t.script # RUN: llvm-readobj %t2 > /dev/null diff --git a/lld/test/ELF/undefined-opt.s b/lld/test/ELF/undefined-opt.s index 9e93e0fdce4..26899542767 100644 --- a/lld/test/ELF/undefined-opt.s +++ b/lld/test/ELF/undefined-opt.s @@ -40,7 +40,7 @@ # TWO-UNDEFINED: Name: zed # TWO-UNDEFINED: ] # Now the same logic but linker script is used to set undefines -# RUN: echo "EXTERN( bar abs )" > %t.script +# RUN: echo "EXTERN( bar \"abs\" )" > %t.script # RUN: ld.lld -o %t3 %t.o %tar.a %t.script # RUN: llvm-readobj --symbols %t3 | FileCheck --check-prefix=TWO-UNDEFINED %s |

