简体   繁体   中英

Call make from inside LLDB

I noticed that it is possible to call Gnu Make from gdb's prompt, but it does not work with lldb.

Is there a way to call to call make from lldb?

lldb has a platform shell command that you can use to run any single shell command. You could certainly use that to call make.

lldb also has a Python interpreter ( script ) and Python has pretty robust support for interacting with the system. So you can use that for fancier interactions.

It doesn't have support for any particular build system, however.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM