<html><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class="">Hi,<div class=""><br class=""></div><div class="">I think I found the real reason for my problems:</div><div class=""><br class=""></div><div class="">What I have are undefined references to __gxx_personality_v0 or runtime errors like </div><div class="">“<a href="https://stackoverflow.com/questions/18668003/the-procedure-entry-point-gxx-personality-v0-could-not-be-located" class="question-hyperlink" style="orphans: 2; widows: 2; background-color: rgb(255, 255, 255); margin: 0px 0px 0.5em; padding: 0px; border: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-position: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-alternates: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 1.35; vertical-align: baseline; color: rgb(36, 39, 41); text-decoration: none; cursor: pointer;">the procedure entry point __gxx_personality_v0 could not be located</a>” </div><div class="">or</div><div class=""><div class="">“<a href="https://stackoverflow.com/questions/18668003/the-procedure-entry-point-gxx-personality-v0-could-not-be-located" class="question-hyperlink" style="orphans: 2; widows: 2; background-color: rgb(255, 255, 255); margin: 0px 0px 0.5em; padding: 0px; border: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-position: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-alternates: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 1.35; vertical-align: baseline; color: rgb(36, 39, 41); text-decoration: none; cursor: pointer;">the procedure entry point <span style="color: rgb(0, 0, 0);" class="">__gxx_personality_sj0</span> could not be located</a>” </div></div><div class=""><br class=""></div><div class="">when I tried to mix Qt and gstreamer builds under windows.</div><div class=""><br class=""></div><div class="">The errors are only related to plugins that are linked against the stdc++ library.</div><div class=""><br class=""></div><div class="">My first idea was that this is related to the different MinGW Version ( 5.3.0 coming with QT , and 4.7.3 from cerebro build).</div><div class=""><br class=""></div><div class="">But after I managed to run a cerbero cross build  for win32 under Linux  with the distribution provided gcc 5.3.1</div><div class="">the problem was still there.</div><div class=""><br class=""></div><div class="">The real problem is related to 2 different ways of exception handling in gcc:</div><div class=""><a href="https://gcc.gnu.org/wiki/WindowsGCCImprovements" class="">https://gcc.gnu.org/wiki/WindowsGCCImprovements</a></div><div class="">The Qt build uses <span style="background-color: rgb(255, 255, 255);" class="">DWARF-2 (DW2) -> </span>__gxx_personality_v0</div><div class=""><span style="background-color: rgb(255, 255, 255);" class="">and the cebero cross builds use </span><span style="background-color: rgb(255, 255, 255);" class="">setjmp/longjmp (SJLJ) exception handling -> </span>__gxx_personality_sj0</div><div class=""><br class=""></div><div class="">Anyone had the same issue yet and found an easy solution?</div><div class=""><br class=""></div><div class="">Regards Roland</div><div class=""><br class=""></div><div class=""><br class=""></div></body></html>