2021-08-16 20:58:15 +02:00
|
|
|
{
|
|
|
|
// Use IntelliSense to learn about possible attributes.
|
|
|
|
// Hover to view descriptions of existing attributes.
|
|
|
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
|
|
"version": "0.2.0",
|
|
|
|
"configurations": [
|
|
|
|
{
|
2021-12-02 18:13:48 +01:00
|
|
|
"name": "Launch Super",
|
2021-08-16 20:58:15 +02:00
|
|
|
"type": "go",
|
|
|
|
"request": "launch",
|
|
|
|
"mode": "auto",
|
|
|
|
"program": "${workspaceFolder}",
|
2021-11-28 12:39:40 +01:00
|
|
|
"buildFlags": "-tags 'novpp'",
|
2021-08-24 10:43:55 +02:00
|
|
|
"env": {"CGO_CFLAGS":"-I/usr/include/memif"},
|
2021-12-05 22:36:50 +01:00
|
|
|
"args":["-config","example_config/super_mode/s1.yaml","-mode","super","-example"],
|
2021-12-02 18:13:48 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Launch Edge",
|
|
|
|
"type": "go",
|
|
|
|
"request": "launch",
|
|
|
|
"mode": "auto",
|
|
|
|
"program": "${workspaceFolder}",
|
|
|
|
"buildFlags": "-tags 'novpp'",
|
|
|
|
"env": {"CGO_CFLAGS":"-I/usr/include/memif"},
|
2021-12-05 22:36:50 +01:00
|
|
|
"args":["-config","example_config/super_mode/n1.yaml","-mode","edge","-example"],
|
2021-08-16 20:58:15 +02:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|