[PATCH] D45662: Fuzzer, add libcxx for OpenBSD

David CARLIER via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Sun Apr 15 22:16:03 PDT 2018


devnexen added inline comments.


================
Comment at: lib/Driver/ToolChains/CommonArgs.cpp:678-679
       TC.AddCXXStdlibLibArgs(Args, CmdArgs);
+      if (TC.getTriple().getOS() == llvm::Triple::OpenBSD)
+        CmdArgs.push_back(Args.hasArg(options::OPT_pg) ? "-lc++_p" : "-lc++");
+    }
----------------
dberris wrote:
> Maybe this should be in the `TC.AddCXXStdlibLibArgs(...)` function instead?
I did not dare since it s the only case where it is needed (e.g. no need for X-ray for example)


Repository:
  rC Clang

https://reviews.llvm.org/D45662





More information about the cfe-commits mailing list