c++ - I'm getting symbol _cilk_spawn could not be resolved when compiling with icpc -
im using ubuntu 14.04 & eclipse & intel compiler v 15
i have 2 same programs (which use cilk commands) (one c program , other cpp program).
i can compile icc (without problem)
but when i'm using icpc (cpp program) i'm getting errors: symbol _cilk_spawn not resolved
in same 2 programs im not using flags.
what different cpp program, cant compile it
the keyword "_cilk_spawn", capital "c". c/c++ convention non-standard extensions have leading underscore , start capital letter.
you can include cilk.h defines macros allow use "cilk_spawn", "cilk_sync" , "cilk_for".
Comments
Post a Comment