-
Notifications
You must be signed in to change notification settings - Fork 6.3k
-
I'm running code-server(It's the latest version) on my x86 Linux server.
I have installed the extension named "C/C++ Compile Run".
(Both from the vsc official market by vsix file and from your market I've try)
But the extension always download the file for ARM64 for me,
image
It cannot run on my x86 server, so the extension showed me the language server has crashed.
image
I don't know how to make it works without replacing the wrong file, I want it can download the correct file.
So, could you please tell me what should I do? Need I submit an issue to the extension program?
(I'm a Chinese student, so maybe my English is too poor to express it clearly,I'm very sorry about it.
You can ask it to me at any time if there is any unclear statement, Thx!)
I've tried on another x86 server, it's also cannot run.
Beta Was this translation helpful? Give feedback.
All reactions
Im using a Docker container to run code-server 3.10.2 using cdr/deploy-code-server on https://railway.app. I ran into the same problem but with the C/C++ Support extension from Microsoft. Instead of manually downloading and installing everytime, I added this to my Dockerfile:
RUN sudo apt-get install --no-install-recommends -y wget RUN sudo wget https://github.com/microsoft/vscode-cpptools/releases/download/1.4.1/cpptools-linux.vsix -P /home/coder/vsix/ RUN code-server --install-extension /home/coder/vsix/cpptools-linux.vsix
Replies: 2 comments 1 reply
-
Ah yup our marketplace has an issue right now: #2120
I think the easiest workaround is to go to the releases page on GitHub and download cpptools-linux.vsix: https://github.com/microsoft/vscode-cpptools/releases
Beta Was this translation helpful? Give feedback.
All reactions
-
Got it,thank you.
Beta Was this translation helpful? Give feedback.
All reactions
-
Im using a Docker container to run code-server 3.10.2 using cdr/deploy-code-server on https://railway.app. I ran into the same problem but with the C/C++ Support extension from Microsoft. Instead of manually downloading and installing everytime, I added this to my Dockerfile:
RUN sudo apt-get install --no-install-recommends -y wget RUN sudo wget https://github.com/microsoft/vscode-cpptools/releases/download/1.4.1/cpptools-linux.vsix -P /home/coder/vsix/ RUN code-server --install-extension /home/coder/vsix/cpptools-linux.vsix
Beta Was this translation helpful? Give feedback.