<?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 Hi Lee_icc, in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Error-in-static-linking-to-MKL-on-Linux-x64-platform/m-p/925070#M13308</link>
    <description>&lt;P&gt;Hi Lee_icc,&lt;/P&gt;
&lt;P&gt;I think your test are very close the truth.&amp;nbsp; Just quick share what i think&lt;/P&gt;
&lt;P&gt;There are&amp;nbsp;3 problems here&lt;/P&gt;
&lt;P&gt;1) the order&amp;nbsp;of&amp;nbsp;option&amp;nbsp;in command line do matters&amp;nbsp; as the linux linker only veiw the library, obj etc one times to resolve reference.&lt;/P&gt;
&lt;P&gt;so&lt;/P&gt;
&lt;P&gt;$icc -O3 -mkl mcmc_demo.c&amp;nbsp; have unresoved mkl symbol.&lt;/P&gt;
&lt;P&gt;and $icc -o3 mcmc_demo.c&amp;nbsp; -mkl&amp;nbsp; or the explict mkl library link (as you did)&amp;nbsp;solve the mkl symbols problem.&lt;/P&gt;
&lt;P&gt;2) about the static and static-intel&lt;/P&gt;
&lt;P&gt;as i understand, static will ask static library, include glibc static library and pthread library, like -lm, -lpthread.&lt;/P&gt;
&lt;P&gt;static-intel will ask intel static library.&amp;nbsp; and allow other system library are be dynamic.&lt;/P&gt;
&lt;P&gt;In general, MKL follow linux (discourage static library), &amp;nbsp;hope the system library be dynamic .&lt;/P&gt;
&lt;P&gt;3) the __isoc99_fscanf&amp;nbsp; should be from some library of glibc.&amp;nbsp;&amp;nbsp; I double glibc dynamic library&amp;nbsp;can resolve the symbol, but the static glibc library may not on your machine. &amp;nbsp;&lt;/P&gt;
&lt;P&gt;So according to the condtion,&amp;nbsp; you may try&lt;/P&gt;
&lt;P&gt;1)&amp;nbsp;drop &amp;nbsp;the -static&amp;nbsp; in your last command (sorry, i haven't copied the command as if i did, &amp;nbsp;the IE hang )&amp;nbsp;. Thus MKL static library&amp;nbsp; and system dynamic library&amp;nbsp;are linked, which is actually recommended model.&lt;/P&gt;
&lt;P&gt;2) if you really need to all libraries include glibc library are static, then you may find which static library include the symbol __isoc99_fscanf. then you will resolve the problem.&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Ying&lt;/P&gt;</description>
    <pubDate>Wed, 19 Jun 2013 07:22:04 GMT</pubDate>
    <dc:creator>Ying_H_Intel</dc:creator>
    <dc:date>2013-06-19T07:22:04Z</dc:date>
    <item>
      <title>Error in static linking to MKL on Linux x64 platform</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Error-in-static-linking-to-MKL-on-Linux-x64-platform/m-p/925065#M13303</link>
      <description>&lt;P&gt;Dear All,&lt;/P&gt;
