-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathset.LF.environment.bash
71 lines (55 loc) · 2 KB
/
set.LF.environment.bash
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
## Sample file for setting the environment for LFoundry PDK using bash
##
## If there is a "N/A", it could not be determined correctly during
## installation. Please fix it.
##
## ASSURAHOME
## Directory of the Assura installation
#export ASSURAHOME="N/A"
## CDSHOME
## Directory of the Cadence DFII installation
#export CDSHOME="N/A"
## CDS_Netlisting_Mode
## Interpretion of CDF properties during netlisting
export CDS_Netlisting_Mode="Analog"
## DD_USE_LIBDEFS
## Ignore lib.defs and use cds.lib only (if set to "no")
export DD_USE_LIBDEFS="no"
## LF150_DISPLAY
## display.drf load mechanism; load directly from PDK if set to "true", load from work dir if "false" or not set at all
export LF150_DISPLAY="true"
## LF150_HOME
## Directory of the PDK installation
export LF150_HOME="./PDK_LF150i_V2_0_0"
## LF150_OPTION
## PDK installation module option
export LF150_OPTION="6metal"
## LF_PDF_READER
## The pdf reader executable
#export LF_PDF_READER="acroread"
## LF_PDF_READER_HOME
## Directory to the pdf reader executable defined by LF_PDF_READER
#export LF_PDF_READER_HOME="N/A"
## MGC_HOME
## Directory of the Calibre installation
#export MGC_HOME="N/A"
## QRC_HOME
## Directory of the stand-alone QRC
#export QRC_HOME="N/A"
##
## Following variables are used for the Ciranova plug in
##
## CNI_ROOT
## Root path of CNI plug in; select according DFII installation
export CNI_ROOT="${LF150_HOME}/tools/plugins/ciranova_plugin_linux_rhel30_gcc411_32_4.4.2_I6"
## CNI_PLAT_ROOT
## Path for plug in; select according DFII installation
export CNI_PLAT_ROOT="${CNI_ROOT}/plat_linux_gcc411_32"
## Following variables need no change
export CNI_LOG_DEFAULT="/dev/null"
export LD_LIBRARY_PATH="${CNI_PLAT_ROOT}/3rd/lib:${CNI_PLAT_ROOT}/lib:${LD_LIBRARY_PATH}"
export OA_COMPILER="gcc411"
export OA_PLUGIN_PATH="${CNI_ROOT}/quickstart"
export PATH="${CNI_PLAT_ROOT}/3rd/bin:${CNI_PLAT_ROOT}/bin:${CNI_ROOT}/bin:${PATH}"
export PYTHONHOME="${CNI_PLAT_ROOT}/3rd"
export PYTHONPATH="${CNI_ROOT}/pylib:${CNI_PLAT_ROOT}/lib:${PYTHONPATH}"