Jump to content

egildon

Members
  • Posts

    7
  • Joined

  • Last visited

Community Answers

  1. egildon's post in Error on fresh install possibly causing Leadwerks 4.5/4.6 to fail was marked as the answer   
    Ok, So I was able to figure out what was going on.
    In my case  had a change in the placement of a True Type Font which fixed by using to create new Symbolic Links;
    cd /usr/shar/fonts/truetype/ sudo ln -s ./ubuntu ./ubuntu-font-family (Thank you user Carlb)
     
    I was missing some other libraries which were referenced in Josh's post:
    sudo apt-get install libglu1-mesa-dev sudo apt-get install libcurl4-openssl-dev sudo apt-get install libxft-dev (Thank you Admin Josh)
     
    I was missing an additional library for the AL sound library:
    sudo apt-get install libalut-dev (Thank you ME! ?)
     
    After making all of these changes LE would compile cleanly (with CodeBlocks) but I would still fail with warnings.
    ||=== Build failed: 1 error(s), 26 warning(s) (0 minute(s), 5 second(s)) ===|  
    This problem is found here.
    And is solved by adding the
    -no-pie flag into the compiler you are using which iirc stands for Position Independent Executable.
    HTH
     
    Best!
     
×
×
  • Create New...