&lt;P&gt;I tried to compile my C code with Intel C/C++ compiler 13.1.1 and Intel MKL on scientific linux 6.4 x64 platform. When linked dynamically, it worked fine without any error or warnings. When linked with -static, it reported a error:&lt;/P&gt;
&lt;P&gt;[sl@localhost test]$ icc -O3 -ip -mkl=parallel -openmp -static mcmc_demo.c &lt;BR /&gt;ld: cannot find -lm&lt;/P&gt;
&lt;P&gt;Following the webpage &lt;A href="http://software.intel.com/en-us/articles/error-ld-cannot-find-lm/" target="_blank"&gt;http://software.intel.com/en-us/articles/error-ld-cannot-find-lm/&lt;/A&gt;, I tested the new compile options, and it reported many error about undefined reference:&lt;/P&gt;
&lt;P&gt;[sl@localhost test]$ icc -O3 -ip -mkl=parallel -openmp -static mcmc_demo.c -L/usr/lib/x86_64-redhat-linux5E/lib64/&lt;BR /&gt;/tmp/iccondg4F.o: In function `main':&lt;BR /&gt;mcmc_demo.c:(.text+0x71): undefined reference to `__isoc99_fscanf'&lt;BR /&gt;mcmc_demo.c:(.text+0x100): undefined reference to `__isoc99_fscanf'&lt;BR /&gt;mcmc_demo.c:(.text+0x174): undefined reference to `__isoc99_fscanf'&lt;BR /&gt;mcmc_demo.c:(.text+0x230): undefined reference to `__isoc99_fscanf'&lt;BR /&gt;mcmc_demo.c:(.text+0x43a): undefined reference to `__isoc99_fscanf'&lt;BR /&gt;mcmc_demo.c:(.text+0x5ed): undefined reference to `vdLn'&lt;BR /&gt;mcmc_demo.c:(.text+0xd00): undefined reference to `vslNewStream'&lt;BR /&gt;mcmc_demo.c:(.text+0xd28): undefined reference to `vdRngUniform'&lt;BR /&gt;mcmc_demo.c:(.text+0xd42): undefined reference to `vdLn'&lt;BR /&gt;mcmc_demo.c:(.text+0xe15): undefined reference to `vdRngGaussian'&lt;BR /&gt;mcmc_demo.c:(.text+0xeac): undefined reference to `vdLn'&lt;BR /&gt;mcmc_demo.c:(.text+0x1561): undefined reference to `cblas_dcopy'&lt;BR /&gt;mcmc_demo.c:(.text+0x159f): undefined reference to `cblas_dcopy'&lt;BR /&gt;mcmc_demo.c:(.text+0x1607): undefined reference to `cblas_dcopy'&lt;BR /&gt;mcmc_demo.c:(.text+0x1645): undefined reference to `cblas_dcopy'&lt;BR /&gt;mcmc_demo.c:(.text+0x16b1): undefined reference to `cblas_dcopy'&lt;BR /&gt;mcmc_demo.c:(.text+0x175f): undefined reference to `vslDeleteStream'&lt;BR /&gt;/tmp/iccondg4F.o: In function `asm2d':&lt;BR /&gt;mcmc_demo.c:(.text+0x8184): undefined reference to `cblas_dgemv'&lt;BR /&gt;/tmp/iccondg4F.o: In function `logpriorfun':&lt;BR /&gt;mcmc_demo.c:(.text+0x81c3): undefined reference to `vdLn'&lt;BR /&gt;/tmp/iccondg4F.o: In function `proprnd':&lt;BR /&gt;mcmc_demo.c:(.text+0x8470): undefined reference to `vdRngGaussian'&lt;/P&gt;
&lt;P&gt;Does anyone have idea that how to resolve this issue? Thanks in advance.&lt;/P&gt;
&lt;P&gt;Lee&lt;/P&gt;</description>
      <pubDate>Tue, 18 Jun 2013 05:06:19 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Error-in-static-linking-to-MKL-on-Linux-x64-platform/m-p/925065#M13303</guid>
      <dc:creator>lee_icc</dc:creator>
      <dc:date>2013-06-18T05:06:19Z</dc:date>
    </item>
    <item>
      <title>There is an active thread</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Error-in-static-linking-to-MKL-on-Linux-x64-platform/m-p/925066#M13304</link>
      <description>There is an active thread already and please take a look at:

