forked from OpenCAPI/oc-accel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup_tools.ksh
executable file
·38 lines (31 loc) · 1.22 KB
/
setup_tools.ksh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/bin/bash
if [ ! -z $CTEPATH ]; then
export XILINX_VIVADO=$CTEPATH/tools/xilinx/2018.3.1/Vivado/2018.3
export CDS_LEVEL=18.03.010
export CDS_INST_DIR=$CTEPATH/tools/cds/Xcelium/${CDS_LEVEL}
else
export XILINX_VIVADO=/tools/Xilinx/Vivado/2019.1
export CDS_INST_DIR=/tools/cadence/installs/XCELIUM1903.008
fi
export XILINXD_LICENSE_FILE=2100@pokwinlic1.pok.ibm.com
export CDS_LIC_FILE=5295@poklnxlic04.pok.ibm.com:\
1716@rchlic1.rchland.ibm.com:\
1716@rchlic2.rchland.ibm.com:\
1716@rchlic3.rchland.ibm.com:\
5280@cdsserv1.pok.ibm.com:\
5280@cdsserv2.pok.ibm.com:\
5280@cdsserv3.pok.ibm.com:\
5280@hdlic4.boeblingen.de.ibm.com:\
5280@hdlic5.boeblingen.de.ibm.com:\
5280@hdlic6.boeblingen.de.ibm.com:\
5280@cadlic4.haifa.ibm.com
export PATH=${CDS_INST_DIR}/tools/bin/64bit:${CDS_INST_DIR}/tools/bin:${XILINX_VIVADO}/bin:$PATH
export UVM_HOME=$CDS_INST_DIR/tools/methodology/UVM/CDNS-1.2/
# Please don't commit the IES_LIBS settings if you set it to your own directory ...
# Set IES_LIBS manually every time you source setup.ksh ...
unset IES_LIBS
echo "Set up completed."
if [ -z $IES_LIBS ]; then
echo "Please set IES_LIBS to the ies lib path by the following command:"
echo "export IES_LIBS=<your ies path>"
fi