Skip to content
  • Rui Ueyama's avatar
    f5c4aca9
    ELF2: Add basic linker script support. · f5c4aca9
    Rui Ueyama authored
    This linker script parser and evaluator is powerful enough to read
    Linux's libc.so, which is (despite its name) a linker script that
    contains OUTPUT_FORMAT, GROUP and AS_NEEDED directives.
    
    The parser implemented in this patch is a recursive-descendent one.
    It does *not* construct an AST but consumes directives in place and
    sets the results to Symtab object, like what Driver is doing.
    This should be very fast since less objects are allocated, and
    this is also more readable.
    
    http://reviews.llvm.org/D13232
    
    llvm-svn: 248918
    f5c4aca9
    ELF2: Add basic linker script support.
    Rui Ueyama authored
    This linker script parser and evaluator is powerful enough to read
    Linux's libc.so, which is (despite its name) a linker script that
    contains OUTPUT_FORMAT, GROUP and AS_NEEDED directives.
    
    The parser implemented in this patch is a recursive-descendent one.
    It does *not* construct an AST but consumes directives in place and
    sets the results to Symtab object, like what Driver is doing.
    This should be very fast since less objects are allocated, and
    this is also more readable.
    
    http://reviews.llvm.org/D13232
    
    llvm-svn: 248918
Loading