Merge pull request #333 from Brikaa/iverilog
pkg(iverilog-11.0.0): Added iverilog 11.0.0
This commit is contained in:
commit
7d90cddf27
|
@ -0,0 +1,17 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
PREFIX=$(realpath $(dirname $0))
|
||||||
|
|
||||||
|
mkdir -p build/iverilog
|
||||||
|
cd build/iverilog
|
||||||
|
curl -L https://github.com/steveicarus/iverilog/archive/refs/tags/v11_0.tar.gz -o iverilog.tar.gz
|
||||||
|
tar xzf iverilog.tar.gz --strip-components=1
|
||||||
|
|
||||||
|
chmod +x ./autoconf.sh
|
||||||
|
./autoconf.sh
|
||||||
|
./configure --prefix="$PREFIX"
|
||||||
|
make -j$(nproc)
|
||||||
|
make install -j$(nproc)
|
||||||
|
|
||||||
|
cd ../../
|
||||||
|
rm -rf build
|
|
@ -0,0 +1,4 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
rename 's/$/\.v/' "$@" # Add .v extension
|
||||||
|
iverilog *.v
|
|
@ -0,0 +1,2 @@
|
||||||
|
#!/bin/bash
|
||||||
|
export PATH=$PWD/bin:$PATH
|
|
@ -0,0 +1,5 @@
|
||||||
|
{
|
||||||
|
"language": "iverilog",
|
||||||
|
"version": "11.0.0",
|
||||||
|
"aliases": ["verilog", "vvp"]
|
||||||
|
}
|
|
@ -0,0 +1,4 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
shift
|
||||||
|
vvp a.out "$@"
|
|
@ -0,0 +1,7 @@
|
||||||
|
module hello;
|
||||||
|
initial
|
||||||
|
begin
|
||||||
|
$display("OK");
|
||||||
|
$finish ;
|
||||||
|
end
|
||||||
|
endmodule
|
|
@ -343,6 +343,7 @@ Content-Type: application/json
|
||||||
`golfscript`,
|
`golfscript`,
|
||||||
`groovy`,
|
`groovy`,
|
||||||
`haskell`,
|
`haskell`,
|
||||||
|
`iverilog`,
|
||||||
`java`,
|
`java`,
|
||||||
`javascript`,
|
`javascript`,
|
||||||
`jelly`,
|
`jelly`,
|
||||||
|
|
|
@ -9,7 +9,7 @@ RUN apt-get update && apt-get install -y unzip autoconf build-essential libssl-d
|
||||||
libncursesw5-dev python3-pip libgmp-dev libmpfr-dev python2 libffi-dev gfortran\
|
libncursesw5-dev python3-pip libgmp-dev libmpfr-dev python2 libffi-dev gfortran\
|
||||||
libreadline-dev libblas-dev liblapack-dev libpcre3-dev libarpack2-dev libfftw3-dev \
|
libreadline-dev libblas-dev liblapack-dev libpcre3-dev libarpack2-dev libfftw3-dev \
|
||||||
libglpk-dev libqhull-dev libqrupdate-dev libsuitesparse-dev libsundials-dev \
|
libglpk-dev libqhull-dev libqrupdate-dev libsuitesparse-dev libsundials-dev \
|
||||||
libbz2-dev liblzma-dev libpcre2-dev && \
|
libbz2-dev liblzma-dev libpcre2-dev gperf bison flex g++ && \
|
||||||
ln -sf /bin/bash /bin/sh && \
|
ln -sf /bin/bash /bin/sh && \
|
||||||
rm -rf /var/lib/apt/lists/* && \
|
rm -rf /var/lib/apt/lists/* && \
|
||||||
update-alternatives --install /usr/bin/python python /usr/bin/python3.7 2
|
update-alternatives --install /usr/bin/python python /usr/bin/python3.7 2
|
||||||
|
|
Loading…
Reference in New Issue