| 44 | | Latest known revision known to be compilable under Linux is: **23** |
| | 45 | == Building problems == |
| | 46 | Sometimes linker will scream that some libraries are missing. Either you are really missing the libraries or your libraries might have diffirent names. Check the following folders: |
| | 47 | {{{ |
| | 48 | /usr/lib |
| | 49 | /usr/lib/x86_64-linux-gnu |
| | 50 | }}} |
| | 51 | for the missing libraries. When you find them, link them to **/usr/lib** |
| | 52 | {{{ |
| | 53 | melon@melon:/usr/lib$ sudo ln -s x86_64-linux-gnu/libfreetype.so.6 libfreetype.so |
| | 54 | }}} |
| | 55 | |
| | 56 | In the above example I have made a link, because linker was shouting that **libfreetype.so** was missing. Now I have a symbolic link: **/usr/lib/libfreetype.so** pointing to **/usr/lib/x86_64-linux-gnu/libfreetype.so.6** and compiler is satisfied. |