blob: b4501021f87468897a27e3e107cf97a6284d833d (
plain)
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
|
standard = "2008"
[libraries]
defaultlib.files = [
"pb_APP_log_comb.srcs/**/*.vhd",
]
defaultlib.exclude = [
"**/*.vdb", # compiled binaries
"**/xsim.dir/**", # simulation-specific internal files
]
UNISIM.files = [
"/tools/Xilinx/Vivado/2020.2/data/vhdl/src/unisims/unisim_VCOMP.vhd",
]
UNISIM.is_third_party = true
IEEE.files = [
"/tools/ghdl/libraries/ieee2008/*.vhdl",
"/tools/ghdl/libraries/ieee/*.vhdl",
# "/tools/ghdl
]
IEEE.is_third_party = true
[lint]
unused = "error"
unnecessary_work_library = false
|