Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Getting Started - Installing dependencies using the package manager] libncursesw5 cannot be installed on Ubuntu 24.04 #24589

Open
Ebed-melech opened this issue Sep 17, 2024 · 2 comments

Comments

@Ebed-melech
Copy link

Description

Hi there,

It seems libncursesw5 is unavailable for use on ubuntu 24.04 so I changed the code on apt-requirements.txt (on my device) to use libncursesw6 instead.

Would this cause any problems in using the platform for verilator simulations?

Thanks

@jwnrt
Copy link
Contributor

jwnrt commented Sep 18, 2024

Hi, we're still working on 24.04 support but it mostly works fine.

If you installed Verilator from source (see these docs) then it will be statically linked and should work fine.

Unfortunately our Clang toolchain for building RISC-V software is dynamically linked against libncursesw5 and won't work out of the box. You could work around this by creating a symlink from v5 to v6, but please do so at your own risk (v6 seems to contain all the symbols from v5...):

sudo ln -s libncursesw.so.6 /usr/lib/x86_64-linux-gnu/libncursesw.so.5

We'll try fix the toolchain issue. Version 6 is supported back to Ubuntu 20.04 so it shouldn't cause breakages there.

@jwnrt
Copy link
Contributor

jwnrt commented Sep 18, 2024

CC @AlexJones0

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants