Skip to content

Latest commit

 

History

History
 
 

header_units

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

Instructions

  • convert the #include "Complex.hpp" to a header unit import
    • you will need to edit the Makefile and add a new target to precompile Complex.hpp
  • convert the standard library includes in randomize.cpp to header unit imports
    • you will need to precompile the standard library headers in your Makefile
    • with g++-11 and g++-12 you cannot yet precompile <iostream> and <ostream>, so keep those as a regular includes
  • below g++-12 you will get a linker error when building incrementally, so run make clean before each build