The usage of expression templates sometimes increases the compilation time. To avoid this, one can develop a program without any optimization parameters in the makefile . After that one apply optimization parameters like -O3 in the makefile instead of the parameter -g .
Furthermore, the library can be compiled in a developer version, which is slower but which provides the user of the library with additional informations during runtime. This version can be obtained by compiling with the option
-DDEVELOP
The
example makefile can be applied for different files main.cc .
Last modified: Wed Feb 9 12:52:11 MET 2000