This reverts commit 2354cd73101e58540b8b39783df462d06023309f as it
introduced a bunch regressions on the linux bot.
Details
Diff Detail
Event Timeline
Actually, I do not have time today to do a better job with digging and have to resort to reverting.
Could you please reference a hyperlink to the breakage? Have we got some mailing list to monitor it? Jumping over logs in waterfall isn't much convenient.
Agreed, when a CL is reverted due to a buildbot breakage, please include a
link to the failing bot in the commit message of the revert.
If anyone hasn't found the link yet. it's http://lab.llvm.org:8011/builders/lldb-x86_64-ubuntu-14.04-cmake/builds/8653. There is no mailing list but you can monitor the webpage containing all builtbots. They are not sending out blame emails, as the tests are not passing 100% reliably (yet). We could add you to the opt-in list which we receive, but you'll probably regret that soon ;).
Thank you, I was looking rather for build problems.. I will need to get Linux to try it out.
At first thought I don't see relevance of NetBSD platform code to trigger asserts in the aux path.
The problem is that in PlatformNetBSD::Initialize you call
Platform::SetHostPlatform unconditionally. You want to
call Platform::SetHostPlatform only if we are running on NetBSD so you have
to surround it with some conditional compilation (see example in
PlatformLinux::Initialize)
I've pasted a diff to address this regression as http://reviews.llvm.org/D14876
Please readd NetBSD platform connectors again and see what will happen.
This commit will possible break Xcode too.. but I cannot do anything with it. I will leave it to MacOSX owners.