Forum Topic: &lt;STRONG&gt;Error while using -static and -L/usr/lib/x86_64-redhat-linux5E/lib64/ on Linux x64 platform&lt;/STRONG&gt;
Web-link: &lt;A href="http://software.intel.com/en-us/forums/topic/393889" target="_blank"&gt;http://software.intel.com/en-us/forums/topic/393889&lt;/A&gt;</description>
      <pubDate>Tue, 18 Jun 2013 05:18:44 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Error-in-static-linking-to-MKL-on-Linux-x64-platform/m-p/925066#M13304</guid>
      <dc:creator>SergeyKostrov</dc:creator>
      <dc:date>2013-06-18T05:18:44Z</dc:date>
    </item>
    <item>
      <title>Hi Sergey,  thanks for the</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Error-in-static-linking-to-MKL-on-Linux-x64-platform/m-p/925067#M13305</link>
      <description>&lt;P&gt;Hi Sergey,&amp;nbsp; thanks for the message.&lt;/P&gt;
&lt;P&gt;Hi Lee,&lt;/P&gt;
&lt;P&gt;I have same issue reported before and get fixed in MKL update 4 . So could you please&lt;/P&gt;
&lt;P&gt;1. use mkl advisor and try explictly link MKL&lt;/P&gt;
&lt;P&gt;-Wl,--start-group&amp;nbsp; $(MKLROOT)/lib/intel64/libmkl_intel_lp64.a $(MKLROOT)/lib/intel64/libmkl_intel_thread.a $(MKLROOT)/lib/intel64/libmkl_core.a -Wl,--end-group -lpthread -lm&lt;/P&gt;
&lt;P&gt;&lt;A href="http://software.intel.com/en-us/articles/intel-mkl-link-line-advisor/"&gt;http://software.intel.com/en-us/articles/intel-mkl-link-line-advisor/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;2. use MKL 11.0 update 4.&lt;/P&gt;
&lt;P&gt;3. could you please give me the result of&amp;nbsp;&amp;nbsp; your command line&amp;nbsp; -#&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;
&lt;P&gt;Ying&lt;/P&gt;</description>
      <pubDate>Tue, 18 Jun 2013 08:10:08 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Error-in-static-linking-to-MKL-on-Linux-x64-platform/m-p/925067#M13305</guid>
      <dc:creator>Ying_H_Intel</dc:creator>
      <dc:date>2013-06-18T08:10:08Z</dc:date>
    </item>
    <item>
      <title>Hi Ying,</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Error-in-static-linking-to-MKL-on-Linux-x64-platform/m-p/925068#M13306</link>
      <description>Hi Ying,

Following your advice, I tested several combination of static linking options (-static or -static-intel). Using option -static leads to a 'ld: cannot find -lm' error as shown previously. For others:

1 -static-intel:
[sl@localhost test]$ icc -O3 -ip -xHost -openmp -static-intel mcmc_demo.c
icc: warning #10237: -lcilkrts linked in dynamically, static library not available
/tmp/iccuSIkoV.o: In function `main':
mcmc_demo.c:(.text+0x5f9): undefined reference to `vdLn'
...

When explictly linking MKL, it was different:

2 -static with -Wl,...
[sl@localhost test]$ icc -O3 -ip -openmp -static mcmc_demo.c -Wl,--start-group $MKLROOT/lib/intel64/libmkl_intel_lp64.a $MKLROOT/lib/intel64/libmkl_intel_thread.a $MKLROOT/lib/intel64/libmkl_core.a -Wl,--end-group -lpthread -lm
ld: cannot find -lpthread

and finally:

3 -static-intel with -Wl...
[sl@localhost test]$ icc -O3 -ip -openmp -static-intel mcmc_demo.c -Wl,--start-group $MKLROOT/lib/intel64/libmkl_intel_lp64.a $MKLROOT/lib/intel64/libmkl_intel_thread.a $MKLROOT/lib/intel64/libmkl_core.a -Wl,--end-group -lpthread -lm
icc: warning #10237: -lcilkrts linked in dynamically, static library not available

