I was getting compile time issues on ubuntu ( only as of todays git pull though... which is strange )<blockquote class="webkit-indent-blockquote" style="margin: 0 0 0 40px; border: none; padding: 0px;"><div><div><br> src/switch_core.c: In function ‘switch_system_fork’:</div>

</div><div><div> src/switch_core.c:2405: error: ignoring return value of ‘system’, declared with attribute </div></div></blockquote><div><div><br></div><div>fixed it by making like 2405 of switch_core.c </div><div><br></div>

</div><blockquote class="webkit-indent-blockquote" style="margin: 0 0 0 40px; border: none; padding: 0px;"><div><div>if ( system(cmd) ) {};</div></div></blockquote><div><div><br></div><div>seems related to <a href="https://wiki.ubuntu.com/CompilerFlags">https://wiki.ubuntu.com/CompilerFlags</a></div>

</div><blockquote class="webkit-indent-blockquote" style="margin: 0 0 0 40px; border: none; padding: 0px;"><div><div><br></div></div><div><div><span class="Apple-style-span" style="color: rgb(51, 51, 51); font-family: &#39;Ubuntu Beta&#39;, UbuntuBeta, Ubuntu, &#39;Bitstream Vera Sans&#39;, &#39;DejaVu Sans&#39;, Tahoma, sans-serif; font-size: 13px; line-height: 19px; "><pre>

error: ignoring return value of &#39;int system(const char*)&#39;, declared with attribute warn_unused_result</pre></span></div></div>The return value from <tt>system()</tt>, <tt>write()</tt>, and similar functions should be evaluated and handled appropriately. In cases where one absolutely must throw away the return value, it can be discarded with an empty test: <tt>if (system(&quot;...&quot;)) { } </tt>, though this is not recommended.</blockquote>

<div><div><meta http-equiv="content-type" content="text/html; charset=utf-8"><span class="Apple-style-span" style="color: rgb(51, 51, 51); font-family: &#39;Ubuntu Beta&#39;, UbuntuBeta, Ubuntu, &#39;Bitstream Vera Sans&#39;, &#39;DejaVu Sans&#39;, Tahoma, sans-serif; font-size: 13px; line-height: 19px; "><span class="anchor" id="line-53"></span></span></div>

<meta http-equiv="content-type" content="text/html; charset=utf-8"><div><br></div><div><br></div><div>maybe a better solution would be to change compiler flags... not sure...</div><div>just letting someone smarter than me know about it :)</div>

<div><br></div><div>-- </div>Sincerely<br><br>Jay<br>
</div>