rnk added a comment.

Unless I'm missing something, I think Clang's behavior here is preferable to 
MSVC's. MSVC produces code which will not link. Clang turns the linker error 
into a compiler error, which is generally easier for the user to understand. To 
my knowledge, it is still true that there is no COFF relocation which can 
statically initialize a global variable with the address of a dllimported 
symbol.

For the use case you are considering, how do things work out in practice? Is 
there some new import patching facility that I'm not aware of? Is the variable 
linked statically instead of dynamically, and then the linker relaxes the __imp 
references to direct references?


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D137107/new/

https://reviews.llvm.org/D137107

_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to