Files
llvm/tools
Jordan Rupprecht e15daa3dfb [llvm-strip] Allow copying relocation sections without symbol tables.
Summary:
Fixes the error "Link field value 0 in section .rela.plt is invalid" when copying/stripping certain binaries. Minimal repro:

```
$ cat /tmp/a.c
int main() { return 0; }
$ clang -static /tmp/a.c -o /tmp/a
$ llvm-strip /tmp/a -o /tmp/b
llvm-strip: error: Link field value 0 in section .rela.plt is invalid.
```

Reviewers: jakehehrlich, alexshap

Subscribers: llvm-commits

Differential Revision: https://reviews.llvm.org/D51493

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@341419 91177308-0d34-0410-b5e6-96231b3b80d8
2018-09-04 22:28:49 +00:00
..
2018-06-23 19:04:10 +00:00
2018-07-23 18:09:43 +00:00
2018-04-29 00:45:03 +00:00
2018-04-25 18:06:23 +00:00
2018-07-20 17:27:48 +00:00