successfully compiling IPP on mac.
Software:
Terminal
Intel IPP 11.1.088 C++ compiler, mac edition
Mac OSX 10.6.5
I was running into some errors before, but what I found was that i needed to add the -ipo parameter. This procedure can be extended to Linux systems as well.
instructions:
cd into folder containing files or drag individual .C and .h files into terminal
NOTE: if a test.out (or whatever output executable you produce) already exists in the folder, get rid of old versions, otherwise the compiler will try to compile the test.out file.
icpc -ipo -o test.out ipo_sample_defs.h ipo_sample_init.c ipo_sample_main.c ipo_sample_sum.c
Link to this comment:
All Comments (0)