[PATCH] D77776: [Driver] Default to libc++ on FreeBSD

2021-10-23 Thread Greg V via Phabricator via cfe-commits
myfreeweb added a comment. Herald added a subscriber: pengfei. It's been over a year and no solutions have been merged! The problem just popped up again in Firefox after a pull. With clang 13.0, and the discussion above was before 11.0 release >_< Can someone commit something already?! Reposi

[PATCH] D77776: [Driver] Default to libc++ on FreeBSD

2020-07-31 Thread Greg V via Phabricator via cfe-commits
myfreeweb added a comment. In D6#2187273 , @dim wrote: >> +#ifdef __FreeBSD__ >> +return __FreeBSD_version / 10; >> +#else >> +return 10; >> +#endif > > No, that would hardcode something at build time. We need to respect whatever

[PATCH] D77776: [Driver] Default to libc++ on FreeBSD

2020-07-31 Thread Greg V via Phabricator via cfe-commits
myfreeweb added a comment. ping. can we get *some* solution to this included in llvm 11.0 final release? Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D6/new/ https://reviews.llvm.org/D6 ___ cfe-c

[PATCH] D74765: [compiler-rt] Addd FreeBSD arm64 sanitizer support

2020-04-25 Thread Greg V via Phabricator via cfe-commits
myfreeweb added a comment. With TBI enabled in the system , HWASAN should also work, I've had it running some time ago Comment at: compiler-rt/lib/sanitizer_common/sanitizer_linux.cpp:1836 return fsr & FSR_WRITE ? WRITE : READ; -#elif def

[PATCH] D77776: [Driver] Drop support for FreeBSD < 10

2020-04-11 Thread Greg V via Phabricator via cfe-commits
myfreeweb added a comment. > But the default should indeed be either the host version yep, I've had this patch: --- lib/Support/Triple.cpp.orig 2020-04-10 20:51:46 UTC +++ lib/Support/Triple.cpp @@ -14,6 +14,9 @@ #include "llvm/Support/Host.h" #include "llvm/Support/TargetParse