-
Notifications
You must be signed in to change notification settings - Fork 19
Installation of Docker, VSCode and its extensions
Yulei Sui edited this page Mar 12, 2022
·
5 revisions
-
Install Docker
- To know more about Docker - 12 mins video to understand Docker:YouTube Bilibili
- If you have installation problems on Windows. Please refer to windows-docker-problem-solutions
-
Install VSCode
- For further using and learning VSCode - Learn to code with VSCode
- If you are using M1-chip machine and need debug/step-in your machine, please refer to GCP and M1-build then follow this wiki later.
*To install the extension, open the Extensions view (MAC: ⇧⌘X, Windows: Ctrl+Shift+X, Linux: Ctrl+Shift+X)
- Extension(1): Docker extension
- Search for
docker
to filter results and select Docker extension authored by Microsoft.
- Search for
- Extension(2): Remote Containers extension
- Search for
remote container
to filter results and select extension authored by Microsoft.
- Search for
docker pull svftools/teaching-software-verification:latest
-
Mac & Linux:
docker run -itd svftools/teaching-software-verification:latest /bin/bash
-
Windows:
docker run -itd svftools/teaching-software-verification:latest
For further reading and using Docker: Build docker image of the Teaching-Software-Verification project using Dockerfile
Right click the container item and select 'Attach to Visual Studio Code'
If you can't see the working directory, please select file -> open (folder)...
then enter the /home/SVF-tools/Teaching-Software-Verification
- To install the extension, open the Extensions view (MAC: ⇧⌘X, Windows: Ctrl+Shift+X, Linux: Ctrl+Shift+X)
- VSCode's built-in debugger helps your editing, compilation and debugging.
- SVF-Teaching has prepared configurations in
launch.json
to debug hello.cpp - Take a look at this page which contains several troubleshooting when configuring VSCode debugging environment.
- More information VSCode-debugging
When working on different assignments, change the "program"
field in launch.json
(line 8). Values can be assign-1
for Assignment 1, assign-2
for Assignment 2, assign-3
for Assignment 3, assign-4
for Assignment 4, hello
for the hello world program, and codegraph
for the code graph project.