Skip to content

Commit 4bfd3a2

Browse files
author
sbarillet
committed
fixed verilog file source parsing issue
1 parent 1eed242 commit 4bfd3a2

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

hdk/cl/examples/cl_dram_dma/build/scripts/create_dcp_from_cl.tcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ puts "AWS FPGA: ([clock format [clock seconds] -format %T]) Reading developer's
238238
# Reading the .sv and .v files, as proper designs would not require
239239
# reading .v, .vh, nor .inc files
240240

241-
read_verilog -sv [ glob $ENC_SRC_DIR/*.?v ]
241+
read_verilog -sv [ glob $ENC_SRC_DIR/*.{v,sv} ]
242242

243243
#---- End of section replaced by User ----
244244

hdk/cl/examples/cl_hello_world/build/scripts/create_dcp_from_cl.tcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ puts "AWS FPGA: ([clock format [clock seconds] -format %T]) Reading developer's
180180
# Reading the .sv and .v files, as proper designs would not require
181181
# reading .v, .vh, nor .inc files
182182

183-
read_verilog -sv [glob $ENC_SRC_DIR/*.?v]
183+
read_verilog -sv [glob $ENC_SRC_DIR/*.{v,sv}]
184184

185185
#---- End of section replaced by User ----
186186

hdk/common/shell_v032117d7/new_cl_template/build/scripts/create_dcp_from_cl.tcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ puts "AWS FPGA: ([clock format [clock seconds] -format %T]) Reading developer's
112112
# Reading the .sv and .v files, as proper designs would not require
113113
# reading .v, .vh, nor .inc files
114114

115-
read_verilog -sv [glob $ENC_SRC_DIR/*.?v]
115+
read_verilog -sv [glob $ENC_SRC_DIR/*.{v,sv}]
116116

117117
#---- End of section replaced by User ----
118118

hdk/common/shell_v04151701/new_cl_template/build/scripts/create_dcp_from_cl.tcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ puts "AWS FPGA: ([clock format [clock seconds] -format %T]) Reading developer's
173173
# Reading the .sv and .v files, as proper designs would not require
174174
# reading .v, .vh, nor .inc files
175175

176-
read_verilog -sv [glob $ENC_SRC_DIR/*.?v]
176+
read_verilog -sv [glob $ENC_SRC_DIR/*.{v,sv}]
177177

178178
#---- End of section replaced by User ----
179179

0 commit comments

Comments
 (0)