<div dir="ltr"><div class="gmail_extra">Seeing as how SD CARD space is a premium on the Pi you should probably clean up after you build and install. This include doing things like this after make install:</div><div class="gmail_extra"><br></div><div class="gmail_extra">cd $HOME/fpc</div><div class="gmail_extra">rm -rf .svn<br></div><div class="gmail_extra">find packages -name units | xargs rm -rf {0}</div><div class="gmail_extra">find rtl -name units | xargs rm -rf {0}<br></div><div class="gmail_extra"><div class="gmail_extra">find packages -iname "*make*" -delete</div><div class="gmail_extra">find rtl -iname "*make*" -delete<br></div><div>rm -rf compiler<br></div></div><div class="gmail_extra">rm -rf installer<br></div><div class="gmail_extra">rm -rf share</div><div class="gmail_extra"><br></div><div class="gmail_extra">Which will free up A LOT of SD CARD space. Also an addition note, there is no real reason (IMO) to install trunk or test revisions to root owned folders. Usually PREFIX=$HOME/fpc or something thereof will suffice. Oh and the complete command to generation a valid fpc.cfg (assuming install path is $HOME/fpc) is:</div><div class="gmail_extra"><br></div><div class="gmail_extra">$HOME/fpc/fpcmkcfg -d basepath=$HOME/fpc/lib/fpc/\$FPCVERSION -o $HOME/fpc/bin/fpc.cfg<br></div><div class="gmail_extra"><br></div><div class="gmail_extra">It should be noted that the default swap file size of Raspbian is only 100MB which combined with a possible GPU memory settings will occasionally cause Lazarus builds to fail mysteriously.</div></div>