Intel® Integrated Performance Primitives
Deliberate problems developing high-performance vision, signal, security, and storage applications.
6712 Discussions

How to run an IPP7.1 application on linux with static link command

Yuankun_Q_
Beginner
294 Views

How can I run an IPP7.1 application on linux with static link command? There is one example in the ipp7.1_user_guide but starting with icc (I did not install icc but only ipp). Does anyone know how to do it with gcc command? Thanks a lot for the help! (It is different from that of ipp6.1)

0 Kudos
2 Replies
Gennady_F_Intel
Moderator
294 Views

it's not necessarily to use icc, but you can easily to use gcc compiler for that. please check the Release Notes which version of gcc compilers are supported.

0 Kudos
Pavel_B_Intel1
Employee
294 Views

The simple example:

g++ -o ipptwo ipptwo.cpp -I $IPPROOT/include $IPPROOT/lib/ia32/libippi.a $IPPROOT/lib/ia32/libipps.a $IPPROOT/lib/ia32/libippcore.a
 

Pavel

0 Kudos
Reply