Intel® Integrated Performance Primitives
Deliberate problems developing high-performance vision, signal, security, and storage applications.
Announcements
FPGA community forums and blogs on community.intel.com are migrating to the new Altera Community and are read-only. For urgent support needs during this transition, please visit the FPGA Design Resources page or contact an Altera Authorized Distributor.

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

Yuankun_Q_
Beginner
726 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
726 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
726 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