Skip to content

Commit 50d3995

Browse files
committed
fix lldb can't load embedded.interpreter problem
1 parent fe988c1 commit 50d3995

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.devcontainer/Dockerfile

+4-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ RUN git pull \
5858
ARG WASI_SDK_VER=24
5959
RUN wget -c --progress=dot:giga https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-${WASI_SDK_VER}/wasi-sdk-${WASI_SDK_VER}.0-x86_64-linux.tar.gz -P /opt \
6060
&& tar xf /opt/wasi-sdk-${WASI_SDK_VER}.0-x86_64-linux.tar.gz -C /opt \
61-
&& ln -sf /opt/wasi-sdk-${WASI_SDK_VER}.0 /opt/wasi-sdk \
61+
&& ln -sf /opt/wasi-sdk-${WASI_SDK_VER}.0-x86_64-linux /opt/wasi-sdk \
6262
&& rm /opt/wasi-sdk-${WASI_SDK_VER}.0-x86_64-linux.tar.gz
6363

6464
#
@@ -168,6 +168,9 @@ ENV PATH="/opt/codeql:${PATH}"
168168

169169
# set path
170170
ENV PATH="/home/vscode/.opam/default/bin:/opt/bazelisk:/usr/lib/llvm-${LLVM_VER}/bin:${PATH}"
171+
172+
ENV PYTHONPATH="/usr/lib/llvm-14/lib/python3.10/dist-packages/"
173+
171174
# clean
172175
RUN apt-get autoremove -y \
173176
&& apt-get clean -y \

0 commit comments

Comments
 (0)