-
Notifications
You must be signed in to change notification settings - Fork 30
/
env.sh
58 lines (52 loc) · 2.12 KB
/
env.sh
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
#!/bin/bash
#
# Copyright 2018-2022 F4PGA Authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# SPDX-License-Identifier: Apache-2.0
if [ -z "${FPGA_TOOL_PERF_BASE_DIR}" ]; then
export FPGA_TOOL_PERF_BASE_DIR=$(pwd)
fi
if [ -z "${VIVADO_SETTINGS}" ]; then
#FIXME: to use the conda xilinx-vivado virtual package when available
export VIVADO_SETTINGS=$(find /opt/Xilinx/Vivado/ -regex ".*[0-90-90-90-9].[0-9]/settings64.sh" | head -n 1)
fi
if [ -z "${QUICKLOGIC}" ]; then
export QUICKLOGIC=${FPGA_TOOL_PERF_BASE_DIR}/env/quicklogic
fi
#https://unix.stackexchange.com/a/291611
function path_remove {
# Delete path by parts so we can never accidentally remove sub paths
PATH=${PATH//":$1:"/":"} # delete any instances in the middle
PATH=${PATH/#"$1:"/} # delete any instance at the beginning
PATH=${PATH/%":$1"/} # delete any instance in the at the end
}
#Remove all possible paths from PATH
path_remove ${QUICKLOGIC}/install/bin
#Set now environment variables
environment=${1:-xilinx-a35t}
export RAPIDWRIGHT_PATH=${FPGA_TOOL_PERF_BASE_DIR}/third_party/RapidWright
if [ "quicklogic" == ${environment} ]; then
. ${FPGA_TOOL_PERF_BASE_DIR}/env/conda/bin/activate quicklogic
export PATH=${QUICKLOGIC}/quicklogic-arch-defs/bin:${PATH}
elif [ "nextpnr" == ${environment} ]; then
. ${FPGA_TOOL_PERF_BASE_DIR}/env/conda/bin/activate nextpnr-env
else
if [ -n "${VIVADO_SETTINGS}" ]; then
. ${VIVADO_SETTINGS}
fi
. ${FPGA_TOOL_PERF_BASE_DIR}/env/conda/bin/activate f4pga-env
export F4PGA_INSTALL_DIR=${FPGA_TOOL_PERF_BASE_DIR}/env/f4pga
export F4PGA_SHARE_DIR=${FPGA_TOOL_PERF_BASE_DIR}/env/f4pga/share/f4pga
fi