[PATCH] D51340: Add /Zc:DllexportInlines option to clang-cl
Hans Wennborg via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Mon Sep 10 05:49:17 PDT 2018
hans added inline comments.
================
Comment at: clang/lib/Driver/ToolChains/Clang.cpp:5244
+ false))
+ CmdArgs.push_back("-fvisibility-inlines-hidden");
+
----------------
takuto.ikuta wrote:
> hans wrote:
> > Huh, does this actually affect whether functions get dllexported or not?
> Sorry, what you want to ask?
>
> This will used to not add dllexport attr in L5690 of SemaDeclCXX.cpp.
>
Oops, I didn't see that. I'm glad to see this is looking so simple :-)
Actually, I don't think we should the same flag name for this, since "hidden" is an ELF concept, not a COFF one, just that we should match the behaviour of the flag.
Hmm, or do people use -fvisibility-inlines-hidden on MinGW or something? Where does the hidden-dllimport.cpp file come from?
Also, is it the case that -fvisibility-inlines-hidden just ignores the problem of static local variables? If that's the case we can probably do it too, we just have to be sure, and document it eventually.
https://reviews.llvm.org/D51340
More information about the cfe-commits
mailing list