<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Problem installing siesta software on UNix in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-installing-siesta-software-on-UNix/m-p/942630#M14601</link>
    <description>&lt;DIV&gt;I am trying to install a software siesta on Unix. We have itel fortran compiler installed. we also have scalapack and Blacs installed. Here is the error I get.&lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt; /opt/intel/mkl/8.0/lib/32/libmkl_lapack95.a /opt/intel/mkl/8.0/lib/32/libmkl_blas95.a /opt/intel/mkl/8.0/lib/32/libguide.a -lpthread &lt;BR /&gt;IPO Error: unresolved : dgetrf_&lt;BR /&gt; Referenced in inver.o&lt;BR /&gt;IPO Error: unresolved : dgetri_&lt;BR /&gt; Referenced in inver.o&lt;BR /&gt;IPO Error: unresolved : zscal_&lt;BR /&gt; Referenced in linpack.o&lt;BR /&gt;IPO Error: unresolved : zaxpy_&lt;BR /&gt; Referenced in linpack.o&lt;BR /&gt;IPO Error: unresolved : zswap_&lt;BR /&gt; Referenced in linpack.o&lt;BR /&gt;IPO Error: unresolved : zhegvd_&lt;BR /&gt; Referenced in cdiag.o&lt;BR /&gt;IPO Error: unresolved : zhegv_&lt;BR /&gt; Referenced in cdiag.o&lt;BR /&gt;IPO Error: unresolved : dsygvd_&lt;BR /&gt; Referenced in rdiag.o&lt;BR /&gt;IPO Error: unresolved : dsygv_&lt;BR /&gt; Referenced in rdiag.o&lt;BR /&gt;inver.o(.text+0xdd): In function `inver_':&lt;BR /&gt;: undefined reference to `dgetrf_'&lt;BR /&gt;inver.o(.text+0x110): In function `inver_':&lt;BR /&gt;: undefined reference to `dgetri_'&lt;BR /&gt;linpack.o(.text+0x173): In function `zgedi_':&lt;BR /&gt;: undefined reference to `zscal_'&lt;BR /&gt;linpack.o(.text+0x22f): In function `zgedi_':&lt;BR /&gt;: undefined reference to `zaxpy_'&lt;BR /&gt;linpack.o(.text+0x3f0): In function `zgedi_':&lt;BR /&gt;: undefined reference to `zaxpy_'&lt;BR /&gt;linpack.o(.text+0x458): In function `zgedi_':&lt;BR /&gt;: undefined reference to `zswap_'&lt;BR /&gt;linpack.o(.text+0xc4f): In function `zgefa_':&lt;BR /&gt;: undefined reference to `zscal_'&lt;BR /&gt;linpack.o(.text+0xd71): In function `zgefa_':&lt;BR /&gt;: undefined reference to `zaxpy_'&lt;BR /&gt;cdiag.o(.text+0x4ab): In function `cdiag_':&lt;BR /&gt;: undefined reference to `zhegvd_'&lt;BR /&gt;cdiag.o(.text+0x7ae): In function `cdiag_':&lt;BR /&gt;: undefined reference to `zhegv_'&lt;BR /&gt;rdiag.o(.text+0x2e7): In function `rdiag_':&lt;BR /&gt;: undefined reference to `dsygvd_'&lt;BR /&gt;rdiag.o(.text+0x4f2): In function `rdiag_':&lt;BR /&gt;: undefined reference to `dsygv_'&lt;BR /&gt;make: *** [siesta] Error 1&lt;BR /&gt;&lt;/DIV&gt;
