-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
67 lines (54 loc) · 2.05 KB
/
Copy pathenv.example
File metadata and controls
67 lines (54 loc) · 2.05 KB
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
# Example environment file for EDA Tools container
# Copy this file to .env in your project directory and customize as needed.
#
# Usage:
# container run --env /path/to/your.env
#
# If --env is omitted, container run defaults to --env INHERIT.
# --- Cadence Specific ---
# Cadence license server
CDS_LIC_FILE=27022@example.license.server
# Cadence installation paths (adjust to your setup)
CDS_INST_DIR=/mnt/eda/cadence
# MMSIM_HOME=${CDS_INST_DIR}/MMSIM
# IC_HOME=${CDS_INST_DIR}/IC
# GENUS_HOME=${CDS_INST_DIR}/GENUS
# INNOVUS_HOME=${CDS_INST_DIR}/INNOVUS
# --- Synopsys Specific ---
# Synopsys license server
SNPSLMD_LICENSE_FILE=27020@example.license.server
# Synopsys installation paths (adjust to your setup)
SYNOPSYS_ROOT=/mnt/eda/synopsys
# VCS_HOME=${SYNOPSYS_ROOT}/vcs
# VERDI_HOME=${SYNOPSYS_ROOT}/verdi
# DC_HOME=${SYNOPSYS_ROOT}/dc
# FC_HOME=${SYNOPSYS_ROOT}/fc
# PT_HOME=${SYNOPSYS_ROOT}/pt
# ICC_HOME=${SYNOPSYS_ROOT}/icc
# --- Xilinx/AMD Specific ---
# Xilinx license server
XILINXD_LICENSE_FILE=2100@example.license.server
# Xilinx installation paths (adjust to your setup)
XILINX_VIVADO=/mnt/eda/xilinx/Vivado/2023.2
XILINX_VITIS=/mnt/eda/xilinx/Vitis/2023.2
# You might also need to set specific XILINX_HLS, XILINX_SDX, etc.
# --- Network Allowlist ---
# By default, the container has restricted network access.
# Specify allowed destinations (comma-separated hostnames or IPs):
# CONTAINER_NETWORK_ALLOWLIST=license.example.com,192.168.1.100,10.0.0.50
# --- General Settings (can be overridden by script or host) ---
# Library paths (append, don't just replace, if host already has some)
# LD_LIBRARY_PATH=/usr/local/lib:/usr/lib64:${LD_LIBRARY_PATH}
# Python paths (append)
# PYTHONPATH=/home/user/python_libs:${PYTHONPATH}
# Custom PATH (append to what the container/script sets up)
# PATH=/opt/custom_tools/bin:${PATH}
# Language settings
LANG=en_US.UTF-8
LC_ALL=en_US.UTF-8
# Timezone
TZ=America/Los_Angeles
# Add your custom environment variables below
# MY_CUSTOM_VAR=value
# ANOTHER_TOOL_LICENSE_FILE=port@server
# SOME_TOOL_HOME=/mnt/eda/some_tool_version