I am running following program using command
gcc filename.c -o filename.exe
and it shows error
"AppData/Local/Temp/cc4rF2ac.o:filename.c:(.text+0xd4): undefined reference to LAPACKE_dgels' collect2.exe: error: ld returned 1 exit status"
    /* Calling DGELS using column-major order */
#include <stdio.h>
#include <stdlib.h>
#include <lapacke.h>
#include <math.h>
lapack_int main (int argc, const char * argv[])
{
   double a[5*3] = {1,2,3,4,5,1,3,5,2,4,1,4,2,5,3};
   double b[5*2] = {-10,12,14,16,18,-3,14,12,16,16};
   lapack_int info,m,n,lda,ldb,nrhs;
   int i,j;
   m = 5;
   n = 3;
   nrhs = 2;
   lda = 5;
   ldb = 5;
   info = LAPACKE_dgels(LAPACK_COL_MAJOR,'N',m,n,nrhs,a,lda,b,ldb);
   for(i=0;i<n;i++)
   {
      for(j=0;j<nrhs;j++)
      {
         printf("%lf ",b[i+ldb*j]);
      }
      printf("\n");
   }
   return(info);
}
 
     
    