<?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 Gennady, in Intel® Integrated Performance Primitives</title>
    <link>https://community.intel.com/t5/Intel-Integrated-Performance/Bug-in-gcc-version-check-in-ippdefs-h/m-p/1167540#M26821</link>
    <description>&lt;P&gt;Hi Gennady,&lt;/P&gt;&lt;P&gt;great! Thanks! Happy new year to you!&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;STefan&lt;/P&gt;</description>
    <pubDate>Tue, 07 Jan 2020 06:53:45 GMT</pubDate>
    <dc:creator>Stefan_B_3</dc:creator>
    <dc:date>2020-01-07T06:53:45Z</dc:date>
    <item>
      <title>Bug in gcc version check in ippdefs.h</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Bug-in-gcc-version-check-in-ippdefs-h/m-p/1167536#M26817</link>
      <description>&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;there is a bug in the way the gcc version is checked in ippdefs.h:&lt;/P&gt;
&lt;PRE class="brush:cpp; class-name:dark;"&gt;#if __GNUC__ &amp;gt;= 4 &amp;amp;&amp;amp; __GNUC_MINOR__ &amp;gt;= 5
  #define IPP_DEPRECATED( message ) __attribute__(( deprecated( message )))
#else
  #define IPP_DEPRECATED( message ) __attribute__(( deprecated ))
#endif&lt;/PRE&gt;

&lt;P&gt;While this works fine for e.g. gcc 4.6 and 6.6 (if it would exists) it fails e.g. for 5.0 - 5.4&lt;/P&gt;
&lt;P&gt;I would recommend to change this to&lt;/P&gt;

&lt;PRE class="brush:cpp; class-name:dark;"&gt;#if ( (__GNUC__ * 100) + __GNUC_MINOR__) &amp;gt;= 405
  #define IPP_DEPRECATED( message ) __attribute__(( deprecated( message )))
#else
  #define IPP_DEPRECATED( message ) __attribute__(( deprecated ))
#endif&lt;/PRE&gt;

&lt;P&gt;Especially as these days new gcc major version pop up all the time I guess it has been a while since this deprecation warning has been seen...&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Stefan&lt;/P&gt;</description>
      <pubDate>Mon, 23 Sep 2019 05:14:49 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Bug-in-gcc-version-check-in-ippdefs-h/m-p/1167536#M26817</guid>
      <dc:creator>Stefan_B_3</dc:creator>
      <dc:date>2019-09-23T05:14:49Z</dc:date>
    </item>
    <item>
      <title>Thank you Stefan for</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Bug-in-gcc-version-check-in-ippdefs-h/m-p/1167537#M26818</link>
      <description>&lt;P&gt;Thank you Stefan for discovering this bug, we will fix it&amp;nbsp;in the one of the next&amp;nbsp;IPP releases.&lt;/P&gt;&lt;P&gt;regards, Igor.&lt;/P&gt;</description>
      <pubDate>Mon, 23 Sep 2019 09:06:30 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Bug-in-gcc-version-check-in-ippdefs-h/m-p/1167537#M26818</guid>
      <dc:creator>Igor_A_Intel</dc:creator>
      <dc:date>2019-09-23T09:06:30Z</dc:date>
    </item>
    <item>
      <title>Thank you for reporting the</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Bug-in-gcc-version-check-in-ippdefs-h/m-p/1167538#M26819</link>
      <description>&lt;P&gt;Thank you for reporting the issue Stefan. Can you please open a ticket on&amp;nbsp;&amp;nbsp;&lt;A href="https://supporttickets.intel.com" style="font-family:&amp;quot;Times New Roman&amp;quot;,serif; color:#0563c1; text-decoration:underline"&gt;https://supporttickets.intel.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;We can track this&amp;nbsp;issue and fix it in the future release.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 27 Sep 2019 03:45:33 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Bug-in-gcc-version-check-in-ippdefs-h/m-p/1167538#M26819</guid>
      <dc:creator>Abhinav_S_Intel</dc:creator>
      <dc:date>2019-09-27T03:45:33Z</dc:date>
    </item>
    <item>
      <title>Hi Stefan,</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Bug-in-gcc-version-check-in-ippdefs-h/m-p/1167539#M26820</link>
      <description>&lt;P&gt;Hi Stefan,&lt;/P&gt;&lt;P&gt;the problem has been fixed in IPP v.2020 which is not available for download.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thansk, Gennady&lt;/P&gt;</description>
      <pubDate>Tue, 24 Dec 2019 16:32:49 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Bug-in-gcc-version-check-in-ippdefs-h/m-p/1167539#M26820</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2019-12-24T16:32:49Z</dc:date>
    </item>
    <item>
      <title>Hi Gennady,</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Bug-in-gcc-version-check-in-ippdefs-h/m-p/1167540#M26821</link>
      <description>&lt;P&gt;Hi Gennady,&lt;/P&gt;&lt;P&gt;great! Thanks! Happy new year to you!&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;STefan&lt;/P&gt;</description>
      <pubDate>Tue, 07 Jan 2020 06:53:45 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Bug-in-gcc-version-check-in-ippdefs-h/m-p/1167540#M26821</guid>
      <dc:creator>Stefan_B_3</dc:creator>
      <dc:date>2020-01-07T06:53:45Z</dc:date>
    </item>
  </channel>
</rss>

