Skip to content

Instantly share code, notes, and snippets.

@ahogen
Last active December 31, 2017 02:17
Show Gist options
  • Save ahogen/fe303e7ab0e6614f7815f4a914c7a734 to your computer and use it in GitHub Desktop.
Save ahogen/fe303e7ab0e6614f7815f4a914c7a734 to your computer and use it in GitHub Desktop.
#!/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