Skip to content

Commit 91a89a8

Browse files
author
Mario Ruiz
committed
Fix error with FPGA part
1 parent 8a681e3 commit 91a89a8

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

Makefile.synthesis

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -33,40 +33,40 @@ distclean: clean
3333
TOE_hls_prj: $(shell find $(TOESCR) -type f) \
3434
$(TCLDIR)/toe_script.tcl
3535
rm -rf $@
36-
vivado_hls -f $(TCLDIR)/toe_script.tcl -tclargs $(TOPDIR) $@ FPGAPART
36+
vivado_hls -f $(TCLDIR)/toe_script.tcl -tclargs $(TOPDIR) $@ $(FPGAPART)
3737

3838
IPERF2_TCP_hls_prj: $(shell find $(IPERFSRC) -type f) \
3939
$(TCLDIR)/iperf2_tcp_script.tcl
4040
rm -rf $@
41-
vivado_hls -f $(TCLDIR)/iperf2_tcp_script.tcl -tclargs $(TOPDIR) $@ FPGAPART
41+
vivado_hls -f $(TCLDIR)/iperf2_tcp_script.tcl -tclargs $(TOPDIR) $@ $(FPGAPART)
4242

4343
ECHOSERVER_hls_prj: $(shell find $(ECHOSRC) -type f) $(TCLDIR)/echo_server_script.tcl
4444
rm -rf $@
45-
vivado_hls -f $(TCLDIR)/echo_server_script.tcl -tclargs $(TOPDIR) $@ FPGAPART
45+
vivado_hls -f $(TCLDIR)/echo_server_script.tcl -tclargs $(TOPDIR) $@ $(FPGAPART)
4646

4747
ARP_hls_prj: $(shell find $(ARPSRC) -type f) $(TCLDIR)/arp_script.tcl
4848
rm -rf $@
49-
vivado_hls -f $(TCLDIR)/arp_script.tcl -tclargs $(TOPDIR) $@ FPGAPART
49+
vivado_hls -f $(TCLDIR)/arp_script.tcl -tclargs $(TOPDIR) $@ $(FPGAPART)
5050

5151
ETH_inserter_hls_prj: $(shell find $(ETHSRC) -type f) $(TCLDIR)/ethernet_inserter_script.tcl
5252
rm -rf $@
53-
vivado_hls -f $(TCLDIR)/ethernet_inserter_script.tcl -tclargs $(TOPDIR) $@ FPGAPART
53+
vivado_hls -f $(TCLDIR)/ethernet_inserter_script.tcl -tclargs $(TOPDIR) $@ $(FPGAPART)
5454

5555
ICMP_hls_prj: $(shell find $(ICMPSRC) -type f) $(TCLDIR)/icmp_script.tcl
5656
rm -rf $@
57-
vivado_hls -f $(TCLDIR)/icmp_script.tcl -tclargs $(TOPDIR) $@ FPGAPART
57+
vivado_hls -f $(TCLDIR)/icmp_script.tcl -tclargs $(TOPDIR) $@ $(FPGAPART)
5858

5959
PKT_HANDLER_prj: $(shell find $(PKTSRC) -type f) $(TCLDIR)/packet_handler_script.tcl
6060
rm -rf $@
61-
vivado_hls -f $(TCLDIR)/packet_handler_script.tcl -tclargs $(TOPDIR) $@ FPGAPART
61+
vivado_hls -f $(TCLDIR)/packet_handler_script.tcl -tclargs $(TOPDIR) $@ $(FPGAPART)
6262

6363
userAbstraction_prj: $(shell find $(USRSRC) -type f) $(TCLDIR)/userAbstraction.tcl
6464
rm -rf $@
65-
vivado_hls -f $(TCLDIR)/userAbstraction.tcl -tclargs $(TOPDIR) $@ FPGAPART
65+
vivado_hls -f $(TCLDIR)/userAbstraction.tcl -tclargs $(TOPDIR) $@ $(FPGAPART)
6666

6767
portHandler_prj: $(shell find $(PORTSRC) -type f) $(TCLDIR)/portHandler.tcl
6868
rm -rf $@
69-
vivado_hls -f $(TCLDIR)/portHandler.tcl -tclargs $(TOPDIR) $@ FPGAPART
69+
vivado_hls -f $(TCLDIR)/portHandler.tcl -tclargs $(TOPDIR) $@ $(FPGAPART)
7070

7171
UDP_prj: $(shell find $(UDPTSRC) -type f) $(TCLDIR)/udp_script.tcl
7272
rm -rf $@

0 commit comments

Comments
 (0)