@@ -329,6 +329,7 @@ pub struct Config {
329
329
pub nodejs : Option < PathBuf > ,
330
330
pub npm : Option < PathBuf > ,
331
331
pub gdb : Option < PathBuf > ,
332
+ pub lldb : Option < PathBuf > ,
332
333
pub python : Option < PathBuf > ,
333
334
pub reuse : Option < PathBuf > ,
334
335
pub cargo_native_static : bool ,
@@ -832,6 +833,7 @@ define_config! {
832
833
docs_minification: Option <bool > = "docs-minification" ,
833
834
submodules: Option <bool > = "submodules" ,
834
835
gdb: Option <String > = "gdb" ,
836
+ lldb: Option <String > = "lldb" ,
835
837
nodejs: Option <String > = "nodejs" ,
836
838
npm: Option <String > = "npm" ,
837
839
python: Option <String > = "python" ,
@@ -1408,6 +1410,7 @@ impl Config {
1408
1410
docs_minification,
1409
1411
submodules,
1410
1412
gdb,
1413
+ lldb,
1411
1414
nodejs,
1412
1415
npm,
1413
1416
python,
@@ -1500,6 +1503,7 @@ impl Config {
1500
1503
config. nodejs = nodejs. map ( PathBuf :: from) ;
1501
1504
config. npm = npm. map ( PathBuf :: from) ;
1502
1505
config. gdb = gdb. map ( PathBuf :: from) ;
1506
+ config. lldb = lldb. map ( PathBuf :: from) ;
1503
1507
config. python = python. map ( PathBuf :: from) ;
1504
1508
config. reuse = reuse. map ( PathBuf :: from) ;
1505
1509
config. submodules = submodules;
0 commit comments