You've already forked it9910hd_fusefs
mirror of
https://github.com/marek-g/it9910hd_fusefs.git
synced 2026-05-06 02:11:10 +09:00
Rename workspaceRoot to workspaceFolder, as the former has been deprecated. Add "workspaceFolder" back in as environment variable (needed due to the SELinux workaround used).
This commit is contained in:
@@ -21,6 +21,10 @@
|
|||||||
"--volume=${localWorkspaceFolder}:/workspaces/${localWorkspaceFolderBasename}:Z"
|
"--volume=${localWorkspaceFolder}:/workspaces/${localWorkspaceFolderBasename}:Z"
|
||||||
],
|
],
|
||||||
|
|
||||||
|
"containerEnv": {
|
||||||
|
"workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}",
|
||||||
|
},
|
||||||
|
|
||||||
// Set *default* container specific settings.json values on container create.
|
// Set *default* container specific settings.json values on container create.
|
||||||
"settings": {
|
"settings": {
|
||||||
"lldb.executable": "/usr/bin/lldb",
|
"lldb.executable": "/usr/bin/lldb",
|
||||||
|
|||||||
5
.vscode/launch.json
vendored
5
.vscode/launch.json
vendored
@@ -5,11 +5,12 @@
|
|||||||
"name": "it9910hd_fusefs",
|
"name": "it9910hd_fusefs",
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
"type": "gdb",
|
"type": "gdb",
|
||||||
"target": "${workspaceRoot}/target/debug/it9910hd_fusefs",
|
"target": "${workspaceFolder}/target/debug/it9910hd_fusefs",
|
||||||
"cwd": "${workspaceRoot}",
|
"cwd": "${workspaceFolder}",
|
||||||
"env": {
|
"env": {
|
||||||
"RUST_BACKTRACE": "1"
|
"RUST_BACKTRACE": "1"
|
||||||
},
|
},
|
||||||
|
"arguments": "./video",
|
||||||
"preLaunchTask": "build_it9910hd_fusefs"
|
"preLaunchTask": "build_it9910hd_fusefs"
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
|
|||||||
Reference in New Issue
Block a user