- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi guys,
there is a bug in the way the gcc version is checked in ippdefs.h:
#if __GNUC__ >= 4 && __GNUC_MINOR__ >= 5 #define IPP_DEPRECATED( message ) __attribute__(( deprecated( message ))) #else #define IPP_DEPRECATED( message ) __attribute__(( deprecated )) #endif
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
I would recommend to change this to
#if ( (__GNUC__ * 100) + __GNUC_MINOR__) >= 405 #define IPP_DEPRECATED( message ) __attribute__(( deprecated( message ))) #else #define IPP_DEPRECATED( message ) __attribute__(( deprecated )) #endif
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...
Regards,
Stefan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Stefan,
the problem has been fixed in IPP v.2020 which is not available for download.
Thansk, Gennady
Link Copied
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thank you Stefan for discovering this bug, we will fix it in the one of the next IPP releases.
regards, Igor.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thank you for reporting the issue Stefan. Can you please open a ticket on https://supporttickets.intel.com
We can track this issue and fix it in the future release.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Stefan,
the problem has been fixed in IPP v.2020 which is not available for download.
Thansk, Gennady
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Gennady,
great! Thanks! Happy new year to you!
Regards,
STefan
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page