Changes between Version 8 and Version 9 of Linux


Ignore:
Timestamp:
05/18/13 10:44:36 (12 years ago)
Author:
melon
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Linux

    v8 v9  
    4141to start the compilation.
    4242
     43Latest known revision known to be compilable under Linux is: **23**
    4344
    44 Latest known revision known to be compilable under Linux is: **23**
     45== Building problems ==
     46Sometimes 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}}}
     51for the missing libraries. When you find them, link them to **/usr/lib**
     52{{{
     53melon@melon:/usr/lib$ sudo ln -s x86_64-linux-gnu/libfreetype.so.6 libfreetype.so
     54}}}
     55
     56In 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.