File tree 4 files changed +39
-0
lines changed
4 files changed +39
-0
lines changed Original file line number Diff line number Diff line change @@ -11,4 +11,11 @@ RUN rm -rf ~/.rustup && \
11
11
curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh && \
12
12
rustup target add wasm32-unknown-unknown
13
13
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
+
14
21
USER root
Original file line number Diff line number Diff line change 1
1
image :
2
2
file : .gitpod.Dockerfile
3
+
4
+ vscode :
5
+ extensions :
6
+ -
[email protected] :vTh/rWhvJ5nQpeAVsD20QA==
Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change
1
+ {
2
+ "cpp.buildConfigurations" : [
3
+ {
4
+ "name" : " " ,
5
+ "directory" : " "
6
+ },
7
+ {
8
+ "name" : " " ,
9
+ "directory" : " "
10
+ }
11
+ ]
12
+ }
You can’t perform that action at this time.
0 commit comments