Forward #pragma comment(lib/linker) through as flags metadata
Summary: Most of this change is wiring the pragma all the way through from the lexer, parser, and sema to codegen. I considered adding a Decl AST node for this, but it seemed too heavyweight. Mach-O already uses a metadata flag called "Linker Options" to do this kind of auto-linking. This change follows that pattern. LLVM knows how to forward the "Linker Options" metadata into the COFF .drectve section where these flags belong. ELF support is not implemented, but possible. This is related to auto-linking, which is http://llvm.org/PR13016. CC: cfe-commits Differential Revision: http://llvm-reviews.chandlerc.com/D723 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@181426 91177308-0d34-0410-b5e6-96231b3b80d8
Showing
- include/clang/AST/ASTConsumer.h 11 additions, 0 deletionsinclude/clang/AST/ASTConsumer.h
- include/clang/Parse/Parser.h 4 additions, 0 deletionsinclude/clang/Parse/Parser.h
- include/clang/Sema/Sema.h 13 additions, 0 deletionsinclude/clang/Sema/Sema.h
- lib/CodeGen/CodeGenAction.cpp 8 additions, 0 deletionslib/CodeGen/CodeGenAction.cpp
- lib/CodeGen/CodeGenModule.cpp 30 additions, 15 deletionslib/CodeGen/CodeGenModule.cpp
- lib/CodeGen/CodeGenModule.h 9 additions, 0 deletionslib/CodeGen/CodeGenModule.h
- lib/CodeGen/ModuleBuilder.cpp 9 additions, 0 deletionslib/CodeGen/ModuleBuilder.cpp
- lib/CodeGen/TargetInfo.cpp 30 additions, 2 deletionslib/CodeGen/TargetInfo.cpp
- lib/CodeGen/TargetInfo.h 6 additions, 0 deletionslib/CodeGen/TargetInfo.h
- lib/Parse/ParsePragma.cpp 16 additions, 7 deletionslib/Parse/ParsePragma.cpp
- lib/Parse/ParsePragma.h 4 additions, 1 deletionlib/Parse/ParsePragma.h
- lib/Parse/Parser.cpp 1 addition, 1 deletionlib/Parse/Parser.cpp
- lib/Sema/SemaAttr.cpp 21 additions, 0 deletionslib/Sema/SemaAttr.cpp
- test/Modules/autolink.m 1 addition, 1 deletiontest/Modules/autolink.m
Loading
Please register or sign in to comment