Intel® Integrated Performance Primitives
Deliberate problems developing high-performance vision, signal, security, and storage applications.
Announcements
FPGA community forums and blogs have moved to the Altera Community. Existing Intel Community members can sign in with their current credentials.

ippsc.lib did not found even Intel(R) Parallel Studio XE 2015 is installed

vijendra_k_
Beginner
906 Views

Hi,
I had installed trial version of Intel(R) Parallel Studio XE 2015 for Windows.
But it does not contain ippsc.lib in C:\Program Files (x86)\Intel\Composer XE 2015\ipp\lib\ia32 folder
how do i get ippsc.lib ?

0 Kudos
4 Replies
Sergey_K_Intel
Employee
906 Views

Hi,

Look here for the solution: https://software.intel.com/en-us/forums/topic/531021

0 Kudos
vijendra_k_
Beginner
906 Views

Hi sergey,

Thanks for reply. The link you suggested worked for me.

I got ippsc.lib in directory.

I had downloaded sample applications from

https://software.intel.com/en-us/articles/code-samples-for-intel-integrated-performance-primitives-intel-ipp-library-71

but when i tried to build sample application speech-codecs, its gives me linking errors as 

ippcore_l.lib
ipps_l.lib
ippsc_l.lib
ippvm_l.lib not dound

Why it is trying to find lib with _l , my all libs are present without _l ???

0 Kudos
Sergey_K_Intel
Employee
906 Views

"_l" library name suffix is pre-8.0 version feature. After that, the names were changed to "ipp<lib code>mt.lib". "mt" here means not multi-threading, it is just Microsoft-like library naming style. So, the static libs are all "*mt.lib", dynamic export libraries are "ipp<library code>.lib" without "mt".

You need to find in 7.1 samples how command line to linker is generated and change *_l.lib to *mt.lib.

0 Kudos
Ying_H_Intel
Moderator
906 Views

Just for your information. 

The "latest" legacy samples like speech codec, audio-video codec etc. are available at the URL.  IPP 8.0 sample page:  

https://software.intel.com/en-us/articles/code-samples-for-intel-integrated-performance-primitives-library

=>

Best Regards,

Ying

0 Kudos
Reply