Commit 5cee3cc2 authored by Brian Koropoff's avatar Brian Koropoff

xilinx_prj: don't set GLOBAL_INCLUDE by default

This causes synthesis failures with verilog files that import
from each other.
parent 954ff749
......@@ -38,8 +38,7 @@ class ToolXilinxProject:
_XILINX_VHDL_PROPERTY = (
lambda srcfile: "set_property LIBRARY {library} [get_files {srcfile}]" if srcfile.library is not None else "")
_XILINX_VERILOG_PROPERTY = (
"set_property IS_GLOBAL_INCLUDE 1 [get_files {srcfile}]; ")
_XILINX_VERILOG_PROPERTY = ""
# Dictionnary of commands per file type.
HDL_FILES = {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment