<?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 Re: undefined reference (IPP 5.0.043) in Intel® Integrated Performance Primitives</title>
    <link>https://community.intel.com/t5/Intel-Integrated-Performance/undefined-reference-IPP-5-0-043/m-p/948178#M18372</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I recommend you in case of any throubles with IPP first look at documentation. It might be you miss something. For that particular case, if you look at ippiman.pdf, section Color Model Convertion, there is notice in function description that function declared in ippcc.h file, so you need to link with ippcc library. Yes, we probably need to add this info as well.&lt;/P&gt;
&lt;P&gt;And of course you always can directly search function name in IPPlib folder to find in which library it is&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt; Vladimir&lt;/P&gt;
&lt;DIV&gt;&lt;/DIV&gt;</description>
    <pubDate>Sat, 04 Feb 2006 02:27:05 GMT</pubDate>
    <dc:creator>Vladimir_Dudnik</dc:creator>
    <dc:date>2006-02-04T02:27:05Z</dc:date>
    <item>
      <title>undefined reference (IPP 5.0.043)</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/undefined-reference-IPP-5-0-043/m-p/948176#M18370</link>
      <description>Ok, I gave it a shot but I can't figure why *some* ippi functions are not linked.&lt;BR /&gt;&lt;BR /&gt;When I link with -lippi I only get undefined reference for&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;ippiCbYCr422ToYCbCr422_8u_C2R&lt;BR /&gt;&lt;BR /&gt;ippiYUV422ToRGB_8u_C2C3R&lt;BR /&gt;&lt;BR /&gt;ippiRGBToGray_8u_C3C1R&lt;BR /&gt;&lt;BR /&gt;ippiYUVToRGB_8u_C3R&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I checked and double checked and all these functions are in the documentation and none are in ipp_API_remove.txt (the compiler doesn't complain anyway).&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;If I don't add -lippi, then I get 40 undefined reference. So yes, the linker can find some of them.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;For example, I have&lt;BR /&gt;&lt;BR /&gt;case RGB_8U:&lt;BR /&gt;&lt;BR /&gt;ippiCopy_8u_C3R(rgb, rgb_steps, image_8u, steps, size);&lt;BR /&gt;&lt;BR /&gt;break;&lt;BR /&gt;&lt;BR /&gt;case MONO_8U:&lt;BR /&gt;&lt;BR /&gt;ippiRGBToGray_8u_C3C1R(rgb, rgb_steps, image_8u, steps, size);&lt;BR /&gt;&lt;BR /&gt;break;&lt;BR /&gt;&lt;BR /&gt;So, it finds ippiCopy_8u_C3R but not ippiRGBToGray_8u_C3C1R...&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Kind of confusing...&lt;BR /&gt;&lt;BR /&gt;Fedora Core 3&lt;BR /&gt;&lt;BR /&gt;gcc version 3.4.4 20050721 (Red Hat 3.4.4-2)&lt;BR /&gt;&lt;BR /&gt;GNU ld version 2.15.92.0.2 20040927&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I also tried with icc v9.0, same result.&lt;P&gt;Message Edited by Simon_Leonard on &lt;SPAN class="date_text"&gt;02-02-2006&lt;/SPAN&gt; &lt;SPAN class="time_text"&gt;12:55 AM&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Feb 2006 16:51:10 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/undefined-reference-IPP-5-0-043/m-p/948176#M18370</guid>
      <dc:creator>simon_leonard</dc:creator>
      <dc:date>2006-02-02T16:51:10Z</dc:date>
    </item>
    <item>
      <title>Re: undefined reference (IPP 5.0.043)</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/undefined-reference-IPP-5-0-043/m-p/948177#M18371</link>
      <description>Just tried the same on a Fedora Core 4 machine &lt;BR /&gt;&lt;BR /&gt;gcc version 4.0.2 20051125 (Red Hat 4.0.2-8) &lt;BR /&gt;&lt;BR /&gt;GNU ld version 2.15.94.0.2.2 20041220 &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Same thing happens *except* ippiYUVToRGB_8u_C3R is no more undefined.&lt;P&gt;Message Edited by Simon_Leonard on &lt;SPAN class="date_text"&gt;02-02-2006&lt;/SPAN&gt; &lt;SPAN class="time_text"&gt;02:25 PM&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Feb 2006 06:25:23 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/undefined-reference-IPP-5-0-043/m-p/948177#M18371</guid>
      <dc:creator>simon_leonard</dc:creator>
      <dc:date>2006-02-03T06:25:23Z</dc:date>
    </item>
    <item>
      <title>Re: undefined reference (IPP 5.0.043)</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/undefined-reference-IPP-5-0-043/m-p/948178#M18372</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I recommend you in case of any throubles with IPP first look at documentation. It might be you miss something. For that particular case, if you look at ippiman.pdf, section Color Model Convertion, there is notice in function description that function declared in ippcc.h file, so you need to link with ippcc library. Yes, we probably need to add this info as well.&lt;/P&gt;
&lt;P&gt;And of course you always can directly search function name in IPPlib folder to find in which library it is&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt; Vladimir&lt;/P&gt;
&lt;DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Sat, 04 Feb 2006 02:27:05 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/undefined-reference-IPP-5-0-043/m-p/948178#M18372</guid>
      <dc:creator>Vladimir_Dudnik</dc:creator>
      <dc:date>2006-02-04T02:27:05Z</dc:date>
    </item>
  </channel>
</rss>

