PHPFixing
  • Privacy Policy
  • TOS
  • Ask Question
  • Contact Us
  • Home
  • PHP
  • Programming
  • SQL Injection
  • Web3.0

Saturday, May 14, 2022

[FIXED] How to fix libXft.so.2: cannot open shared object file when simulating hardware in Quartus 20.1 running on Pop_OS 20.04

 May 14, 2022     intel-fpga, quartus, ubuntu     No comments   

Issue

I have recently moved to Linux and am getting used to the OS, I managed to install and run Quartus 20.1 Lite and I was testing it out with an old working project. When I opened my waveform and ran the simulation I get

root/intelFPGA_lite/20.1/modelsim_ase/linuxaloem//vish: error while loading shared libraries: libXft.so.2: cannot open shared object file: No such file or directory

I have libXft.so.2 installed as I was able to find it using locate in the terminal. Is there something I'm missing? does the file need to be in the file listed above or do I need to play with permissions somehow?


Solution

This is s common problem with using the "free" modelsim on modern linux distribution. Modelsim is 32b and is not very well packaged so it doesn't fetch its dependencies.

now, the solution is to install a lot of 32b packages.

    sudo  apt-get install libxft2 libxft2:i386 lib32ncurses5
    sudo apt install libxext6
    sudo apt install libxext6:i386

ref: https://yoloh3.github.io/linux/2016/12/24/install-modelsim-in-linux/



Answered By - fgagnaire
Answer Checked By - Gilberto Lyons (PHPFixing Admin)
  • Share This:  
  •  Facebook
  •  Twitter
  •  Stumble
  •  Digg
Newer Post Older Post Home

0 Comments:

Post a Comment

Note: Only a member of this blog may post a comment.

Total Pageviews

Featured Post

Why Learn PHP Programming

Why Learn PHP Programming A widely-used open source scripting language PHP is one of the most popular programming languages in the world. It...

Subscribe To

Posts
Atom
Posts
Comments
Atom
Comments

Copyright © PHPFixing