|< < 2 > >|

Announcements

Correction to A1 Makefile


.cpp.o: g++ -std=c++11 -Wall -Wno-unused-function -c -g$< -o $@
  • -g adds symbols to the compiled code.

  • Allows you to see line numbers in valgrind output.

|< < 2 > >|