Skip to content
  • Adhemerval Zanella's avatar
    ELF: Implement --dynamic-list · 9df07207
    Adhemerval Zanella authored
    This patch implements the --dynamic-list option, which adds a list of
    global symbol that either should not be bounded by default definition
    when creating shared libraries, or add in dynamic symbol table in the
    case of creating executables.
    
    The patch modifies the ScriptParserBase class to use a list of Token
    instead of StringRef, which contains information if the token is a
    quoted or unquoted strings. It is used to use a faster search for
    exact match symbol name.
    
    The input file follow a similar format of linker script with some
    simplifications (it does not have scope or node names). It leads
    to a simplified parser define in DynamicList.{cpp,h}.
    
    Different from ld/gold neither glob pattern nor mangled names
    (extern 'C++') are currently supported.
    
    llvm-svn: 266227
    9df07207
Loading