Only the last compile options built the executalbe succesfully without any error. Actually, I was confused with these static linking options.</description>
      <pubDate>Wed, 19 Jun 2013 05:58:10 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Error-in-static-linking-to-MKL-on-Linux-x64-platform/m-p/925068#M13306</guid>
      <dc:creator>lee_icc</dc:creator>
      <dc:date>2013-06-19T05:58:10Z</dc:date>
    </item>
    <item>
      <title>After several test, I also</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Error-in-static-linking-to-MKL-on-Linux-x64-platform/m-p/925069#M13307</link>
      <description>&lt;P&gt;After several test, I also found that using the option '-L/usr/lib/x86_64-redhat-linux5E/lib64/' resolved the error 'ld: cannot find -lpthread' while leading to undefined reference to `__isoc99_fscanf'. Without this option, it reported 'ld: cannot find -lpthread' again without any undefined reference to `__isoc99_fscanf'. Detailed logs are as follows:&lt;/P&gt;
&lt;P&gt;[sl@localhost test]$ icc -O3 -ip -openmp -static mcmc_demo.c -Wl,--start-group $MKLROOT/lib/intel64/libmkl_intel_lp64.a $MKLROOT/lib/intel64/libmkl_intel_thread.a $MKLROOT/lib/intel64/libmkl_core.a -Wl,--end-group -lpthread -lm&lt;BR /&gt;ld: cannot find -lpthread&lt;/P&gt;
&lt;P&gt;[sl@localhost test]$ icc -O3 -ip -openmp -static mcmc_demo.c &lt;STRONG&gt;-L/usr/lib/x86_64-redhat-linux5E/lib64/&lt;/STRONG&gt; -Wl,--start-group $MKLROOT/lib/intel64/libmkl_intel_lp64.a $MKLROOT/lib/intel64/libmkl_intel_thread.a $MKLROOT/lib/intel64/libmkl_core.a -Wl,--end-group -lpthread -lm&lt;BR /&gt;/tmp/iccZTzhHD.o: In function `main':&lt;BR /&gt;mcmc_demo.c:(.text+0x71): undefined reference to `__isoc99_fscanf'&lt;BR /&gt;mcmc_demo.c:(.text+0x100): undefined reference to `__isoc99_fscanf'&lt;BR /&gt;mcmc_demo.c:(.text+0x174): undefined reference to `__isoc99_fscanf'&lt;BR /&gt;mcmc_demo.c:(.text+0x230): undefined reference to `__isoc99_fscanf'&lt;BR /&gt;mcmc_demo.c:(.text+0x43a): undefined reference to `__isoc99_fscanf'&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jun 2013 06:48:42 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Error-in-static-linking-to-MKL-on-Linux-x64-platform/m-p/925069#M13307</guid>
      <dc:creator>lee_icc</dc:creator>
      <dc:date>2013-06-19T06:48:42Z</dc:date>
    </item>
    <item>
      <title>Hi Lee_icc,</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Error-in-static-linking-to-MKL-on-Linux-x64-platform/m-p/925070#M13308</link>
      <description>&lt;P&gt;Hi Lee_icc,&lt;/P&gt;
