I use the Intel C++ compiler icpc, I have some problems with the following operations.
I made the compilation:
icpc -c matrix.cpp matrix.h
I got the object file matrix.o
I then made the compilation:
icpc -c main.cpp matrix.h
I got the object file main.o
I try to make these two files together to make the executable file by the following operation:
icpc main.o matrix.o -o main
