Помилки при використанні програмного забезпечення


3

Я намагався встановити ghdlі , gtkwaveале не зміг до сих пір.

Ось що я отримую:

sudo apt-get install ghdl

Reading package lists... Done 

Building dependency tree        
Reading state information... Done

Package ghdl is not available, but is referred to by another package. This may mean that the package is missing,has been obsoleted, or
is only available from another source

Ви нещодавно чи видалили додані будь-які програми? Запустіть sudo apt-get updateі подивіться, чи проблема все-таки виникає
fosslinux

ghdl ви можете спробувати з theintobooks.wordpress.com/2016/08/24/… відповідно до фактичного веб-сайту, він не оновлювався з 2010 року. Але ви повинні мати змогу встановити gtkwaveBnormally throughsudo apt-get install gtkwave
Terrance

Відповіді:


1

Я використовував цей скрипт, щоб встановити його безпосередньо з сховища github, яке востаннє оновлено вчора ...

#!/bin/bash

# First get the file from github
git clone https://github.com/tgingold/ghdl
cd ghdl
./configure --prefix=/usr/local

# fatal error: zlib.h: No such file or directory include <zlib.h>
sudo apt-get -y install libz-dev

make
make install
sudo apt-get -y install gtkwave

# Usage instructions:
printf "\n\n\nUsage instructions:\n"
wget -qO- https://github.com/chGoodchild/setup_scripts/raw/master/using_ghdl.sh

Ви можете виконати сценарій, скопіювавши наступні команди у свій термінал:

wget https://raw.githubusercontent.com/chGoodchild/setup_scripts/master/ghdl.sh
chmod +x ghdl.sh
sudo ./ghdl.sh
Використовуючи наш веб-сайт, ви визнаєте, що прочитали та зрозуміли наші Політику щодо файлів cookie та Політику конфіденційності.
Licensed under cc by-sa 3.0 with attribution required.