-
Notifications
You must be signed in to change notification settings - Fork 650
Linux_Setup
Bharathgopal edited this page Mar 12, 2021
·
1 revision
- Visula Studio Code for compiling and debuggin the code.
- Compiling and running without IDE
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install build-essential
- Compiling and running
gcc filename.c -o outputname.out
./outputname.out
- Make for automating the build
sudo apt-get install cmake
sudo apt-get install valgrind
- Memory Sanitization using gcc and -fsanitize option