-
Notifications
You must be signed in to change notification settings - Fork 304
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using remote containers on ARMv64 (Jetson Nano) fails (wrongly installs vscode-server-linux-64) #1716
Comments
Excuse me but why is this a feature request and not a bug? For sure it is possible to do remote development (SSH) with VSCODE INSIDERS on arm64 architecture, therefore same version vscode remote development could be deployed inside container. Because of that, its just a matter of install script (choosing correct install package (arm64 over x64) during development container deployment. |
Adding support for ARM64 in Insiders and ARM32 in general. |
Verification using emulators:
Then attach to the two containers with Remote-Containers. |
ARM64 will be enabled in the next VS Code stable release too. |
using docker run -it --rm --gpus all arm64v8/ubuntu then attaching vscode insider 1.41.0 to this container results in error : |
@hlacik Please check you are running the latest version of the extension (currently 0.86.0). Maybe you attached to the same container with an earlier version of the extension. If so, try deleting the |
Oh, so after TODAY insider update 1.41.0-1575351432 it finally works , your awesome guys, right on time, I have one week before project delivery (running on nvidia jetson nano) and I can finally remote debug inside containers running there. |
Looks like this is verified by the original issue filer! |
Steps to Reproduce:
Create local devcontainer.json
{
"image": "ubuntu",
"workspaceFolder": "/pcrdev",
"workspaceMount": "src=pcrdev,dst=/pcrdev,type=volume,volume-driver=local"
}
Launch Remote-Containers Open Folder in Containers
Wait during Installing Dev Container, Copying VSCode Server to container
Wrong extension architecture is installed (x64 instead of ARMv64)
However when using Just Remote SSH Development, correct version of vscode-server is installed (ARMv64) so this bug is valid only for remote containers on ARMv64
The text was updated successfully, but these errors were encountered: