[PATCH] D27296: Don't assume mingw is providing SSP functions

Martin Storsjö via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Mar 20 00:49:17 PDT 2018


mstorsjo added a comment.

One small detail actually; you might want to check for isWindowsItaniumEnvironment() as well, since afaik that environment is supposed to link to MSVC libraries. So either `Subtarget.getTargetTriple().isWindowsMSVCEnvironment() || Subtarget.getTargetTriple().isWindowsItaniumEnvironment()` or `Subtarget.getTargetTriple().isOSMSVCRT() && !Subtarget.getTargetTriple().isWindowsGNUEnvironment()`.


Repository:
  rL LLVM

https://reviews.llvm.org/D27296





More information about the llvm-commits mailing list