Skip to content

Instantly share code, notes, and snippets.

@Razer6
Forked from robodhruv/modelsim_installation.md
Last active April 22, 2024 17:05
Show Gist options
  • Star 29 You must be signed in to star a gist
  • Fork 8 You must be signed in to fork a gist
  • Save Razer6/cafc172b5cffae189b4ecda06cf6c64f to your computer and use it in GitHub Desktop.
Save Razer6/cafc172b5cffae189b4ecda06cf6c64f to your computer and use it in GitHub Desktop.
Installing ModelSim on Ubuntu

ModelSim Installation on Ubuntu

Installation requirements

The free version of Modelsim is a 32-bit binary and therefore requires certain 32-bit libraries in order to work correctly. For Ubunutu, install the following packages

sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get install libc6:i386 libncurses5:i386 libstdc++6:i386 lib32ncurses6 libxft2 libxft2:i386 libxext6 libxext6:i386 

Installation

Download the ModelSim - Intel FPGA edition installer (both packages) from the Intel homepage.

Make the installer executable

chmod +x ModelSimSetup-20.1.1.720-linux.run

Run the installer and install ModelSim:

./ModelSimSetup-20.1.1.720-linux.run

We assume ModelSim to be installed to /opt. If this is the case, the binaries are in /opt/modelsim_ase/bin/. In order to work with these tools, you need to add this folder to the path variable. Therefore, add the following line to your terminal configuration file, e.g., .bashrc or .zshrc.

export PATH=$PATH:/opt/modelsim_ase/bin
@SchermannR
Copy link

Hi, fyi another error-case: lib32ncurses5 -> lib32ncurses6, b32ncurses5 -> b32ncurses6. He replaced the lib - see tiagorlampert/sAINT#10 (comment)

@afgse
Copy link

afgse commented May 12, 2021

This worked perfectly for me on the first try. Thank you.

@pcotret
Copy link

pcotret commented Oct 14, 2021

@marquesghm
Copy link

I'm using ubuntu 18 and Modelsim 20.1 only worked for me with the following libs:

sudo dpkg --add-architecture i386
sudo apt-get update

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

Source: https://stackoverflow.com/questions/62718951/how-to-fix-libxft-so-2-cannot-open-shared-object-file-when-simulating-hardware

@mahmutsalman
Copy link

It works like a charm. Thank you.

@GlenNicholls
Copy link

GlenNicholls commented Jun 24, 2022

I ran into issues with modelsim's non-vendor versions (i.e. PE, DE, SE 202*.*) on Ubuntu 20.04. After installing modelsim, the following fixed all errors (and lack of errors):

sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get install -y \
    libc6 libc6:i386 
    libncurses5 libncurses5:i386 \
    libstdc++6 libstdc++6:i386 \
    libxext6 libxext6:i386 \
    libxft2 libxft2:i386

@melchisedech333
Copy link

Thank you very much, I installed it and it worked perfectly.

May Jesus bless you so much.

@s-a-sakib
Copy link

model sim run command: ./intelFPGA/20.1/modelsim_ase/bin/vsim

@msina80
Copy link

msina80 commented May 22, 2023

It worked for me on the latest version,20.1(same as the link above).It might not work for an older version(such as 18.1).If it didn't work for you,try the latest version.

@Mouadnouiga
Copy link

thank you so much : )

@Engr-Majid
Copy link

Thank you so much

@Phyat22
Copy link

Phyat22 commented Feb 6, 2024

I have Ubuntu 23.10 and I tried to install this current version of Modelsim 20.1

I had the error of
/tools/intelFPGA/20.1/modelsim_ase/bin/../linux/vish: error while loading shared libraries: libXft.so.2: cannot open shared object file: No such file or directory

The libncurses5 is not available any more!!! Instead:
sudo apt-get install libncurses6

Then I installed
sudo apt-get install libxft2 libxft2:i386

and when I ran vsim it worked very well!

Hope this was helpful

@Phyat22
Copy link

Phyat22 commented Feb 6, 2024

Also another problem that I encountered
libXext.so.6: cannot open shared object file. libXext.so.6 not found

sudo apt install libxext6
sudo apt install libxext6:i386

@limitbreakerrr
Copy link

Thanks You :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment