Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update xc7 package names #2849

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions xilinx/xc7/tests/install_test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ function(add_binary_test test_name part_name device board surelog_cmd)
endfunction()


add_binary_test(binary_toolchain_test_xc7_50t xc7a35tcpg236-1 xc7a50t_test basys3 "")
add_binary_test(binary_toolchain_test_xc7_100t xc7a100tcsg324-1 xc7a100t_test arty-100t "")
add_binary_test(binary_toolchain_test_xc7_200t xc7a200tsbg484-1 xc7a200t_test nexys_video "")
add_binary_test(binary_toolchain_test_xc7_50t_surelog xc7a35tcpg236-1 xc7a50t_test basys3 "-parse -DSYNTHESIS")
add_binary_test(binary_toolchain_test_xc7_100t_surelog xc7a100tcsg324-1 xc7a100t_test arty-100t "-parse -DSYNTHESIS")
add_binary_test(binary_toolchain_test_xc7_200t_surelog xc7a200tsbg484-1 xc7a200t_test nexys_video "-parse -DSYNTHESIS")
add_binary_test(binary_toolchain_test_xc7_50t xc7a35tcpg236-1 xc7a50t basys3 "")
add_binary_test(binary_toolchain_test_xc7_100t xc7a100tcsg324-1 xc7a100t arty-100t "")
add_binary_test(binary_toolchain_test_xc7_200t xc7a200tsbg484-1 xc7a200t nexys_video "")
add_binary_test(binary_toolchain_test_xc7_50t_surelog xc7a35tcpg236-1 xc7a50t basys3 "-parse -DSYNTHESIS")
add_binary_test(binary_toolchain_test_xc7_100t_surelog xc7a100tcsg324-1 xc7a100t arty-100t "-parse -DSYNTHESIS")
add_binary_test(binary_toolchain_test_xc7_200t_surelog xc7a200tsbg484-1 xc7a200t nexys_video "-parse -DSYNTHESIS")
2 changes: 1 addition & 1 deletion xilinx/xc7/tests/install_test/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ mkfile_path := $(abspath $(lastword $(MAKEFILE_LIST)))
current_dir := $(patsubst %/,%,$(dir $(mkfile_path)))
TOP:=top
PARTNAME?= xc7a35tcpg236-1
DEVICE ?= xc7a50t_test
DEVICE ?= xc7a50t
BOARD ?= basys3
BITSTREAM_DEVICE ?= artix7
VERILOG:=${current_dir}/counter.v
Expand Down