mirror of https://github.com/YosysHQ/yosys.git
Switched to Python 3
This commit is contained in:
parent
f40d1b78b6
commit
c475deec6c
2
README
2
README
|
@ -56,7 +56,7 @@ For example on Ubuntu Linux 14.04 LTS the following commands will install all
|
|||
prerequisites for building yosys:
|
||||
|
||||
$ yosys_deps="build-essential clang bison flex libreadline-dev gawk
|
||||
tcl-dev libffi-dev git mercurial graphviz xdot pkg-config python"
|
||||
tcl-dev libffi-dev git mercurial graphviz xdot pkg-config python3"
|
||||
$ sudo apt-get install $yosys_deps
|
||||
|
||||
There are also pre-compiled Yosys binary packages for Ubuntu and Win32 as well
|
||||
|
|
|
@ -12,7 +12,7 @@ EXTRA_OBJS += techlibs/ice40/brams_init.mk
|
|||
|
||||
techlibs/ice40/brams_init.mk: techlibs/ice40/brams_init.py
|
||||
$(Q) mkdir -p techlibs/ice40
|
||||
$(P) python $<
|
||||
$(P) python3 $<
|
||||
$(Q) touch techlibs/ice40/brams_init.mk
|
||||
|
||||
techlibs/ice40/brams_init1.vh: techlibs/ice40/brams_init.mk
|
||||
|
|
|
@ -1,7 +1,4 @@
|
|||
#!/usr/bin/python
|
||||
|
||||
from __future__ import division
|
||||
from __future__ import print_function
|
||||
#!/usr/bin/env python3
|
||||
|
||||
def write_init_vh(filename, initbits):
|
||||
with open(filename, "w") as f:
|
||||
|
|
|
@ -11,7 +11,7 @@ EXTRA_OBJS += techlibs/xilinx/brams_init.mk
|
|||
|
||||
techlibs/xilinx/brams_init.mk: techlibs/xilinx/brams_init.py
|
||||
$(Q) mkdir -p techlibs/xilinx
|
||||
$(P) python $<
|
||||
$(P) python3 $<
|
||||
$(Q) touch $@
|
||||
|
||||
techlibs/xilinx/brams_init_36.vh: techlibs/xilinx/brams_init.mk
|
||||
|
|
|
@ -1,7 +1,4 @@
|
|||
#!/usr/bin/python
|
||||
|
||||
from __future__ import division
|
||||
from __future__ import print_function
|
||||
#!/usr/bin/env python3
|
||||
|
||||
with open("techlibs/xilinx/brams_init_18.vh", "w") as f:
|
||||
for i in range(8):
|
||||
|
|
|
@ -1,7 +1,4 @@
|
|||
#!/usr/bin/python
|
||||
|
||||
from __future__ import division
|
||||
from __future__ import print_function
|
||||
#!/usr/bin/env python3
|
||||
|
||||
import os
|
||||
import sys
|
||||
|
|
|
@ -8,7 +8,7 @@ rm -rf temp
|
|||
mkdir -p temp
|
||||
|
||||
echo "generating tests.."
|
||||
python generate.py
|
||||
python3 generate.py
|
||||
|
||||
{
|
||||
echo -n "all:"
|
||||
|
|
|
@ -1,7 +1,4 @@
|
|||
#!/usr/bin/python
|
||||
|
||||
from __future__ import division
|
||||
from __future__ import print_function
|
||||
#!/usr/bin/env python3
|
||||
|
||||
import sys
|
||||
import random
|
||||
|
|
|
@ -8,7 +8,7 @@ set -e
|
|||
rm -rf temp
|
||||
mkdir -p temp
|
||||
echo "generating tests.."
|
||||
python generate.py
|
||||
python3 generate.py
|
||||
|
||||
{
|
||||
all_targets="all_targets:"
|
||||
|
|
|
@ -1,7 +1,4 @@
|
|||
#!/usr/bin/python
|
||||
|
||||
from __future__ import division
|
||||
from __future__ import print_function
|
||||
#!/usr/bin/env python3
|
||||
|
||||
import sys
|
||||
import random
|
||||
|
|
|
@ -4,7 +4,7 @@ set -e
|
|||
rm -rf temp
|
||||
mkdir -p temp
|
||||
echo "generating tests.."
|
||||
python generate.py
|
||||
python3 generate.py
|
||||
|
||||
cd temp
|
||||
echo "running tests.."
|
||||
|
|
|
@ -1,7 +1,4 @@
|
|||
#!/usr/bin/python
|
||||
|
||||
from __future__ import division
|
||||
from __future__ import print_function
|
||||
#!/usr/bin/env python3
|
||||
|
||||
import sys
|
||||
import random
|
||||
|
|
|
@ -8,7 +8,7 @@ set -e
|
|||
rm -rf temp
|
||||
mkdir -p temp
|
||||
echo "generating tests.."
|
||||
python generate.py
|
||||
python3 generate.py
|
||||
|
||||
echo "running tests.."
|
||||
for i in $( ls temp/*.ys | sed 's,[^0-9],,g; s,^0*\(.\),\1,g;' ); do
|
||||
|
|
|
@ -1,7 +1,4 @@
|
|||
#!/usr/bin/python
|
||||
|
||||
from __future__ import division
|
||||
from __future__ import print_function
|
||||
#!/usr/bin/env python3
|
||||
|
||||
import argparse
|
||||
import fileinput
|
||||
|
|
Loading…
Reference in New Issue