&lt;P&gt;I think your test are very close the truth.&amp;nbsp; Just quick share what i think&lt;/P&gt;
&lt;P&gt;There are&amp;nbsp;3 problems here&lt;/P&gt;
&lt;P&gt;1) the order&amp;nbsp;of&amp;nbsp;option&amp;nbsp;in command line do matters&amp;nbsp; as the linux linker only veiw the library, obj etc one times to resolve reference.&lt;/P&gt;
&lt;P&gt;so&lt;/P&gt;
&lt;P&gt;$icc -O3 -mkl mcmc_demo.c&amp;nbsp; have unresoved mkl symbol.&lt;/P&gt;
&lt;P&gt;and $icc -o3 mcmc_demo.c&amp;nbsp; -mkl&amp;nbsp; or the explict mkl library link (as you did)&amp;nbsp;solve the mkl symbols problem.&lt;/P&gt;
&lt;P&gt;2) about the static and static-intel&lt;/P&gt;
&lt;P&gt;as i understand, static will ask static library, include glibc static library and pthread library, like -lm, -lpthread.&lt;/P&gt;
&lt;P&gt;static-intel will ask intel static library.&amp;nbsp; and allow other system library are be dynamic.&lt;/P&gt;
&lt;P&gt;In general, MKL follow linux (discourage static library), &amp;nbsp;hope the system library be dynamic .&lt;/P&gt;
&lt;P&gt;3) the __isoc99_fscanf&amp;nbsp; should be from some library of glibc.&amp;nbsp;&amp;nbsp; I double glibc dynamic library&amp;nbsp;can resolve the symbol, but the static glibc library may not on your machine. &amp;nbsp;&lt;/P&gt;
&lt;P&gt;So according to the condtion,&amp;nbsp; you may try&lt;/P&gt;
&lt;P&gt;1)&amp;nbsp;drop &amp;nbsp;the -static&amp;nbsp; in your last command (sorry, i haven't copied the command as if i did, &amp;nbsp;the IE hang )&amp;nbsp;. Thus MKL static library&amp;nbsp; and system dynamic library&amp;nbsp;are linked, which is actually recommended model.&lt;/P&gt;
&lt;P&gt;2) if you really need to all libraries include glibc library are static, then you may find which static library include the symbol __isoc99_fscanf. then you will resolve the problem.&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Ying&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jun 2013 07:22:04 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Error-in-static-linking-to-MKL-on-Linux-x64-platform/m-p/925070#M13308</guid>
      <dc:creator>Ying_H_Intel</dc:creator>
      <dc:date>2013-06-19T07:22:04Z</dc:date>
    </item>
    <item>
      <title>and the 3  static-intel with</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Error-in-static-linking-to-MKL-on-Linux-x64-platform/m-p/925071#M13309</link>
      <description>&lt;P&gt;and the 3&amp;nbsp; static-intel with -Wl&amp;nbsp; you try&amp;nbsp;last last&amp;nbsp;time. &amp;nbsp;also are linking static MKL library (and static intel library except the libcilkrts) &amp;nbsp;and dynamic system library,&amp;nbsp; so it is not problem too.&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Ying&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jun 2013 07:33:54 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Error-in-static-linking-to-MKL-on-Linux-x64-platform/m-p/925071#M13309</guid>
      <dc:creator>Ying_H_Intel</dc:creator>
      <dc:date>2013-06-19T07:33:54Z</dc:date>
    </item>
    <item>
      <title>Thank you very much for your</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Error-in-static-linking-to-MKL-on-Linux-x64-platform/m-p/925072#M13310</link>
      <description>&lt;P&gt;Thank you very much for your advice and knowledge, Ying.&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jun 2013 14:34:59 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Error-in-static-linking-to-MKL-on-Linux-x64-platform/m-p/925072#M13310</guid>
      <dc:creator>lee_icc</dc:creator>
      <dc:date>2013-06-19T14:34:59Z</dc:date>
    </item>
    <item>
      <title>&gt;&gt;...3) the __isoc99_fscanf</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Error-in-static-linking-to-MKL-on-Linux-x64-platform/m-p/925073#M13311</link>
      <description>&amp;gt;&amp;gt;...3) the __&lt;STRONG&gt;isoc99_fscanf&lt;/STRONG&gt;  should be from some library of glibc...

I searched for that substring in a folder where a GCC-like C++ compiler installed and I did not see any references. It looks like I need to update my version of the compiler.</description>
      <pubDate>Wed, 19 Jun 2013 23:19:58 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Error-in-static-linking-to-MKL-on-Linux-x64-platform/m-p/925073#M13311</guid>
      <dc:creator>SergeyKostrov</dc:creator>
      <dc:date>2013-06-19T23:19:58Z</dc:date>
    </item>
    <item>
      <title>Hi Ying, you are right. The</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Error-in-static-linking-to-MKL-on-Linux-x64-platform/m-p/925074#M13312</link>
      <description>Hi Ying, you are right. The order of option in command line indeed affect the compilation in certain conditions. I did more tests on the compilation options.

