I know I have lldb installed (I used it yesterday for a project), but the make file can't find it. I made no changes to lldb, I just used the one that was installed with my mac when I got it. I checked and the binary for lldb is in /usr/bin/, which doesn't appear to be in the find_library function call in CMakeLists.txt. In case it's any help, here's the output from the command, and the result from CMakeOutput.log. Let me know if you need any further information. Thank you :)
Output
-- The CXX compiler identification is AppleClang 12.0.0.12000032
-- The C compiler identification is AppleClang 12.0.0.12000032
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: /Library/Developer/CommandLineTools/usr/bin/c++ - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /Library/Developer/CommandLineTools/usr/bin/cc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
CMake Error at CMakeLists.txt:36 (message):
LLDB not found
-- Configuring incomplete, errors occurred!
See also "/Users/matt/tools/lldbg/build/CMakeFiles/CMakeOutput.log".
If you have Xcode installed under a non-standard app name, it won't find it. Edit line 33 with the correct path and it should work – at least it did here.
I know I have lldb installed (I used it yesterday for a project), but the make file can't find it. I made no changes to lldb, I just used the one that was installed with my mac when I got it. I checked and the binary for lldb is in
/usr/bin/
, which doesn't appear to be in thefind_library
function call inCMakeLists.txt
. In case it's any help, here's the output from the command, and the result fromCMakeOutput.log
. Let me know if you need any further information. Thank you :)Output
Log