<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">Hi Prashant,<br><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">





<div>
<div style="direction:ltr;font-family:Tahoma;color:#000000;font-size:10pt"><span title="paraview-developers@paraview.org">Is it a linker problem because my external library is compiled through ICPC(intel c++) but Paraview is compiled with G++?</span></div></div></blockquote><div><br></div></div>Does this happen for both a debug build and release build of your external library? If it only happens in the release build, try making sure that you're using the Intel likers since they handle optimizations, specifically IPO and LTO, in a very specific and coordinating way that the GNU linkers are unaware of.  You can do this by setting the environment variables <span style="font-family:monospace,monospace">LD=xild</span> and <span style="font-family:monospace,monospace">AR=xiar</span> prior to running CMake.  Or if you're not using CMake then be sure to use <span style="font-family:arial,helvetica,sans-serif">Intel linkers</span><span style="font-family:monospace,monospace"> xild</span> and <span style="font-family:monospace,monospace">xiar</span> in place of the GNU linkers <span style="font-family:monospace,monospace">ld</span> and <span style="font-family:monospace,monospace">ar</span> respectively for whatever build tool you are using.<br><br></div><div class="gmail_extra">- Chuck<br></div></div>