&lt;DIV&gt;The make file that I have is as follows:&lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;SIESTA_ARCH=intel-mkl&lt;BR /&gt;#&lt;BR /&gt;# GNU fortran compiler for linux with mkl optimized blas and lapack&lt;BR /&gt;#&lt;BR /&gt;# Be sure to experiment with different optimization options.&lt;BR /&gt;# You have quite a number of combinations to try...&lt;BR /&gt;#&lt;BR /&gt;FC= ifort&lt;BR /&gt;#&lt;BR /&gt;FFLAGS=-w -mp -tpp5 -O3 &lt;BR /&gt;FFLAGS_DEBUG= -g &lt;BR /&gt;LDFLAGS=-Vaxlib &lt;BR /&gt;COMP_LIBS=&lt;BR /&gt;RANLIB=echo&lt;BR /&gt;#&lt;BR /&gt;NETCDF_LIBS=&lt;BR /&gt;NETCDF_INTERFACE=&lt;BR /&gt;DEFS_CDF=&lt;BR /&gt;#&lt;BR /&gt;MPI_INTERFACE=&lt;BR /&gt;MPI_INCLUDE=&lt;BR /&gt;DEFS_MPI=&lt;/DIV&gt;
&lt;DIV&gt;GUIDE=/opt/intel/mkl/8.0/lib/32/libguide.a&lt;BR /&gt;LAPACK=/opt/intel/mkl/8.0/lib/32/libmkl_lapack95.a&lt;BR /&gt;BLAS=/opt/intel/mkl/8.0/lib/32/libmkl_blas95.a&lt;BR /&gt;#G2C=/usr/lib/gcc-lib/i386-redhat-linux/2.96/libg2c.a&lt;BR /&gt;#LIBS=$(LAPACK) $(BLAS) $(G2C) $(GUIDE) -lpthread &lt;BR /&gt;LIBS=$(LAPACK) $(BLAS) $(GUIDE) -lpthread&lt;BR /&gt;SYS=bsd&lt;BR /&gt;DEFS= $(DEFS_CDF) $(DEFS_MPI)&lt;BR /&gt;#&lt;BR /&gt;.F.o:&lt;BR /&gt; $(FC) -c $(FFLAGS) $(DEFS) $&amp;lt;&lt;BR /&gt;.f.o:&lt;BR /&gt; $(FC) -c $(FFLAGS) $&amp;lt;&lt;BR /&gt;.F90.o:&lt;BR /&gt; $(FC) -c $(FFLAGS) $(DEFS) $&amp;lt;&lt;BR /&gt;.f90.o:&lt;BR /&gt; $(FC) -c $(FFLAGS) $&amp;lt;&lt;BR /&gt;#&lt;BR /&gt;&lt;/DIV&gt;
&lt;DIV&gt;Can anyone help me?&lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;Thanks &lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;</description>
    <pubDate>Thu, 02 Mar 2006 10:19:21 GMT</pubDate>
    <dc:creator>tabrezo</dc:creator>
    <dc:date>2006-03-02T10:19:21Z</dc:date>
    <item>
      <title>Problem installing siesta software on UNix</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-installing-siesta-software-on-UNix/m-p/942630#M14601</link>
      <description>&lt;DIV&gt;I am trying to install a software siesta on Unix. We have itel fortran compiler installed. we also have scalapack and Blacs installed. Here is the error I get.&lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt; /opt/intel/mkl/8.0/lib/32/libmkl_lapack95.a /opt/intel/mkl/8.0/lib/32/libmkl_blas95.a /opt/intel/mkl/8.0/lib/32/libguide.a -lpthread &lt;BR /&gt;IPO Error: unresolved : dgetrf_&lt;BR /&gt; Referenced in inver.o&lt;BR /&gt;IPO Error: unresolved : dgetri_&lt;BR /&gt; Referenced in inver.o&lt;BR /&gt;IPO Error: unresolved : zscal_&lt;BR /&gt; Referenced in linpack.o&lt;BR /&gt;IPO Error: unresolved : zaxpy_&lt;BR /&gt; Referenced in linpack.o&lt;BR /&gt;IPO Error: unresolved : zswap_&lt;BR /&gt; Referenced in linpack.o&lt;BR /&gt;IPO Error: unresolved : zhegvd_&lt;BR /&gt; Referenced in cdiag.o&lt;BR /&gt;IPO Error: unresolved : zhegv_&lt;BR /&gt; Referenced in cdiag.o&lt;BR /&gt;IPO Error: unresolved : dsygvd_&lt;BR /&gt; Referenced in rdiag.o&lt;BR /&gt;IPO Error: unresolved : dsygv_&lt;BR /&gt; Referenced in rdiag.o&lt;BR /&gt;inver.o(.text+0xdd): In function `inver_':&lt;BR /&gt;: undefined reference to `dgetrf_'&lt;BR /&gt;inver.o(.text+0x110): In function `inver_':&lt;BR /&gt;: undefined reference to `dgetri_'&lt;BR /&gt;linpack.o(.text+0x173): In function `zgedi_':&lt;BR /&gt;: undefined reference to `zscal_'&lt;BR /&gt;linpack.o(.text+0x22f): In function `zgedi_':&lt;BR /&gt;: undefined reference to `zaxpy_'&lt;BR /&gt;linpack.o(.text+0x3f0): In function `zgedi_':&lt;BR /&gt;: undefined reference to `zaxpy_'&lt;BR /&gt;linpack.o(.text+0x458): In function `zgedi_':&lt;BR /&gt;: undefined reference to `zswap_'&lt;BR /&gt;linpack.o(.text+0xc4f): In function `zgefa_':&lt;BR /&gt;: undefined reference to `zscal_'&lt;BR /&gt;linpack.o(.text+0xd71): In function `zgefa_':&lt;BR /&gt;: undefined reference to `zaxpy_'&lt;BR /&gt;cdiag.o(.text+0x4ab): In function `cdiag_':&lt;BR /&gt;: undefined reference to `zhegvd_'&lt;BR /&gt;cdiag.o(.text+0x7ae): In function `cdiag_':&lt;BR /&gt;: undefined reference to `zhegv_'&lt;BR /&gt;rdiag.o(.text+0x2e7): In function `rdiag_':&lt;BR /&gt;: undefined reference to `dsygvd_'&lt;BR /&gt;rdiag.o(.text+0x4f2): In function `rdiag_':&lt;BR /&gt;: undefined reference to `dsygv_'&lt;BR /&gt;make: *** [siesta] Error 1&lt;BR /&gt;&lt;/DIV&gt;
