Skip to content

Commit c03617d

Browse files
committed
Setup vs code and theia/gitpod for debugging rust"
1 parent e11285a commit c03617d

File tree

4 files changed

+39
-0
lines changed

4 files changed

+39
-0
lines changed

.gitpod.Dockerfile

+7
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,11 @@ RUN rm -rf ~/.rustup && \
1111
curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh && \
1212
rustup target add wasm32-unknown-unknown
1313

14+
RUN sudo apt-get -q update \
15+
&& sudo apt-get install -yq \
16+
libpython3.6 \
17+
rust-lldb \
18+
&& sudo rm -rf /var/lib/apt/lists/*
19+
ENV RUST_LLDB=/usr/bin/lldb-8
20+
1421
USER root

.gitpod.yml

+4
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
11
image:
22
file: .gitpod.Dockerfile
3+
4+
vscode:
5+
extensions:
6+
- [email protected]:vTh/rWhvJ5nQpeAVsD20QA==

.theia/launch.json

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
"version": "0.2.0",
5+
"configurations": [
6+
{
7+
"type": "lldb",
8+
"request": "launch",
9+
"name": "Debug Rust Code",
10+
//"preLaunchTask": "cargo",
11+
"program": "${workspaceFolder}/target/debug/rustpython",
12+
"cwd": "${workspaceFolder}",
13+
//"valuesFormatting": "parseText"
14+
}
15+
]
16+
}

.theia/settings.json

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"cpp.buildConfigurations": [
3+
{
4+
"name": "",
5+
"directory": ""
6+
},
7+
{
8+
"name": "",
9+
"directory": ""
10+
}
11+
]
12+
}

0 commit comments

Comments
 (0)