Last active
December 31, 2017 02:17
-
-
Save ahogen/fe303e7ab0e6614f7815f4a914c7a734 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
##################################################################### | |
# Download and install Icarus Verilog 10.2 on a Debian-based system. | |
# I wrote and executed this script on Linux Mint 18.3, which is based | |
# on Ubuntu 16.4. | |
# | |
# Author: Alex Hogen <https://github.com/ahogen> | |
# Created: 2017-12-12 | |
##################################################################### | |
sudo apt update && sudo apt install gcc g++ gperf libc6-dev && \ | |
wget -N ftp://icarus.com/pub/eda/verilog/v10/verilog-10.2.tar.gz && \ | |
tar -xvzf verilog-10.2.tar.gz && \ | |
cd verilog-10.2 && \ | |
./configure && \ | |
make && \ | |
sudo make install && \ | |
vvp-V && \ | |
echo "All Done!" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment