Preparation for working with DSPElib using Visual Studio Code
- Visual Studio code – basic installation
- Add C++ support (see: https://code.visualstudio.com/docs/languages/cpp)
- C/C++ IntelliSense, debugging, and code browsing
- Assumes use of GCC
- some versions have been successfully compiled with Visual Studio 2019
- on Windows just like in Linux it has been mostly used with gcc compilers
- for example compiler provided with https://code.visualstudio.com/docs/cpp/config-mingw
- .vscode folder in the workspace contains configurations for VSC
- (Windows) MSYS (v.2 is better choice)
- MSYS v.1.0: https://sourceforge.net/projects/mingw/files/MSYS/Base/msys-core/msys-1.0.11/MSYS-1.0.11.exe/download?use_mirror=kumisystems
- MSYS2: https://www.msys2.org/
- install msys2 (64bit)
- in MSYS2 terminal
- pacman -Syuu
- => restart msys2
- pacman -Sy
- pacman -S make
- update path to msys (for example: C:\msys64\usr\bin\) in in system path or *.bat file
- MinGW-w64 GCC (provided with MSYS2)
- pacman -S --needed base-devel mingw-w64-x86_64-toolchain
- update path to gcc (for example: C:\msys64\mingw\bin\) in in system path or *.bat file
- If msys and gcc are not in system path
-
(version 1) run_VScode.bat (run_VScode.bat)
- Script setups paths (MinGW gcc and MSys) and runs VS Code
- This allows avoiding setting global system paths and using different compiler sets but might not work in certain configurations
-
(version 2) update path in .vscode/tasks.json
"options": { "cwd": "${workspaceFolder}", "env": {"PATH":"c:/msys64/usr/bin;c:/msys64/mingw64/bin/;${env:PATH}"} },
-
(version 1) run_VScode.bat (run_VScode.bat)
- Open folder: d:\Eclipse_Mars\git_folder\DSPElib\DSPE_lib\src\
- .vscode/c_cpp_properties.json – C++ configurations
- https://code.visualstudio.com/docs/cpp/c-cpp-properties-schema-reference
- The status bar in VS Code will show you which configuration is active. You can also click on the label in the status bar to change the active configuration.
- first in status bar setup C++
- .vscode/tasks.json
- compilation tasks configurations
- Compilation:
- in menu choose Terminal > Run Task... to select compilation task
- Ctrl+Shift+B - default compilation task
- Compilation actions depend on C++ language configuration (e.g. Windows64-Debug)
- Compilation actions:
- Build DSPElib - debug/release compilation based on C++ language configuration
- Clean DSPElib - clears both debug and release tmp compilation folders
- Install DSPElib - compile both Debug and Release and copy library files to DSPE_lib_minGW folder
- build examples Windows/Linux (requires/depends on last "Install DSPElib")
- clean examples Windows/Linux
- Debugging
- Linux
- sudo apt install libasound2
- sudo apt-get install libasound2-dev
- git
- git config --global user.email "me@example.com"
- git config --global user.name "Your Name and Surname"
- Wiki