[lldb-dev] Reminder: Today is the deadline for 5.0.1 Merge Requests

2017-11-15 Thread Tom Stellard via lldb-dev
Hi, Today is the official deadline for making 5.0.1 merge requests. Any merge request made before the end of today is guaranteed to get into the 5.0.1 release if it is approved by the code owner and release manager. After today, I will still accept merge requests, but they must be approved by

[lldb-dev] lldb test suite on macOS 10.13 (High Sierra)

2017-11-15 Thread Pavel Labath via lldb-dev
Hello lldb-dev, We've just updated our mac buildbot to 10.13.1 (from 10.10.x), and we're having trouble with the lldb test suite. All of the tests are failing with the following error: /Users/lldb_build/lldbSlave/buildDir/llvm/tools/lldb/packages/Python/lldbsuite/test/crashinfo.c:15:10: fatal err

Re: [lldb-dev] lldb test suite on macOS 10.13 (High Sierra)

2017-11-15 Thread Pavel Labath via lldb-dev
On a somewhat tangential note: Is anyone actually using this crashinfo hook? It looks like this could be useful in the old dotest days, when we were running all of the tests in a single python process, but now with the parallel test runner spawning a new process for each test file and with piping

Re: [lldb-dev] lldb test suite on macOS 10.13 (High Sierra)

2017-11-15 Thread Jim Ingham via lldb-dev
Xcode and general development on macOS has moved from using headers in the base OS (/System/Library/Frameworks…) for building programs to using SDK’s to contain all the header files. The installed tools will know how to find the correct SDK. On a clean install of 10.13 there are no headers a

Re: [lldb-dev] lldb test suite on macOS 10.13 (High Sierra)

2017-11-15 Thread Pavel Labath via lldb-dev
Thanks for the reply, Jim. As far as I can tell, we already have Xcode on that machine (I only have shell access there). $ xcodebuild -version Xcode 9.1 Build version 9B55 $ xcode-select -version xcode-select version 2349. BTW, this is the list of Python.h files on that machine: /Library/Develop

Re: [lldb-dev] lldb test suite on macOS 10.13 (High Sierra)

2017-11-15 Thread Jim Ingham via lldb-dev
The build should be finding the version in the SDK within Xcode. I do have the CommandLineTools directory on my system, but it doesn’t have an SDK directory in it. I wonder if that is causing the problem? One thing to check, do: $ xcrun -find clang Does that find clang in the DeveloperTool