[PATCH] D21556: [ELF] - Implemented version script hierarchies.

George Rimar via llvm-commits llvm-commits at lists.llvm.org
Tue Jun 21 07:44:24 PDT 2016


grimar created this revision.
grimar added reviewers: ruiu, rafael.
grimar added subscribers: llvm-commits, grimar.

Patch implements hierarchies for version scripts. 
This allows to handle script files with dependencies, like next one has:

```
LIBSAMPLE_1.0{
  global:
  a;
};

LIBSAMPLE_2.0
{
  global:
  b;
}LIBSAMPLE_1.0;
```

http://reviews.llvm.org/D21556

Files:
  ELF/Config.h
  ELF/OutputSections.cpp
  ELF/SymbolListFile.cpp
  test/ELF/verdef-dependency.s

-------------- next part --------------
A non-text attachment was scrubbed...
Name: D21556.61371.patch
Type: text/x-patch
Size: 5132 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20160621/b43d99bf/attachment.bin>


More information about the llvm-commits mailing list