When linking dynamically, both the '$ icc -mkl mcmc_demo.c' and '$icc mcmc_demo.c -mkl' can compile correctly.

While linking statically, the situation was different.

For the option -static which ask static libraries (including system library and Intel library), using -static resulted in the error of not finding the static system library ('ld: cannot find -lm') wherever -mkl before or after mcmc_demo.c.

When using -static together with -L/usr/lib/x86_64-redhat-linux5E/lib64/, the compiler found the static system library but reported undefined reference of __isoc99_fscanf and MKL symbols. Only placing -mkl after the mcmc_demo.c can resolve the MKL symbols reference issue.

Therefore, as I understand from the tests above, under the static linking condition with -static, compiler search static system libraries firstly, and then Intel libraries. When static system libraries is not available, the compilation terminate without searching static Intel libraries and report the issue, and consequently the order of -mkl have no effect. On the other side, when compiler find the static system libraries (with -L/usr/lib/x86_64-redhat-linux5E/lib64/), it try to find static Intel libraries further. At this time, -mkl have to be placed after mcmc_demo.c, or using the explict MKL linking can resolve the MKL symbols reference issue.

At last, for the option -static-intel which ask static Intel library, again, -mkl have to be placed after mcmc_demo.c, or using explict MKL linking to give correct compilation.

In all, when using the option -static or -static-intel and system libraries are linked correctly (dynamic or static), -mkl have to be placed after the src filename to complete the correct compilation.</description>
      <pubDate>Thu, 20 Jun 2013 05:20:13 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Error-in-static-linking-to-MKL-on-Linux-x64-platform/m-p/925074#M13312</guid>
      <dc:creator>lee_icc</dc:creator>
      <dc:date>2013-06-20T05:20:13Z</dc:date>
    </item>
    <item>
      <title>To solve the __isoc99_fscanf</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Error-in-static-linking-to-MKL-on-Linux-x64-platform/m-p/925075#M13313</link>
      <description>To solve the __isoc99_fscanf reference issue, I installed the glibc-static.x86_64 package by following &lt;A href="http://software.intel.com/en-us/articles/error-ld-cannot-find-lm/" target="_blank"&gt;http://software.intel.com/en-us/articles/error-ld-cannot-find-lm/&lt;/A&gt;. It looks like the __isoc99_fscanf reference issue was resolved:

[sl@localhost test]$ icc -O3 -ip -openmp -static mcmc_demo.c -mkl
/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../lib64/libpthread.a(libpthread.o): In function `sem_open':
(.text+0x764d): warning: the use of `mktemp' is dangerous, better use `mkstemp'</description>
      <pubDate>Thu, 20 Jun 2013 05:50:24 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Error-in-static-linking-to-MKL-on-Linux-x64-platform/m-p/925075#M13313</guid>
      <dc:creator>lee_icc</dc:creator>
      <dc:date>2013-06-20T05:50:24Z</dc:date>
    </item>
    <item>
      <title>Hi lee_icc,</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Error-in-static-linking-to-MKL-on-Linux-x64-platform/m-p/925076#M13314</link>
      <description>&lt;P&gt;Hi lee_icc,&lt;/P&gt;
&lt;P&gt;Thank you&amp;nbsp;for sharing. right, the __iso9_fscanf, should be in static glibc library.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regarding the last warning in libpthread.a, it doesn't matter,&amp;nbsp;&amp;nbsp;Same reason that&amp;nbsp;&amp;nbsp;the static&amp;nbsp;system library is not encourage to used too.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Ying&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jul 2013 01:03:22 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Error-in-static-linking-to-MKL-on-Linux-x64-platform/m-p/925076#M13314</guid>
      <dc:creator>Ying_H_Intel</dc:creator>
      <dc:date>2013-07-09T01:03:22Z</dc:date>
    </item>
  </channel>
</rss>

