siliconcompiler 0.33.0__py3-none-any.whl → 0.33.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- siliconcompiler/_common.py +5 -0
- siliconcompiler/_metadata.py +1 -1
- siliconcompiler/apps/sc_install.py +7 -0
- siliconcompiler/apps/sc_remote.py +7 -2
- siliconcompiler/core.py +34 -12
- siliconcompiler/metric.py +59 -0
- siliconcompiler/record.py +6 -2
- siliconcompiler/remote/client.py +10 -3
- siliconcompiler/remote/server.py +7 -2
- siliconcompiler/report/dashboard/cli/__init__.py +2 -0
- siliconcompiler/report/dashboard/cli/board.py +34 -30
- siliconcompiler/report/report.py +10 -5
- siliconcompiler/report/utils.py +12 -6
- siliconcompiler/scheduler/__init__.py +137 -974
- siliconcompiler/scheduler/send_messages.py +9 -3
- siliconcompiler/scheduler/slurm.py +10 -43
- siliconcompiler/scheduler/taskscheduler.py +320 -0
- siliconcompiler/schema/schema_cfg.py +2 -2
- siliconcompiler/tool.py +127 -19
- siliconcompiler/tools/_common/asic.py +5 -5
- siliconcompiler/tools/bluespec/convert.py +2 -1
- siliconcompiler/tools/builtin/_common.py +9 -2
- siliconcompiler/tools/builtin/concatenate.py +6 -2
- siliconcompiler/tools/builtin/minimum.py +7 -2
- siliconcompiler/tools/builtin/mux.py +7 -2
- siliconcompiler/tools/builtin/nop.py +7 -2
- siliconcompiler/tools/builtin/verify.py +7 -3
- siliconcompiler/tools/chisel/convert.py +10 -10
- siliconcompiler/tools/klayout/drc.py +2 -2
- siliconcompiler/tools/klayout/klayout_show.py +6 -6
- siliconcompiler/tools/klayout/klayout_utils.py +12 -12
- siliconcompiler/tools/netgen/count_lvs.py +2 -2
- siliconcompiler/tools/netgen/lvs.py +1 -1
- siliconcompiler/tools/openroad/_apr.py +2 -2
- siliconcompiler/tools/openroad/scripts/apr/sc_init_floorplan.tcl +1 -7
- siliconcompiler/tools/openroad/scripts/common/procs.tcl +18 -0
- siliconcompiler/tools/openroad/scripts/common/read_input_files.tcl +1 -7
- siliconcompiler/tools/opensta/scripts/sc_timing.tcl +10 -0
- siliconcompiler/tools/opensta/timing.py +11 -0
- siliconcompiler/tools/slang/__init__.py +3 -3
- siliconcompiler/tools/slang/elaborate.py +6 -6
- siliconcompiler/tools/slang/lint.py +1 -3
- siliconcompiler/tools/vpr/_xml_constraint.py +8 -8
- siliconcompiler/tools/yosys/prepareLib.py +2 -2
- siliconcompiler/tools/yosys/sc_synth_asic.tcl +43 -1
- siliconcompiler/tools/yosys/screenshot.py +1 -1
- siliconcompiler/tools/yosys/syn_asic.py +5 -5
- siliconcompiler/toolscripts/_tools.json +8 -6
- siliconcompiler/toolscripts/rhel8/install-chisel.sh +9 -2
- siliconcompiler/toolscripts/rhel8/install-icarus.sh +10 -3
- siliconcompiler/toolscripts/rhel8/install-klayout.sh +8 -1
- siliconcompiler/toolscripts/rhel8/install-magic.sh +9 -2
- siliconcompiler/toolscripts/rhel8/install-montage.sh +1 -1
- siliconcompiler/toolscripts/rhel8/install-netgen.sh +9 -2
- siliconcompiler/toolscripts/rhel8/install-slang.sh +11 -4
- siliconcompiler/toolscripts/rhel8/install-surelog.sh +9 -2
- siliconcompiler/toolscripts/rhel8/install-sv2v.sh +11 -4
- siliconcompiler/toolscripts/rhel8/install-verible.sh +11 -3
- siliconcompiler/toolscripts/rhel8/install-verilator.sh +10 -3
- siliconcompiler/toolscripts/rhel8/install-xyce.sh +15 -10
- siliconcompiler/toolscripts/rhel9/install-chisel.sh +9 -2
- siliconcompiler/toolscripts/rhel9/install-ghdl.sh +9 -2
- siliconcompiler/toolscripts/rhel9/install-gtkwave.sh +10 -3
- siliconcompiler/toolscripts/rhel9/install-icarus.sh +10 -3
- siliconcompiler/toolscripts/rhel9/install-klayout.sh +8 -1
- siliconcompiler/toolscripts/rhel9/install-magic.sh +9 -2
- siliconcompiler/toolscripts/rhel9/install-montage.sh +1 -1
- siliconcompiler/toolscripts/rhel9/install-netgen.sh +9 -2
- siliconcompiler/toolscripts/rhel9/install-openroad.sh +16 -3
- siliconcompiler/toolscripts/rhel9/install-opensta.sh +17 -5
- siliconcompiler/toolscripts/rhel9/install-slang.sh +11 -4
- siliconcompiler/toolscripts/rhel9/install-surelog.sh +9 -2
- siliconcompiler/toolscripts/rhel9/install-sv2v.sh +11 -4
- siliconcompiler/toolscripts/rhel9/install-verible.sh +11 -3
- siliconcompiler/toolscripts/rhel9/install-verilator.sh +10 -3
- siliconcompiler/toolscripts/rhel9/install-vpr.sh +9 -2
- siliconcompiler/toolscripts/rhel9/install-xdm.sh +10 -2
- siliconcompiler/toolscripts/rhel9/install-xyce.sh +15 -10
- siliconcompiler/toolscripts/rhel9/install-yosys-moosic.sh +9 -2
- siliconcompiler/toolscripts/rhel9/install-yosys-parmys.sh +10 -3
- siliconcompiler/toolscripts/rhel9/install-yosys-slang.sh +10 -2
- siliconcompiler/toolscripts/rhel9/install-yosys.sh +9 -2
- siliconcompiler/toolscripts/ubuntu20/install-bambu.sh +10 -2
- siliconcompiler/toolscripts/ubuntu20/install-bluespec.sh +10 -3
- siliconcompiler/toolscripts/ubuntu20/install-chisel.sh +9 -2
- siliconcompiler/toolscripts/ubuntu20/install-ghdl.sh +9 -2
- siliconcompiler/toolscripts/ubuntu20/install-gtkwave.sh +9 -2
- siliconcompiler/toolscripts/ubuntu20/install-icarus.sh +9 -2
- siliconcompiler/toolscripts/ubuntu20/install-icepack.sh +9 -2
- siliconcompiler/toolscripts/ubuntu20/install-klayout.sh +8 -1
- siliconcompiler/toolscripts/ubuntu20/install-magic.sh +9 -2
- siliconcompiler/toolscripts/ubuntu20/install-montage.sh +1 -1
- siliconcompiler/toolscripts/ubuntu20/install-netgen.sh +9 -2
- siliconcompiler/toolscripts/ubuntu20/install-nextpnr.sh +9 -2
- siliconcompiler/toolscripts/ubuntu20/install-openroad.sh +16 -3
- siliconcompiler/toolscripts/ubuntu20/install-opensta.sh +16 -5
- siliconcompiler/toolscripts/ubuntu20/install-slang.sh +11 -4
- siliconcompiler/toolscripts/ubuntu20/install-slurm.sh +9 -2
- siliconcompiler/toolscripts/ubuntu20/install-surelog.sh +10 -2
- siliconcompiler/toolscripts/ubuntu20/install-sv2v.sh +11 -4
- siliconcompiler/toolscripts/ubuntu20/install-verible.sh +11 -3
- siliconcompiler/toolscripts/ubuntu20/install-verilator.sh +9 -2
- siliconcompiler/toolscripts/ubuntu20/install-xdm.sh +10 -2
- siliconcompiler/toolscripts/ubuntu20/install-xyce.sh +13 -8
- siliconcompiler/toolscripts/ubuntu20/install-yosys-moosic.sh +9 -2
- siliconcompiler/toolscripts/ubuntu20/install-yosys.sh +9 -2
- siliconcompiler/toolscripts/ubuntu22/install-bambu.sh +10 -2
- siliconcompiler/toolscripts/ubuntu22/install-bluespec.sh +10 -3
- siliconcompiler/toolscripts/ubuntu22/install-chisel.sh +9 -2
- siliconcompiler/toolscripts/ubuntu22/install-ghdl.sh +9 -2
- siliconcompiler/toolscripts/ubuntu22/install-gtkwave.sh +9 -2
- siliconcompiler/toolscripts/ubuntu22/install-icarus.sh +9 -2
- siliconcompiler/toolscripts/ubuntu22/install-icepack.sh +9 -2
- siliconcompiler/toolscripts/ubuntu22/install-klayout.sh +8 -1
- siliconcompiler/toolscripts/ubuntu22/install-magic.sh +9 -2
- siliconcompiler/toolscripts/ubuntu22/install-montage.sh +1 -1
- siliconcompiler/toolscripts/ubuntu22/install-netgen.sh +9 -2
- siliconcompiler/toolscripts/ubuntu22/install-nextpnr.sh +9 -2
- siliconcompiler/toolscripts/ubuntu22/install-openroad.sh +16 -3
- siliconcompiler/toolscripts/ubuntu22/install-opensta.sh +17 -5
- siliconcompiler/toolscripts/ubuntu22/install-slang.sh +11 -4
- siliconcompiler/toolscripts/ubuntu22/install-slurm.sh +9 -2
- siliconcompiler/toolscripts/ubuntu22/install-surelog.sh +10 -2
- siliconcompiler/toolscripts/ubuntu22/install-sv2v.sh +11 -4
- siliconcompiler/toolscripts/ubuntu22/install-verible.sh +11 -3
- siliconcompiler/toolscripts/ubuntu22/install-verilator.sh +9 -2
- siliconcompiler/toolscripts/ubuntu22/install-vpr.sh +9 -2
- siliconcompiler/toolscripts/ubuntu22/install-xdm.sh +10 -2
- siliconcompiler/toolscripts/ubuntu22/install-xyce.sh +13 -8
- siliconcompiler/toolscripts/ubuntu22/install-yosys-moosic.sh +9 -2
- siliconcompiler/toolscripts/ubuntu22/install-yosys-parmys.sh +10 -3
- siliconcompiler/toolscripts/ubuntu22/install-yosys-slang.sh +10 -2
- siliconcompiler/toolscripts/ubuntu22/install-yosys.sh +9 -2
- siliconcompiler/toolscripts/ubuntu24/install-bambu.sh +12 -4
- siliconcompiler/toolscripts/ubuntu24/install-bluespec.sh +10 -3
- siliconcompiler/toolscripts/ubuntu24/install-chisel.sh +9 -2
- siliconcompiler/toolscripts/ubuntu24/install-ghdl.sh +9 -2
- siliconcompiler/toolscripts/ubuntu24/install-gtkwave.sh +9 -2
- siliconcompiler/toolscripts/ubuntu24/install-icarus.sh +9 -2
- siliconcompiler/toolscripts/ubuntu24/install-icepack.sh +9 -2
- siliconcompiler/toolscripts/ubuntu24/install-klayout.sh +8 -1
- siliconcompiler/toolscripts/ubuntu24/install-magic.sh +9 -2
- siliconcompiler/toolscripts/ubuntu24/install-montage.sh +1 -1
- siliconcompiler/toolscripts/ubuntu24/install-netgen.sh +9 -2
- siliconcompiler/toolscripts/ubuntu24/install-nextpnr.sh +9 -2
- siliconcompiler/toolscripts/ubuntu24/install-openroad.sh +16 -3
- siliconcompiler/toolscripts/ubuntu24/install-opensta.sh +17 -5
- siliconcompiler/toolscripts/ubuntu24/install-slang.sh +11 -4
- siliconcompiler/toolscripts/ubuntu24/install-slurm.sh +9 -2
- siliconcompiler/toolscripts/ubuntu24/install-surelog.sh +10 -2
- siliconcompiler/toolscripts/ubuntu24/install-sv2v.sh +11 -4
- siliconcompiler/toolscripts/ubuntu24/install-verible.sh +11 -3
- siliconcompiler/toolscripts/ubuntu24/install-verilator.sh +9 -2
- siliconcompiler/toolscripts/ubuntu24/install-vpr.sh +9 -2
- siliconcompiler/toolscripts/ubuntu24/install-xdm.sh +10 -2
- siliconcompiler/toolscripts/ubuntu24/install-xyce.sh +13 -8
- siliconcompiler/toolscripts/ubuntu24/install-yosys-moosic.sh +9 -2
- siliconcompiler/toolscripts/ubuntu24/install-yosys-parmys.sh +10 -3
- siliconcompiler/toolscripts/ubuntu24/install-yosys-slang.sh +10 -2
- siliconcompiler/toolscripts/ubuntu24/install-yosys.sh +9 -2
- siliconcompiler/utils/__init__.py +11 -0
- siliconcompiler/utils/flowgraph.py +6 -101
- siliconcompiler/utils/issue.py +15 -23
- siliconcompiler/utils/logging.py +2 -2
- {siliconcompiler-0.33.0.dist-info → siliconcompiler-0.33.1.dist-info}/METADATA +2 -2
- {siliconcompiler-0.33.0.dist-info → siliconcompiler-0.33.1.dist-info}/RECORD +170 -169
- {siliconcompiler-0.33.0.dist-info → siliconcompiler-0.33.1.dist-info}/WHEEL +1 -1
- {siliconcompiler-0.33.0.dist-info → siliconcompiler-0.33.1.dist-info}/entry_points.txt +0 -0
- {siliconcompiler-0.33.0.dist-info → siliconcompiler-0.33.1.dist-info}/licenses/LICENSE +0 -0
- {siliconcompiler-0.33.0.dist-info → siliconcompiler-0.33.1.dist-info}/top_level.txt +0 -0
|
@@ -1,10 +1,17 @@
|
|
|
1
1
|
#!/bin/bash
|
|
2
2
|
|
|
3
|
-
set -
|
|
3
|
+
set -ex
|
|
4
4
|
|
|
5
5
|
# Get directory of script
|
|
6
6
|
src_path=$(cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P)/..
|
|
7
7
|
|
|
8
|
+
USE_SUDO_INSTALL="${USE_SUDO_INSTALL:-yes}"
|
|
9
|
+
if [ "${USE_SUDO_INSTALL:-yes}" = "yes" ]; then
|
|
10
|
+
SUDO_INSTALL=sudo
|
|
11
|
+
else
|
|
12
|
+
SUDO_INSTALL=""
|
|
13
|
+
fi
|
|
14
|
+
|
|
8
15
|
sudo yum install -y git
|
|
9
16
|
|
|
10
17
|
mkdir -p deps
|
|
@@ -56,6 +63,6 @@ YOSYS_PLUGIN=$(yosys-config --datdir)/plugins/
|
|
|
56
63
|
cd parmys
|
|
57
64
|
|
|
58
65
|
make -j$(nproc)
|
|
59
|
-
|
|
60
|
-
|
|
66
|
+
$SUDO_INSTALL mkdir -p $YOSYS_PLUGIN
|
|
67
|
+
$SUDO_INSTALL cp parmys-plugin/build/parmys.so $YOSYS_PLUGIN
|
|
61
68
|
cd -
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/bin/bash
|
|
2
2
|
|
|
3
|
-
set -
|
|
3
|
+
set -ex
|
|
4
4
|
|
|
5
5
|
# Get directory of script
|
|
6
6
|
src_path=$(cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P)/..
|
|
@@ -20,5 +20,13 @@ git checkout $(python3 ${src_path}/_tools.py --tool yosys-slang --field git-comm
|
|
|
20
20
|
git submodule update --init --recursive
|
|
21
21
|
|
|
22
22
|
make -j$(nproc)
|
|
23
|
-
|
|
23
|
+
|
|
24
|
+
USE_SUDO_INSTALL="${USE_SUDO_INSTALL:-yes}"
|
|
25
|
+
if [ "${USE_SUDO_INSTALL:-yes}" = "yes" ]; then
|
|
26
|
+
SUDO_INSTALL="sudo -E PATH=$PATH"
|
|
27
|
+
else
|
|
28
|
+
SUDO_INSTALL=""
|
|
29
|
+
fi
|
|
30
|
+
|
|
31
|
+
$SUDO_INSTALL make install
|
|
24
32
|
cd -
|
|
@@ -1,10 +1,17 @@
|
|
|
1
1
|
#!/bin/bash
|
|
2
2
|
|
|
3
|
-
set -
|
|
3
|
+
set -ex
|
|
4
4
|
|
|
5
5
|
# Get directory of script
|
|
6
6
|
src_path=$(cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P)/..
|
|
7
7
|
|
|
8
|
+
USE_SUDO_INSTALL="${USE_SUDO_INSTALL:-yes}"
|
|
9
|
+
if [ "${USE_SUDO_INSTALL:-yes}" = "yes" ]; then
|
|
10
|
+
SUDO_INSTALL=sudo
|
|
11
|
+
else
|
|
12
|
+
SUDO_INSTALL=""
|
|
13
|
+
fi
|
|
14
|
+
|
|
8
15
|
# From: https://github.com/YosysHQ/yosys/blob/f2c689403ace0637b7455bac8f1e8d4bc312e74f/README.md
|
|
9
16
|
sudo yum group install -y "Development Tools"
|
|
10
17
|
sudo yum install -y bison flex readline-devel gawk \
|
|
@@ -21,5 +28,5 @@ git checkout $(python3 ${src_path}/_tools.py --tool yosys --field git-commit)
|
|
|
21
28
|
git submodule update --init --recursive
|
|
22
29
|
|
|
23
30
|
make -j$(nproc) PREFIX="$PREFIX"
|
|
24
|
-
|
|
31
|
+
$SUDO_INSTALL make install PREFIX="$PREFIX"
|
|
25
32
|
cd -
|
|
@@ -1,10 +1,17 @@
|
|
|
1
1
|
#!/bin/sh
|
|
2
2
|
|
|
3
|
-
set -
|
|
3
|
+
set -ex
|
|
4
4
|
|
|
5
5
|
# Get directory of script
|
|
6
6
|
src_path=$(cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P)/..
|
|
7
7
|
|
|
8
|
+
USE_SUDO_INSTALL="${USE_SUDO_INSTALL:-yes}"
|
|
9
|
+
if [ "${USE_SUDO_INSTALL:-yes}" = "yes" ]; then
|
|
10
|
+
SUDO_INSTALL=sudo
|
|
11
|
+
else
|
|
12
|
+
SUDO_INSTALL=""
|
|
13
|
+
fi
|
|
14
|
+
|
|
8
15
|
sudo apt-get install -y autoconf autoconf-archive automake libtool \
|
|
9
16
|
libbdd-dev libboost-all-dev libmpc-dev libmpfr-dev \
|
|
10
17
|
libxml2-dev liblzma-dev libmpfi-dev zlib1g-dev libicu-dev bison doxygen flex \
|
|
@@ -30,6 +37,7 @@ if [ ! -z ${PREFIX} ]; then
|
|
|
30
37
|
args=--prefix="$PREFIX"
|
|
31
38
|
else
|
|
32
39
|
args=--prefix=/opt/panda
|
|
40
|
+
SUDO_INSTALL=sudo
|
|
33
41
|
|
|
34
42
|
sudo mkdir -p /opt/panda
|
|
35
43
|
sudo chown $USER:$USER /opt/panda
|
|
@@ -42,7 +50,7 @@ cd obj
|
|
|
42
50
|
|
|
43
51
|
../configure --enable-release --disable-flopoco --with-opt-level=2 $args
|
|
44
52
|
make -j$(nproc)
|
|
45
|
-
make install
|
|
53
|
+
$SUDO_INSTALL make install
|
|
46
54
|
|
|
47
55
|
cd -
|
|
48
56
|
|
|
@@ -1,10 +1,17 @@
|
|
|
1
1
|
#!/bin/sh
|
|
2
2
|
|
|
3
|
-
set -
|
|
3
|
+
set -ex
|
|
4
4
|
|
|
5
5
|
# Get directory of script
|
|
6
6
|
src_path=$(cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P)/..
|
|
7
7
|
|
|
8
|
+
USE_SUDO_INSTALL="${USE_SUDO_INSTALL:-yes}"
|
|
9
|
+
if [ "${USE_SUDO_INSTALL:-yes}" = "yes" ]; then
|
|
10
|
+
SUDO_INSTALL=sudo
|
|
11
|
+
else
|
|
12
|
+
SUDO_INSTALL=""
|
|
13
|
+
fi
|
|
14
|
+
|
|
8
15
|
sudo apt-get install -y ghc libghc-regex-compat-dev libghc-syb-dev \
|
|
9
16
|
libghc-old-time-dev libghc-split-dev tcl-dev build-essential pkg-config \
|
|
10
17
|
autoconf gperf flex bison
|
|
@@ -23,8 +30,8 @@ make -j$(nproc) install-src
|
|
|
23
30
|
|
|
24
31
|
if [ -z ${PREFIX} ]; then
|
|
25
32
|
# install
|
|
26
|
-
|
|
27
|
-
|
|
33
|
+
$SUDO_INSTALL mkdir -p /opt/tools/bsc
|
|
34
|
+
$SUDO_INSTALL chown $USER:$USER /opt/tools/bsc
|
|
28
35
|
|
|
29
36
|
BSC_VERSION=$(echo 'puts [lindex [Bluetcl::version] 0]' | inst/bin/bluetcl)
|
|
30
37
|
mv inst /opt/tools/bsc/bsc-${BSC_VERSION}
|
|
@@ -1,10 +1,17 @@
|
|
|
1
1
|
#!/bin/sh
|
|
2
2
|
|
|
3
|
-
set -
|
|
3
|
+
set -ex
|
|
4
4
|
|
|
5
5
|
# Get directory of script
|
|
6
6
|
src_path=$(cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P)/..
|
|
7
7
|
|
|
8
|
+
USE_SUDO_INSTALL="${USE_SUDO_INSTALL:-yes}"
|
|
9
|
+
if [ "${USE_SUDO_INSTALL:-yes}" = "yes" ]; then
|
|
10
|
+
SUDO_INSTALL=sudo
|
|
11
|
+
else
|
|
12
|
+
SUDO_INSTALL=""
|
|
13
|
+
fi
|
|
14
|
+
|
|
8
15
|
sudo apt-get install -y wget
|
|
9
16
|
|
|
10
17
|
mkdir -p deps
|
|
@@ -19,7 +26,7 @@ if [ ! -z ${PREFIX} ]; then
|
|
|
19
26
|
args="-C $PREFIX --strip-components 1"
|
|
20
27
|
fi
|
|
21
28
|
|
|
22
|
-
tar xvf sbt.tgz $args
|
|
29
|
+
$SUDO_INSTALL tar xvf sbt.tgz $args
|
|
23
30
|
|
|
24
31
|
cd -
|
|
25
32
|
|
|
@@ -1,10 +1,17 @@
|
|
|
1
1
|
#!/bin/sh
|
|
2
2
|
|
|
3
|
-
set -
|
|
3
|
+
set -ex
|
|
4
4
|
|
|
5
5
|
# Get directory of script
|
|
6
6
|
src_path=$(cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P)/..
|
|
7
7
|
|
|
8
|
+
USE_SUDO_INSTALL="${USE_SUDO_INSTALL:-yes}"
|
|
9
|
+
if [ "${USE_SUDO_INSTALL:-yes}" = "yes" ]; then
|
|
10
|
+
SUDO_INSTALL=sudo
|
|
11
|
+
else
|
|
12
|
+
SUDO_INSTALL=""
|
|
13
|
+
fi
|
|
14
|
+
|
|
8
15
|
sudo apt-get install -y gnat libgnat-9 libz-dev
|
|
9
16
|
|
|
10
17
|
sudo apt-get install -y git build-essential
|
|
@@ -23,5 +30,5 @@ fi
|
|
|
23
30
|
|
|
24
31
|
./configure $args
|
|
25
32
|
make -j$(nproc)
|
|
26
|
-
|
|
33
|
+
$SUDO_INSTALL make install
|
|
27
34
|
cd -
|
|
@@ -1,10 +1,17 @@
|
|
|
1
1
|
#!/bin/sh
|
|
2
2
|
|
|
3
|
-
set -
|
|
3
|
+
set -ex
|
|
4
4
|
|
|
5
5
|
# Get directory of script
|
|
6
6
|
src_path=$(cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P)/..
|
|
7
7
|
|
|
8
|
+
USE_SUDO_INSTALL="${USE_SUDO_INSTALL:-yes}"
|
|
9
|
+
if [ "${USE_SUDO_INSTALL:-yes}" = "yes" ]; then
|
|
10
|
+
SUDO_INSTALL=sudo
|
|
11
|
+
else
|
|
12
|
+
SUDO_INSTALL=""
|
|
13
|
+
fi
|
|
14
|
+
|
|
8
15
|
sudo apt-get install -y build-essential gperf libgtk-3-dev \
|
|
9
16
|
libbz2-dev libjudy-dev liblzma-dev tcl-dev tk-dev
|
|
10
17
|
|
|
@@ -27,4 +34,4 @@ cd gtkwave3-gtk3
|
|
|
27
34
|
./autogen.sh
|
|
28
35
|
./configure --enable-gtk3 $args
|
|
29
36
|
make -j$(nproc)
|
|
30
|
-
|
|
37
|
+
$SUDO_INSTALL make install
|
|
@@ -1,10 +1,17 @@
|
|
|
1
1
|
#!/bin/sh
|
|
2
2
|
|
|
3
|
-
set -
|
|
3
|
+
set -ex
|
|
4
4
|
|
|
5
5
|
# Get directory of script
|
|
6
6
|
src_path=$(cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P)/..
|
|
7
7
|
|
|
8
|
+
USE_SUDO_INSTALL="${USE_SUDO_INSTALL:-yes}"
|
|
9
|
+
if [ "${USE_SUDO_INSTALL:-yes}" = "yes" ]; then
|
|
10
|
+
SUDO_INSTALL=sudo
|
|
11
|
+
else
|
|
12
|
+
SUDO_INSTALL=""
|
|
13
|
+
fi
|
|
14
|
+
|
|
8
15
|
sudo apt-get install -y build-essential bison flex gperf libreadline-dev libncurses-dev
|
|
9
16
|
|
|
10
17
|
sudo apt-get install -y git automake autoconf
|
|
@@ -24,4 +31,4 @@ fi
|
|
|
24
31
|
sh autoconf.sh
|
|
25
32
|
./configure $args
|
|
26
33
|
make -j$(nproc)
|
|
27
|
-
|
|
34
|
+
$SUDO_INSTALL make install
|
|
@@ -1,10 +1,17 @@
|
|
|
1
1
|
#!/bin/sh
|
|
2
2
|
|
|
3
|
-
set -
|
|
3
|
+
set -ex
|
|
4
4
|
|
|
5
5
|
# Get directory of script
|
|
6
6
|
src_path=$(cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P)/..
|
|
7
7
|
|
|
8
|
+
USE_SUDO_INSTALL="${USE_SUDO_INSTALL:-yes}"
|
|
9
|
+
if [ "${USE_SUDO_INSTALL:-yes}" = "yes" ]; then
|
|
10
|
+
SUDO_INSTALL=sudo
|
|
11
|
+
else
|
|
12
|
+
SUDO_INSTALL=""
|
|
13
|
+
fi
|
|
14
|
+
|
|
8
15
|
sudo apt-get install -y build-essential clang bison flex libreadline-dev \
|
|
9
16
|
gawk tcl-dev libffi-dev git mercurial graphviz \
|
|
10
17
|
xdot pkg-config python python3 libftdi-dev \
|
|
@@ -20,5 +27,5 @@ cd icepack
|
|
|
20
27
|
git checkout $(python3 ${src_path}/_tools.py --tool icepack --field git-commit)
|
|
21
28
|
|
|
22
29
|
make -j$(nproc)
|
|
23
|
-
|
|
30
|
+
$SUDO_INSTALL make install PREFIX="$PREFIX"
|
|
24
31
|
cd -
|
|
@@ -1,10 +1,17 @@
|
|
|
1
1
|
#!/bin/sh
|
|
2
2
|
|
|
3
|
-
set -
|
|
3
|
+
set -ex
|
|
4
4
|
|
|
5
5
|
# Get directory of script
|
|
6
6
|
src_path=$(cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P)/..
|
|
7
7
|
|
|
8
|
+
USE_SUDO_INSTALL="${USE_SUDO_INSTALL:-yes}"
|
|
9
|
+
if [ "${USE_SUDO_INSTALL:-yes}" = "yes" ]; then
|
|
10
|
+
SUDO_INSTALL=sudo
|
|
11
|
+
else
|
|
12
|
+
SUDO_INSTALL=""
|
|
13
|
+
fi
|
|
14
|
+
|
|
8
15
|
sudo apt-get install -y wget lsb-core
|
|
9
16
|
|
|
10
17
|
mkdir -p deps
|
|
@@ -1,10 +1,17 @@
|
|
|
1
1
|
#!/bin/sh
|
|
2
2
|
|
|
3
|
-
set -
|
|
3
|
+
set -ex
|
|
4
4
|
|
|
5
5
|
# Get directory of script
|
|
6
6
|
src_path=$(cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P)/..
|
|
7
7
|
|
|
8
|
+
USE_SUDO_INSTALL="${USE_SUDO_INSTALL:-yes}"
|
|
9
|
+
if [ "${USE_SUDO_INSTALL:-yes}" = "yes" ]; then
|
|
10
|
+
SUDO_INSTALL=sudo
|
|
11
|
+
else
|
|
12
|
+
SUDO_INSTALL=""
|
|
13
|
+
fi
|
|
14
|
+
|
|
8
15
|
sudo apt-get install -y build-essential m4 tcsh csh libx11-dev tcl-dev tk-dev
|
|
9
16
|
|
|
10
17
|
sudo apt-get install -y git
|
|
@@ -23,4 +30,4 @@ fi
|
|
|
23
30
|
|
|
24
31
|
LD_FLAGS=-shared ./configure $args
|
|
25
32
|
make -j$(nproc)
|
|
26
|
-
|
|
33
|
+
$SUDO_INSTALL make install
|
|
@@ -1,10 +1,17 @@
|
|
|
1
1
|
#!/bin/sh
|
|
2
2
|
|
|
3
|
-
set -
|
|
3
|
+
set -ex
|
|
4
4
|
|
|
5
5
|
# Get directory of script
|
|
6
6
|
src_path=$(cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P)/..
|
|
7
7
|
|
|
8
|
+
USE_SUDO_INSTALL="${USE_SUDO_INSTALL:-yes}"
|
|
9
|
+
if [ "${USE_SUDO_INSTALL:-yes}" = "yes" ]; then
|
|
10
|
+
SUDO_INSTALL=sudo
|
|
11
|
+
else
|
|
12
|
+
SUDO_INSTALL=""
|
|
13
|
+
fi
|
|
14
|
+
|
|
8
15
|
sudo apt-get install -y build-essential tcl-dev tk-dev
|
|
9
16
|
|
|
10
17
|
sudo apt-get install -y git autotools-dev automake
|
|
@@ -23,4 +30,4 @@ fi
|
|
|
23
30
|
|
|
24
31
|
./configure $args
|
|
25
32
|
make -j$(nproc)
|
|
26
|
-
|
|
33
|
+
$SUDO_INSTALL make install
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/bin/sh
|
|
2
2
|
|
|
3
|
-
set -
|
|
3
|
+
set -ex
|
|
4
4
|
|
|
5
5
|
sudo apt-get install -y build-essential clang bison flex libreadline-dev \
|
|
6
6
|
gawk tcl-dev libffi-dev git mercurial graphviz \
|
|
@@ -12,6 +12,13 @@ sudo apt-get install -y git
|
|
|
12
12
|
# Get directory of script
|
|
13
13
|
src_path=$(cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P)/..
|
|
14
14
|
|
|
15
|
+
USE_SUDO_INSTALL="${USE_SUDO_INSTALL:-yes}"
|
|
16
|
+
if [ "${USE_SUDO_INSTALL:-yes}" = "yes" ]; then
|
|
17
|
+
SUDO_INSTALL=sudo
|
|
18
|
+
else
|
|
19
|
+
SUDO_INSTALL=""
|
|
20
|
+
fi
|
|
21
|
+
|
|
15
22
|
mkdir -p deps
|
|
16
23
|
cd deps
|
|
17
24
|
|
|
@@ -26,5 +33,5 @@ fi
|
|
|
26
33
|
|
|
27
34
|
cmake -DARCH=ice40 $args .
|
|
28
35
|
make -j$(nproc)
|
|
29
|
-
|
|
36
|
+
$SUDO_INSTALL make install
|
|
30
37
|
cd -
|
|
@@ -1,9 +1,20 @@
|
|
|
1
1
|
#!/bin/sh
|
|
2
2
|
|
|
3
|
-
set -
|
|
3
|
+
set -ex
|
|
4
4
|
|
|
5
5
|
src_path=$(cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P)/..
|
|
6
6
|
|
|
7
|
+
if [ ! -z ${PREFIX} ]; then
|
|
8
|
+
export PATH="$PREFIX/bin:$PATH"
|
|
9
|
+
fi
|
|
10
|
+
|
|
11
|
+
USE_SUDO_INSTALL="${USE_SUDO_INSTALL:-yes}"
|
|
12
|
+
if [ "${USE_SUDO_INSTALL:-yes}" = "yes" ]; then
|
|
13
|
+
SUDO_INSTALL="sudo -E PATH=$PATH"
|
|
14
|
+
else
|
|
15
|
+
SUDO_INSTALL=""
|
|
16
|
+
fi
|
|
17
|
+
|
|
7
18
|
sudo apt-get install -y git
|
|
8
19
|
|
|
9
20
|
mkdir -p deps
|
|
@@ -18,7 +29,9 @@ deps_args=""
|
|
|
18
29
|
if [ ! -z ${PREFIX} ]; then
|
|
19
30
|
deps_args="-prefix=$PREFIX"
|
|
20
31
|
fi
|
|
21
|
-
sudo ./etc/DependencyInstaller.sh -
|
|
32
|
+
sudo ./etc/DependencyInstaller.sh -base
|
|
33
|
+
sudo rm -f etc/openroad_deps_prefixes.txt
|
|
34
|
+
$SUDO_INSTALL ./etc/DependencyInstaller.sh -common $deps_args
|
|
22
35
|
|
|
23
36
|
cmake_args="-DENABLE_TESTS=OFF"
|
|
24
37
|
if [ ! -z ${PREFIX} ]; then
|
|
@@ -28,6 +41,6 @@ fi
|
|
|
28
41
|
./etc/Build.sh -cmake="$cmake_args"
|
|
29
42
|
|
|
30
43
|
cd build
|
|
31
|
-
|
|
44
|
+
$SUDO_INSTALL make install
|
|
32
45
|
|
|
33
46
|
cd -
|
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
#!/bin/sh
|
|
2
2
|
|
|
3
|
-
set -
|
|
3
|
+
set -ex
|
|
4
4
|
|
|
5
5
|
src_path=$(cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P)/..
|
|
6
6
|
|
|
7
|
+
if [ ! -z ${PREFIX} ]; then
|
|
8
|
+
export PATH="$PREFIX/bin:$PATH"
|
|
9
|
+
fi
|
|
10
|
+
|
|
7
11
|
sudo apt-get install -y git build-essential wget
|
|
8
12
|
sudo apt-get install -y tcl-dev tcl-tclreadline \
|
|
9
13
|
bison flex libfl-dev zlib1g-dev automake autotools-dev
|
|
@@ -15,6 +19,13 @@ python3 -m venv .opensta --clear
|
|
|
15
19
|
. .opensta/bin/activate
|
|
16
20
|
python3 -m pip install cmake==3.31.6
|
|
17
21
|
|
|
22
|
+
USE_SUDO_INSTALL="${USE_SUDO_INSTALL:-yes}"
|
|
23
|
+
if [ "${USE_SUDO_INSTALL:-yes}" = "yes" ]; then
|
|
24
|
+
SUDO_INSTALL="sudo -E PATH=$PATH"
|
|
25
|
+
else
|
|
26
|
+
SUDO_INSTALL=""
|
|
27
|
+
fi
|
|
28
|
+
|
|
18
29
|
if [ ! -z ${PREFIX} ]; then
|
|
19
30
|
cmake_args="-DCMAKE_INSTALL_PREFIX=$PREFIX"
|
|
20
31
|
config_prefix="--prefix=$PREFIX"
|
|
@@ -29,7 +40,7 @@ mkdir build
|
|
|
29
40
|
cd build
|
|
30
41
|
cmake $cmake_args ..
|
|
31
42
|
make -j$(nproc)
|
|
32
|
-
|
|
43
|
+
$SUDO_INSTALL make install
|
|
33
44
|
|
|
34
45
|
cd ../../..
|
|
35
46
|
# cudd
|
|
@@ -40,7 +51,7 @@ cd cudd
|
|
|
40
51
|
autoreconf
|
|
41
52
|
./configure $config_prefix
|
|
42
53
|
make -j$(nproc)
|
|
43
|
-
|
|
54
|
+
$SUDO_INSTALL make install
|
|
44
55
|
|
|
45
56
|
cd ../..
|
|
46
57
|
#swig
|
|
@@ -54,7 +65,7 @@ wget https://github.com/PCRE2Project/pcre2/releases/download/pcre2-10.42/pcre2-1
|
|
|
54
65
|
./autogen.sh
|
|
55
66
|
./configure $config_prefix
|
|
56
67
|
make -j$(nproc)
|
|
57
|
-
|
|
68
|
+
$SUDO_INSTALL make -j$(nproc) install
|
|
58
69
|
|
|
59
70
|
cd ../..
|
|
60
71
|
# opensta
|
|
@@ -67,6 +78,6 @@ mkdir -p build
|
|
|
67
78
|
cd build
|
|
68
79
|
cmake .. $cmake_args
|
|
69
80
|
make -j$(nproc)
|
|
70
|
-
|
|
81
|
+
$SUDO_INSTALL make install
|
|
71
82
|
|
|
72
83
|
cd -
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/bin/sh
|
|
2
2
|
|
|
3
|
-
set -
|
|
3
|
+
set -ex
|
|
4
4
|
|
|
5
5
|
# Get directory of script
|
|
6
6
|
src_path=$(cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P)/..
|
|
@@ -14,6 +14,13 @@ python3 -m venv .slang --clear
|
|
|
14
14
|
. .slang/bin/activate
|
|
15
15
|
python3 -m pip install cmake==3.31.6
|
|
16
16
|
|
|
17
|
+
USE_SUDO_INSTALL="${USE_SUDO_INSTALL:-yes}"
|
|
18
|
+
if [ "${USE_SUDO_INSTALL:-yes}" = "yes" ]; then
|
|
19
|
+
SUDO_INSTALL="sudo -E PATH=$PATH"
|
|
20
|
+
else
|
|
21
|
+
SUDO_INSTALL=""
|
|
22
|
+
fi
|
|
23
|
+
|
|
17
24
|
if [ ! -z ${SC_BUILD} ]; then
|
|
18
25
|
# Limit this to CI builds
|
|
19
26
|
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
|
|
@@ -30,11 +37,11 @@ git checkout $(python3 ${src_path}/_tools.py --tool slang --field git-commit)
|
|
|
30
37
|
|
|
31
38
|
cfg_args=""
|
|
32
39
|
if [ ! -z ${PREFIX} ]; then
|
|
33
|
-
cfg_args="
|
|
40
|
+
cfg_args="-D CMAKE_INSTALL_PREFIX=$PREFIX"
|
|
34
41
|
fi
|
|
35
42
|
|
|
36
|
-
cmake -B build
|
|
43
|
+
cmake -B build $cfg_args
|
|
37
44
|
cmake --build build -j$(nproc)
|
|
38
|
-
|
|
45
|
+
$SUDO_INSTALL make -C build install
|
|
39
46
|
|
|
40
47
|
cd -
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/bin/sh
|
|
2
2
|
|
|
3
|
-
set -
|
|
3
|
+
set -ex
|
|
4
4
|
|
|
5
5
|
sudo apt-get install -y munge libmunge-dev build-essential libmariadb-dev lbzip2 libjson-c-dev
|
|
6
6
|
sudo apt-get install -y libdbus-1-dev
|
|
@@ -10,6 +10,13 @@ sudo apt-get install -y wget
|
|
|
10
10
|
# Get directory of script
|
|
11
11
|
src_path=$(cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P)/..
|
|
12
12
|
|
|
13
|
+
USE_SUDO_INSTALL="${USE_SUDO_INSTALL:-yes}"
|
|
14
|
+
if [ "${USE_SUDO_INSTALL:-yes}" = "yes" ]; then
|
|
15
|
+
SUDO_INSTALL=sudo
|
|
16
|
+
else
|
|
17
|
+
SUDO_INSTALL=""
|
|
18
|
+
fi
|
|
19
|
+
|
|
13
20
|
mkdir -p deps
|
|
14
21
|
cd deps
|
|
15
22
|
|
|
@@ -31,4 +38,4 @@ fi
|
|
|
31
38
|
|
|
32
39
|
make -j$(nproc)
|
|
33
40
|
|
|
34
|
-
|
|
41
|
+
$SUDO_INSTALL make install
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/bin/sh
|
|
2
2
|
|
|
3
|
-
set -
|
|
3
|
+
set -ex
|
|
4
4
|
|
|
5
5
|
# Get directory of script
|
|
6
6
|
src_path=$(cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P)/..
|
|
@@ -28,6 +28,14 @@ git checkout $(python3 ${src_path}/_tools.py --tool surelog --field git-commit)
|
|
|
28
28
|
git submodule update --init --recursive
|
|
29
29
|
|
|
30
30
|
make -j$(nproc)
|
|
31
|
-
|
|
31
|
+
|
|
32
|
+
USE_SUDO_INSTALL="${USE_SUDO_INSTALL:-yes}"
|
|
33
|
+
if [ "${USE_SUDO_INSTALL:-yes}" = "yes" ]; then
|
|
34
|
+
SUDO_INSTALL="sudo -E PATH=$PATH"
|
|
35
|
+
else
|
|
36
|
+
SUDO_INSTALL=""
|
|
37
|
+
fi
|
|
38
|
+
|
|
39
|
+
$SUDO_INSTALL make install
|
|
32
40
|
|
|
33
41
|
cd -
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/bin/sh
|
|
2
2
|
|
|
3
|
-
set -
|
|
3
|
+
set -ex
|
|
4
4
|
|
|
5
5
|
# Get directory of script
|
|
6
6
|
src_path=$(cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P)/..
|
|
@@ -16,7 +16,14 @@ if [ ! -z ${PREFIX} ]; then
|
|
|
16
16
|
export PATH="$PREFIX:$PATH"
|
|
17
17
|
fi
|
|
18
18
|
|
|
19
|
-
|
|
19
|
+
USE_SUDO_INSTALL="${USE_SUDO_INSTALL:-yes}"
|
|
20
|
+
if [ "${USE_SUDO_INSTALL:-yes}" = "yes" ]; then
|
|
21
|
+
SUDO_INSTALL="sudo -E PATH=$PATH"
|
|
22
|
+
else
|
|
23
|
+
SUDO_INSTALL=""
|
|
24
|
+
fi
|
|
25
|
+
|
|
26
|
+
curl -sSL https://get.haskellstack.org/ | $SUDO_INSTALL sh -s - -f $haskell_args
|
|
20
27
|
|
|
21
28
|
git clone $(python3 ${src_path}/_tools.py --tool sv2v --field git-url) sv2v
|
|
22
29
|
cd sv2v
|
|
@@ -25,8 +32,8 @@ git checkout $(python3 ${src_path}/_tools.py --tool sv2v --field git-commit)
|
|
|
25
32
|
make -j$(nproc)
|
|
26
33
|
|
|
27
34
|
if [ ! -z ${PREFIX} ]; then
|
|
28
|
-
|
|
29
|
-
|
|
35
|
+
$SUDO_INSTALL mkdir -p ${PREFIX}/bin/
|
|
36
|
+
$SUDO_INSTALL cp bin/* ${PREFIX}/bin/
|
|
30
37
|
fi
|
|
31
38
|
|
|
32
39
|
cd -
|
|
@@ -1,10 +1,17 @@
|
|
|
1
1
|
#!/bin/sh
|
|
2
2
|
|
|
3
|
-
set -
|
|
3
|
+
set -ex
|
|
4
4
|
|
|
5
5
|
# Get directory of script
|
|
6
6
|
src_path=$(cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P)/..
|
|
7
7
|
|
|
8
|
+
USE_SUDO_INSTALL="${USE_SUDO_INSTALL:-yes}"
|
|
9
|
+
if [ "${USE_SUDO_INSTALL:-yes}" = "yes" ]; then
|
|
10
|
+
SUDO_INSTALL=sudo
|
|
11
|
+
else
|
|
12
|
+
SUDO_INSTALL=""
|
|
13
|
+
fi
|
|
14
|
+
|
|
8
15
|
sudo apt-get install -y wget
|
|
9
16
|
|
|
10
17
|
mkdir -p deps
|
|
@@ -19,8 +26,9 @@ tar xzf $filename
|
|
|
19
26
|
|
|
20
27
|
if [ -z ${PREFIX} ]; then
|
|
21
28
|
PREFIX=/opt/verible
|
|
22
|
-
sudo
|
|
29
|
+
SUDO_INSTALL=sudo
|
|
30
|
+
$SUDO_INSTALL mkdir -p $PREFIX
|
|
23
31
|
echo "Please add \"export PATH="/opt/verible/bin:\$PATH"\" to your .bashrc"
|
|
24
32
|
fi
|
|
25
33
|
|
|
26
|
-
|
|
34
|
+
$SUDO_INSTALL mv verible-$version/* $PREFIX
|
|
@@ -1,10 +1,17 @@
|
|
|
1
1
|
#!/bin/sh
|
|
2
2
|
|
|
3
|
-
set -
|
|
3
|
+
set -ex
|
|
4
4
|
|
|
5
5
|
# Get directory of script
|
|
6
6
|
src_path=$(cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P)/..
|
|
7
7
|
|
|
8
|
+
USE_SUDO_INSTALL="${USE_SUDO_INSTALL:-yes}"
|
|
9
|
+
if [ "${USE_SUDO_INSTALL:-yes}" = "yes" ]; then
|
|
10
|
+
SUDO_INSTALL=sudo
|
|
11
|
+
else
|
|
12
|
+
SUDO_INSTALL=""
|
|
13
|
+
fi
|
|
14
|
+
|
|
8
15
|
sudo apt-get install -y git perl python3 make autoconf g++ flex bison ccache
|
|
9
16
|
sudo apt-get install -y libgoogle-perftools-dev numactl perl-doc help2man
|
|
10
17
|
sudo apt-get install -y libfl2
|
|
@@ -31,6 +38,6 @@ fi
|
|
|
31
38
|
|
|
32
39
|
./configure $args
|
|
33
40
|
make -j$(nproc)
|
|
34
|
-
|
|
41
|
+
$SUDO_INSTALL make install
|
|
35
42
|
|
|
36
43
|
cd -
|