tpjwm / compiler

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

build stuff for main project: cmake -S . -B build/

command for assembly stuff for testing directory: nasm -f elf64 test.asm && ld test.o -o test

debug mode because I haven't used c/c++ in too long:

g++ -g <file>

gdb <compiled file> then use break to set breakpoints either on specific lines or function names use p to display values, n to next, and s to step into layout src to see code in a window

About


Languages

Language:C++ 91.8%Language:CMake 5.4%Language:Assembly 2.8%