I have clang 10.0.0 for Windows installed from here
I also used the community VS installer to install 3 components that I understood were needed for clang 10:
clang itself works ok - I can compile, link with -fuse-ld=lld
, run some code with concepts, std::span
, looks good.
When I run lldb.exe
, I get:
..python36.dll was not found..
If I put python36.dll
on the path, I then get:
The application was unable to start correctly (0xc000007b)..
I'm learning C++, wanted to start using a debugger but I'm getting stuck here.
Do I need to install the entire Python 3.6 for this to work? (I have 3.8 already installed)
I needed the 64bit version of python36.dll
, got it from wikidll
User contributions licensed under CC BY-SA 3.0