<?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 I'm using MinGW, do I need IPP for Windows or for Linux? in Intel® Integrated Performance Primitives</title>
    <link>https://community.intel.com/t5/Intel-Integrated-Performance/I-m-using-MinGW-do-I-need-IPP-for-Windows-or-for-Linux/m-p/787731#M2144</link>
    <description>Yes, it works! I added to the Path env variable the path where the dll lies.&lt;BR /&gt;&lt;BR /&gt;Thanks alot, Paul.</description>
    <pubDate>Tue, 10 Aug 2010 16:26:42 GMT</pubDate>
    <dc:creator>az037sn</dc:creator>
    <dc:date>2010-08-10T16:26:42Z</dc:date>
    <item>
      <title>I'm using MinGW, do I need IPP for Windows or for Linux?</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/I-m-using-MinGW-do-I-need-IPP-for-Windows-or-for-Linux/m-p/787725#M2138</link>
      <description>Hello everyone!&lt;BR /&gt;&lt;BR /&gt;I'm planning to use the IPP library on a MinGW environnement (GCC 4.5 on Windows).&lt;BR /&gt;&lt;BR /&gt;I just want to be sure, which version of the IPP library do I actually need : &lt;BR /&gt;&lt;BR /&gt;IPP for windows or IPP for linux ?&lt;BR /&gt;&lt;BR /&gt;Thanks in advance for your reply!&lt;BR /&gt;&lt;BR /&gt;Josh</description>
      <pubDate>Wed, 30 Jun 2010 21:30:59 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/I-m-using-MinGW-do-I-need-IPP-for-Windows-or-for-Linux/m-p/787725#M2138</guid>
      <dc:creator>josh83</dc:creator>
      <dc:date>2010-06-30T21:30:59Z</dc:date>
    </item>
    <item>
      <title>I'm using MinGW, do I need IPP for Windows or for Linux?</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/I-m-using-MinGW-do-I-need-IPP-for-Windows-or-for-Linux/m-p/787726#M2139</link>
      <description>Hello Josh,&lt;BR /&gt;&lt;BR /&gt;No guarantees, since I'm not familiar with the MinGW environment, but based on the description on their web site it sounds like you should be using the Windows version of IPP. You can download and install an evaluation copy of the library to test this theory.&lt;BR /&gt;&lt;BR /&gt;Paul</description>
      <pubDate>Wed, 30 Jun 2010 23:24:18 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/I-m-using-MinGW-do-I-need-IPP-for-Windows-or-for-Linux/m-p/787726#M2139</guid>
      <dc:creator>PaulF_IntelCorp</dc:creator>
      <dc:date>2010-06-30T23:24:18Z</dc:date>
    </item>
    <item>
      <title>I'm using MinGW, do I need IPP for Windows or for Linux?</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/I-m-using-MinGW-do-I-need-IPP-for-Windows-or-for-Linux/m-p/787727#M2140</link>
      <description>Hello Paul, thanks for your answer!&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I've actually given a try with the windows version of IPP 6.1 (the evaluation version available just right on the intel website) and &lt;B&gt;my test program using IPP linked as a charm on my MinGW32 environment&lt;/B&gt; (GCC 4.5) !&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN style="text-decoration: underline;"&gt;my makefile.am&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;bin_PROGRAMS = ipp_test&lt;BR /&gt;  &lt;BR /&gt;ipp_test_SOURCES = ipp_test.cpp&lt;BR /&gt;ipp_test_LDADD = -Lc:/Intel/IPP/6.1.2.041/ia32/lib -lippsemerged -lippsmerged -lippcore -lm&lt;BR /&gt;&lt;BR /&gt;INCLUDES = -Ic:/Intel/IPP/6.1.2.041/ia32/include&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN style="text-decoration: underline;"&gt;my program : ipp_test.cpp&lt;/SPAN&gt; (do a FFT example from the IPP manual)&lt;BR /&gt;&lt;BR /&gt;#include &lt;CSTDIO&gt;&lt;BR /&gt;#include &lt;CSTDLIB&gt;&lt;BR /&gt;#include &lt;CSTRING&gt;&lt;BR /&gt;#include &lt;CMATH&gt;&lt;BR /&gt;&lt;BR /&gt;#include "ipps.h"&lt;BR /&gt;&lt;BR /&gt;IppStatus ftt_ipp() &lt;BR /&gt;{ &lt;BR /&gt; Ipp32f x[8], X[10]; &lt;BR /&gt; &lt;BR /&gt; int i; &lt;BR /&gt; IppStatus status; &lt;BR /&gt; IppsFFTSpec_R_32f* spec; &lt;BR /&gt; &lt;BR /&gt; status = ippsFFTInitAlloc_R_32f(&amp;amp;spec, 3, IPP_FFT_DIV_INV_BY_N, ippAlgHintNone); &lt;BR /&gt; &lt;BR /&gt; for(i=0; i&amp;lt;8; ++i) x&lt;I&gt; = (float)cos(IPP_2PI * i * 16 / 64); &lt;BR /&gt; &lt;BR /&gt; status = ippsFFTFwd_RToCCS_32f(x, X, spec, NULL ); &lt;BR /&gt; &lt;BR /&gt; ippsMagnitude_32fc((Ipp32fc*)X, x, 4 ); &lt;BR /&gt;  &lt;BR /&gt; printf("\n\nftt_ipp_magnitude = ");&lt;BR /&gt; for(i=0; i&amp;lt;4; i++) printf("\n%d) %f", i, x&lt;I&gt;);   &lt;BR /&gt; &lt;BR /&gt; ippsFFTFree_R_32f( spec ); &lt;BR /&gt; return status;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Have a nice week-end :)&lt;BR /&gt;&lt;BR /&gt;Josh&lt;BR /&gt;&lt;BR /&gt;&lt;/I&gt;&lt;/I&gt;&lt;/CMATH&gt;&lt;/CSTRING&gt;&lt;/CSTDLIB&gt;&lt;/CSTDIO&gt;</description>
      <pubDate>Fri, 02 Jul 2010 21:36:24 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/I-m-using-MinGW-do-I-need-IPP-for-Windows-or-for-Linux/m-p/787727#M2140</guid>
      <dc:creator>josh83</dc:creator>
      <dc:date>2010-07-02T21:36:24Z</dc:date>
    </item>
    <item>
      <title>I'm using MinGW, do I need IPP for Windows or for Linux?</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/I-m-using-MinGW-do-I-need-IPP-for-Windows-or-for-Linux/m-p/787728#M2141</link>
      <description>Hello Josh,&lt;BR /&gt;&lt;BR /&gt;Glad to hear that it worked! Will keep that MinGW development environment in mind as an alternative for others to try out.&lt;BR /&gt;&lt;BR /&gt;Paul</description>
      <pubDate>Fri, 02 Jul 2010 21:42:50 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/I-m-using-MinGW-do-I-need-IPP-for-Windows-or-for-Linux/m-p/787728#M2141</guid>
      <dc:creator>PaulF_IntelCorp</dc:creator>
      <dc:date>2010-07-02T21:42:50Z</dc:date>
    </item>
    <item>
      <title>I'm using MinGW, do I need IPP for Windows or for Linux?</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/I-m-using-MinGW-do-I-need-IPP-for-Windows-or-for-Linux/m-p/787729#M2142</link>
      <description>Hi,&lt;BR /&gt;I'm trying to make a similar experiment with IPP libs in MinGW.&lt;BR /&gt;My source file .c is simpler and contains just a call to 'ippStaticInit()' and nothing else.&lt;BR /&gt;&lt;BR /&gt;I can compile and link fine and get an .exe file with no error messages. The command is:&lt;BR /&gt;&lt;BR /&gt;gcc -IC:/msys/1.0/opt/intel/win/Installs/IPP -include /opt/intel/win/Installs/IPP/ipp_w7.h -march=pentium4 -o test.exe test.c -LC:/msys/1.0/opt/intel/win/Installs/IPP -lippcore -lippscmerged -lippsrmerged -lippsmerged -lm&lt;BR /&gt;&lt;BR /&gt;But as I launch the .exe it prompts the error:&lt;BR /&gt;&lt;BR /&gt;&lt;B&gt;"This application has failed to start because ippcore-6.1.dll was not found. Re-installing the application may fix th is problem."&lt;BR /&gt;&lt;/B&gt;&lt;BR /&gt;That .dll is just inside the path where the other .lib are.&lt;BR /&gt;&lt;BR /&gt;Maybe I'm missing some environment variable?&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;az037sn</description>
      <pubDate>Mon, 09 Aug 2010 11:11:58 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/I-m-using-MinGW-do-I-need-IPP-for-Windows-or-for-Linux/m-p/787729#M2142</guid>
      <dc:creator>az037sn</dc:creator>
      <dc:date>2010-08-09T11:11:58Z</dc:date>
    </item>
    <item>
      <title>I'm using MinGW, do I need IPP for Windows or for Linux?</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/I-m-using-MinGW-do-I-need-IPP-for-Windows-or-for-Linux/m-p/787730#M2143</link>
      <description>Hello "az037sn":&lt;BR /&gt;&lt;BR /&gt;The DLL files on a 6.1 installation are found in the ...\ipp\bin\ directory (within your install). The PATH environment variable needs to include this directory in the path. If you goto the ...\ipp\tools\env\ directory you'll find a batch file you can run that will setup your environment to work for development and testing.&lt;BR /&gt;&lt;BR /&gt;I assume the core environment works within the MinGW environment. But since I am not experienced at using this environment, I cannot say for sure. Perhaps there are some additional steps you need to take to insure that the PATH is found? Or perhaps the MinGW environment wants to use the LD_PATH variable, which is relevant to UNIX/Linux environments but not Windows when searching for shared libraries...&lt;BR /&gt;&lt;BR /&gt;Paul</description>
      <pubDate>Tue, 10 Aug 2010 00:12:33 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/I-m-using-MinGW-do-I-need-IPP-for-Windows-or-for-Linux/m-p/787730#M2143</guid>
      <dc:creator>PaulF_IntelCorp</dc:creator>
      <dc:date>2010-08-10T00:12:33Z</dc:date>
    </item>
    <item>
      <title>I'm using MinGW, do I need IPP for Windows or for Linux?</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/I-m-using-MinGW-do-I-need-IPP-for-Windows-or-for-Linux/m-p/787731#M2144</link>
      <description>Yes, it works! I added to the Path env variable the path where the dll lies.&lt;BR /&gt;&lt;BR /&gt;Thanks alot, Paul.</description>
      <pubDate>Tue, 10 Aug 2010 16:26:42 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/I-m-using-MinGW-do-I-need-IPP-for-Windows-or-for-Linux/m-p/787731#M2144</guid>
      <dc:creator>az037sn</dc:creator>
      <dc:date>2010-08-10T16:26:42Z</dc:date>
    </item>
    <item>
      <title>I'm using MinGW, do I need IPP for Windows or for Linux?</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/I-m-using-MinGW-do-I-need-IPP-for-Windows-or-for-Linux/m-p/787732#M2145</link>
      <description>Here me back again, I have another problem. &lt;BR /&gt;I'm still posting in this same thread because I guess it can deal with Msys+MinGW environment.&lt;BR /&gt;&lt;BR /&gt;I'm going further with my small app. I've added further IPP api calls like&lt;BR /&gt;&lt;BR /&gt;ippStaticInit, apiG729Decoder_Alloc, ippSetFlushToZero, ippsMalloc_8u, apiG729Decoder_InitBuff, apiG729Decoder_Init, G729ADecode (in file 'decg729.c), ..&lt;BR /&gt;&lt;BR /&gt;My list of libs is now:&lt;BR /&gt;&lt;BR /&gt;-lippscmerged -lippsrmerged -lippsmerged -lippcore -lm&lt;BR /&gt;&lt;BR /&gt;when I try to compile I get a very long list of errors referring to security_cookie() and the like :&lt;BR /&gt;&lt;BR /&gt;c:/intel/IPP/6.1.2.041/ia32/lib/ippscmerged.lib(./ippscsag729/ippscsag729_split_w7_ippsShortTermPostFilter_G729_16s.obj):ippscsag729_split_:(.text[_w7_ippsShortTermPostFilter_G729_16s@16]+0x28): undefined reference to `__&lt;B&gt;security_cookie&lt;/B&gt;'&lt;BR /&gt;c:/intel/IPP/6.1.2.041/ia32/lib/ippscmerged.lib(./ippscsag729/ippscsag729_split_w7_ippsShortTermPostFilter_G729_16s.obj):ippscsag729_split_:(.text[_w7_ippsShortTermPostFilter_G729_16s@16]+0x186): undefined reference to `@&lt;B&gt;__security_check_cookie&lt;/B&gt;@4'&lt;BR /&gt;...&lt;BR /&gt;&lt;BR /&gt;Should I add some other lib to the list? &lt;BR /&gt;&lt;BR /&gt;Thx,&lt;BR /&gt;az037sn</description>
      <pubDate>Wed, 11 Aug 2010 10:07:07 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/I-m-using-MinGW-do-I-need-IPP-for-Windows-or-for-Linux/m-p/787732#M2145</guid>
      <dc:creator>az037sn</dc:creator>
      <dc:date>2010-08-11T10:07:07Z</dc:date>
    </item>
    <item>
      <title>I'm using MinGW, do I need IPP for Windows or for Linux?</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/I-m-using-MinGW-do-I-need-IPP-for-Windows-or-for-Linux/m-p/787733#M2146</link>
      <description>&lt;P&gt;This is something that the compiler puts on the stack to detect buffer overruns. I believe there's a compiler library you need to link with. See this article for more information, plus I'm sure you can find something on MSDN regarding it:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.codeguru.com/forum/archive/index.php/t-458059.html"&gt;http://www.codeguru.com/forum/archive/index.php/t-458059.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Aug 2010 16:39:19 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/I-m-using-MinGW-do-I-need-IPP-for-Windows-or-for-Linux/m-p/787733#M2146</guid>
      <dc:creator>PaulF_IntelCorp</dc:creator>
      <dc:date>2010-08-11T16:39:19Z</dc:date>
    </item>
    <item>
      <title>I'm using MinGW, do I need IPP for Windows or for Linux?</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/I-m-using-MinGW-do-I-need-IPP-for-Windows-or-for-Linux/m-p/787734#M2147</link>
      <description>I copied the MS-SDK (2002 edition) libs locally and added&lt;BR /&gt;-lbufferoverflowU&lt;BR /&gt;to the list of libs.&lt;BR /&gt;Now the long list os linker messages related to security_cookie and security_check_cookie have disappeared!&lt;BR /&gt;&lt;BR /&gt;But I get 4 new error messages for _allmul symbol:&lt;BR /&gt;&lt;BR /&gt;c:/Program Files/Intel/IPP/6.1.2.041/ia32/lib/ippscmerged.lib(./ippscpost/ippscpost_split_w7_ippsLongTermPostFilter_G729_16s.obj):ippscpost_split_w7:(.text[_w7_ippsLongTermPostFilter_G729_16s@20]+0x497): undefined reference to `&lt;B&gt;_allmul&lt;/B&gt;'&lt;BR /&gt;c:/Program Files/Intel/IPP/6.1.2.041/ia32/lib/ippscmerged.lib(./ippscpost/ippscpost_split_w7_ippsLongTermPostFilter_G729_16s.obj):ippscpost_split_w7:(.text[_w7_ippsLongTermPostFilter_G729_16s@20]+0x4ae): undefined reference to `&lt;B&gt;_allmul&lt;/B&gt;'&lt;BR /&gt;c:/Program Files/Intel/IPP/6.1.2.041/ia32/lib/ippscmerged.lib(./ippscpost/ippscpost_split_w7_ippsLongTermPostFilter_G729_16s.obj):ippscpost_split_w7:(.text[_w7_ippsLongTermPostFilter_G729_16s@20]+0x4f8): undefined reference to `&lt;B&gt;_allmul&lt;/B&gt;'&lt;BR /&gt;c:/Program Files/Intel/IPP/6.1.2.041/ia32/lib/ippscmerged.lib(./ippscpost/ippscpost_split_w7_ippsLongTermPostFilter_G729_16s.obj):ippscpost_split_w7:(.text[_w7_ippsLongTermPostFilter_G729_16s@20]+0x50f): undefined reference to `&lt;B&gt;_allmul&lt;/B&gt;'&lt;BR /&gt;collect2: ld returned 1 exit status&lt;BR /&gt;&lt;BR /&gt;I think _allmul symbol is resolved into 'msvcrt.lib' which is in the PC if you installed MS VisualStudio.&lt;BR /&gt;I added this file to the list:&lt;BR /&gt;-lmsvcrt&lt;BR /&gt;This time I get errors like:&lt;BR /&gt;&lt;BR /&gt;c:/mingw/bin/../lib/gcc/mingw32/4.4.1/../../../crt2.o:crt1.c:(.text+0x7): undefined reference to `&lt;B&gt;_imp__atexit&lt;/B&gt;'&lt;BR /&gt;c:/mingw/bin/../lib/gcc/mingw32/4.4.1/../../../crt2.o:crt1.c:(.text+0x17): undefined reference to `&lt;B&gt;_imp___onexit&lt;/B&gt;'&lt;BR /&gt;c:/mingw/bin/../lib/gcc/mingw32/4.4.1/../../../crt2.o:crt1.c:(.text+0xc7): undefined reference to `&lt;B&gt;_imp___iob&lt;/B&gt;'&lt;BR /&gt;...&lt;BR /&gt;&lt;BR /&gt;&lt;B&gt;As an alternative&lt;/B&gt;, is it possible to get a version of 'ippscmerged.lib' compiled without the security cookie option? I guess the compiler option is /GS.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;az037sn&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 12 Aug 2010 13:51:15 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/I-m-using-MinGW-do-I-need-IPP-for-Windows-or-for-Linux/m-p/787734#M2147</guid>
      <dc:creator>az037sn</dc:creator>
      <dc:date>2010-08-12T13:51:15Z</dc:date>
    </item>
    <item>
      <title>I'm using MinGW, do I need IPP for Windows or for Linux?</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/I-m-using-MinGW-do-I-need-IPP-for-Windows-or-for-Linux/m-p/787735#M2148</link>
      <description>Based on your posts it sounds like you do not have any Microsoft compilers installed on your system. Maybe you should install the free express version of the Microsoft compiler. I've not installed it, but I assume it should contain the missing CRT and other lib files you are searching for.</description>
      <pubDate>Thu, 12 Aug 2010 19:26:19 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/I-m-using-MinGW-do-I-need-IPP-for-Windows-or-for-Linux/m-p/787735#M2148</guid>
      <dc:creator>PaulF_IntelCorp</dc:creator>
      <dc:date>2010-08-12T19:26:19Z</dc:date>
    </item>
    <item>
      <title>I'm using MinGW, do I need IPP for Windows or for Linux?</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/I-m-using-MinGW-do-I-need-IPP-for-Windows-or-for-Linux/m-p/787736#M2149</link>
      <description>As far as I know, Microsoft Visual Studio redistributable libraries available for download at Microsoft site free, for example libraries for IA32 Visual Studio 2008 available by the link below&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.microsoft.com/downloads/details.aspx?FamilyID=9b2da534-3e03-4391-8a4d-074b9f2bc1bf&amp;amp;displaylang=en"&gt;http://www.microsoft.com/downloads/details.aspx?FamilyID=9b2da534-3e03-4391-8a4d-074b9f2bc1bf&amp;amp;displaylang=en&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt; Vladimir</description>
      <pubDate>Tue, 17 Aug 2010 11:22:06 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/I-m-using-MinGW-do-I-need-IPP-for-Windows-or-for-Linux/m-p/787736#M2149</guid>
      <dc:creator>Vladimir_Dudnik</dc:creator>
      <dc:date>2010-08-17T11:22:06Z</dc:date>
    </item>
    <item>
      <title>I'm using MinGW, do I need IPP for Windows or for Linux?</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/I-m-using-MinGW-do-I-need-IPP-for-Windows-or-for-Linux/m-p/787737#M2150</link>
      <description>Add the following:&lt;BR /&gt;&lt;BR /&gt;#ifdef __MINGW32__&lt;BR /&gt;&lt;BR /&gt;#if 0&lt;BR /&gt;extern "C" {&lt;BR /&gt; int __security_cookie;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;extern "C" void _fastcall __security_check_cookie(int i) {&lt;BR /&gt; //do nothing&lt;BR /&gt;}&lt;BR /&gt;#endif&lt;BR /&gt;extern "C" void _chkstk() {&lt;BR /&gt; //do nothing&lt;BR /&gt;}&lt;BR /&gt;extern "C" void _allmul() {&lt;BR /&gt; //do nothing&lt;BR /&gt;}&lt;BR /&gt;#endif //__MINGW32__&lt;BR /&gt;&lt;BR /&gt;I remember I had to do some other changes too, specially there are some assembly lines that need to check for MingW compiler, and use the other apth.</description>
      <pubDate>Tue, 17 Aug 2010 20:45:47 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/I-m-using-MinGW-do-I-need-IPP-for-Windows-or-for-Linux/m-p/787737#M2150</guid>
      <dc:creator>dashesy</dc:creator>
      <dc:date>2010-08-17T20:45:47Z</dc:date>
    </item>
    <item>
      <title>I'm using MinGW, do I need IPP for Windows or for Linux?</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/I-m-using-MinGW-do-I-need-IPP-for-Windows-or-for-Linux/m-p/787738#M2151</link>
      <description>Well, I adopted a dirty trick solution, I added a self-made 'allmul()' function to my source code and it compiles and seems to work fine!&lt;BR /&gt;&lt;BR /&gt;I've got a further question.&lt;BR /&gt;&lt;BR /&gt;Is there &lt;B&gt;a way to link anything as static&lt;/B&gt; so that when the app starts doesn't need any .dll like 'ippcore-6.1.dll' ?&lt;BR /&gt;&lt;BR /&gt;The command line I'm using is:&lt;BR /&gt;&lt;BR /&gt;gcc -Xlinker -x -D_GNU_SOURCE -I c:/Intel/IPP/6.1.2.041/ia32/include -include c:&lt;BR /&gt;/Intel/IPP/6.1.2.041/ia32/tools/staticlib/ipp_w7.h -march=pentium4 -o test test.c decg729.c encg729.c owng729.c vadg729.c aux_tbls.c -L c:/Intel/IPP/&lt;BR /&gt;6.1.2.041/ia32/lib -L c:/Intel/IPP/6.1.2.041/ia32/stublib -lippscmerged -lippsrm&lt;BR /&gt;erged -lippsmerged -lippcore -Lc:/MS_libs/sdk -lbufferoverflowU&lt;BR /&gt;&lt;BR /&gt;Thx,&lt;BR /&gt;az037sn</description>
      <pubDate>Fri, 27 Aug 2010 07:50:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/I-m-using-MinGW-do-I-need-IPP-for-Windows-or-for-Linux/m-p/787738#M2151</guid>
      <dc:creator>az037sn</dc:creator>
      <dc:date>2010-08-27T07:50:00Z</dc:date>
    </item>
    <item>
      <title>I'm using MinGW, do I need IPP for Windows or for Linux?</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/I-m-using-MinGW-do-I-need-IPP-for-Windows-or-for-Linux/m-p/787739#M2152</link>
      <description>I have no idea what "parts and pieces" are on your system as the result of using the MinGW environment, so the following suggestions may not work...&lt;BR /&gt;&lt;BR /&gt;You might try using the -static option or the -static-libgcc option. &lt;BR /&gt;&lt;BR /&gt;Also, might be useful to use the -nodefaultlibs option if you want to have complete control over all libraries that are linked in. &lt;BR /&gt;&lt;BR /&gt;See &lt;A href="http://gcc.gnu.org/onlinedocs/gcc/Link-Options.html"&gt;http://gcc.gnu.org/onlinedocs/gcc/Link-Options.html&lt;/A&gt;for more help on GCC options.</description>
      <pubDate>Fri, 27 Aug 2010 18:38:54 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/I-m-using-MinGW-do-I-need-IPP-for-Windows-or-for-Linux/m-p/787739#M2152</guid>
      <dc:creator>PaulF_IntelCorp</dc:creator>
      <dc:date>2010-08-27T18:38:54Z</dc:date>
    </item>
    <item>
      <title>Hello Guys,</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/I-m-using-MinGW-do-I-need-IPP-for-Windows-or-for-Linux/m-p/787740#M2153</link>
      <description>&lt;P&gt;Hello Guys,&lt;/P&gt;

&lt;P&gt;I have been trying to build Opencv 3.0 with its IPP_ICV inbuilt package and TBB using Mingw 4.8.2 x64 in windows. Whenever, I set this option in Cmake WITH_IPP=ON that time I got following error.&lt;/P&gt;

&lt;P&gt;Building CXX object modules/core/CMakeFiles/opencv_core.dir/src/umatrix.cpp.obj &lt;STRONG&gt;[ 32%] Building CXX object modules/core/CMakeFiles/opencv_core.dir/opencl_kernels_core.cpp.obj Linking CXX shared library ....\bin\libopencv_core300.dll c:/mingw/bin/../lib/gcc/mingw64/4.8.1/../../../../mingw64/bin/ld.exe: cannot find -lRunTmChk collect2.exe: error: ld returned 1 exit status&lt;/STRONG&gt; modules\core\CMakeFiles\opencv_core.dir\build.make:1260: recipe for target 'bin/libopencv_core300.dll' failed mingw32-make[2]: * [bin/libopencv_core300.dll] Error 1 CMakeFiles\Makefile2:1334: recipe for target 'modules/core/CMakeFiles/opencv_core.dir/all' failed mingw32-make[1]: * [modules/core/CMakeFiles/opencv_core.dir/all] Error 2&lt;/P&gt;

&lt;P&gt;If anybody have any idea regarding this issue then share it with me. Any help would be appreciated.&lt;/P&gt;

&lt;P&gt;Thanks,&lt;/P&gt;

&lt;P&gt;Tushar Kachhadiya&lt;/P&gt;</description>
      <pubDate>Fri, 02 Oct 2015 14:55:19 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/I-m-using-MinGW-do-I-need-IPP-for-Windows-or-for-Linux/m-p/787740#M2153</guid>
      <dc:creator>Tushar_Kachhadiya</dc:creator>
      <dc:date>2015-10-02T14:55:19Z</dc:date>
    </item>
  </channel>
</rss>