&lt;DIV&gt;The make file that I have is as follows:&lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;SIESTA_ARCH=intel-mkl&lt;BR /&gt;#&lt;BR /&gt;# GNU fortran compiler for linux with mkl optimized blas and lapack&lt;BR /&gt;#&lt;BR /&gt;# Be sure to experiment with different optimization options.&lt;BR /&gt;# You have quite a number of combinations to try...&lt;BR /&gt;#&lt;BR /&gt;FC= ifort&lt;BR /&gt;#&lt;BR /&gt;FFLAGS=-w -mp -tpp5 -O3 &lt;BR /&gt;FFLAGS_DEBUG= -g &lt;BR /&gt;LDFLAGS=-Vaxlib &lt;BR /&gt;COMP_LIBS=&lt;BR /&gt;RANLIB=echo&lt;BR /&gt;#&lt;BR /&gt;NETCDF_LIBS=&lt;BR /&gt;NETCDF_INTERFACE=&lt;BR /&gt;DEFS_CDF=&lt;BR /&gt;#&lt;BR /&gt;MPI_INTERFACE=&lt;BR /&gt;MPI_INCLUDE=&lt;BR /&gt;DEFS_MPI=&lt;/DIV&gt;
&lt;DIV&gt;GUIDE=/opt/intel/mkl/8.0/lib/32/libguide.a&lt;BR /&gt;LAPACK=/opt/intel/mkl/8.0/lib/32/libmkl_lapack95.a&lt;BR /&gt;BLAS=/opt/intel/mkl/8.0/lib/32/libmkl_blas95.a&lt;BR /&gt;#G2C=/usr/lib/gcc-lib/i386-redhat-linux/2.96/libg2c.a&lt;BR /&gt;#LIBS=$(LAPACK) $(BLAS) $(G2C) $(GUIDE) -lpthread &lt;BR /&gt;LIBS=$(LAPACK) $(BLAS) $(GUIDE) -lpthread&lt;BR /&gt;SYS=bsd&lt;BR /&gt;DEFS= $(DEFS_CDF) $(DEFS_MPI)&lt;BR /&gt;#&lt;BR /&gt;.F.o:&lt;BR /&gt; $(FC) -c $(FFLAGS) $(DEFS) $&amp;lt;&lt;BR /&gt;.f.o:&lt;BR /&gt; $(FC) -c $(FFLAGS) $&amp;lt;&lt;BR /&gt;.F90.o:&lt;BR /&gt; $(FC) -c $(FFLAGS) $(DEFS) $&amp;lt;&lt;BR /&gt;.f90.o:&lt;BR /&gt; $(FC) -c $(FFLAGS) $&amp;lt;&lt;BR /&gt;#&lt;BR /&gt;&lt;/DIV&gt;
&lt;DIV&gt;Can anyone help me?&lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;Thanks &lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 02 Mar 2006 10:19:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-installing-siesta-software-on-UNix/m-p/942630#M14601</guid>
      <dc:creator>tabrezo</dc:creator>
      <dc:date>2006-03-02T10:19:21Z</dc:date>
    </item>
  </channel>
</rss>

