File tree 2 files changed +29
-7
lines changed
2 files changed +29
-7
lines changed Original file line number Diff line number Diff line change 8
8
"type" : " lldb" ,
9
9
"request" : " launch" ,
10
10
"name" : " Debug executable 'rustpython'" ,
11
- "cargo" : {
12
- "args" : [
13
- " build" ,
14
- " --package=rustpython"
15
- ],
16
- },
17
11
"preLaunchTask" : " Build RustPython Debug" ,
18
12
"program" : " target/debug/rustpython" ,
19
13
"args" : [],
22
16
},
23
17
"cwd" : " ${workspaceFolder}"
24
18
},
19
+ {
20
+ "type" : " lldb" ,
21
+ "request" : " launch" ,
22
+ "name" : " Debug executable 'rustpython' without SSL" ,
23
+ "preLaunchTask" : " Build RustPython Debug without SSL" ,
24
+ "program" : " target/debug/rustpython" ,
25
+ "args" : [],
26
+ "env" : {
27
+ "RUST_BACKTRACE" : " 1"
28
+ },
29
+ "cwd" : " ${workspaceFolder}"
30
+ },
25
31
{
26
32
"type" : " lldb" ,
27
33
"request" : " launch" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"version" : " 2.0.0" ,
3
3
"tasks" : [
4
+ {
5
+ "label" : " Build RustPython Debug without SSL" ,
6
+ "type" : " shell" ,
7
+ "command" : " cargo" ,
8
+ "args" : [
9
+ " build" ,
10
+ ],
11
+ "problemMatcher" : [
12
+ " $rustc" ,
13
+ ],
14
+ "group" : {
15
+ "kind" : " build" ,
16
+ "isDefault" : true ,
17
+ },
18
+ },
4
19
{
5
20
"label" : " Build RustPython Debug" ,
6
21
"type" : " shell" ,
7
22
"command" : " cargo" ,
8
23
"args" : [
9
24
" build" ,
25
+ " --features=ssl"
10
26
],
11
27
"problemMatcher" : [
12
28
" $rustc" ,
15
31
"kind" : " build" ,
16
32
"isDefault" : true ,
17
33
},
18
- }
34
+ },
19
35
],
20
36
}
You can’t perform that action at this time.
0 commit comments