Skip to content

Commit dd3eb6e

Browse files
Virat AgarwalGitHub Enterprise
authored andcommitted
Disabling examples for Sprite
1 parent baf92ab commit dd3eb6e

File tree

10 files changed

+16
-0
lines changed

10 files changed

+16
-0
lines changed

host/p2p_fpga2fpga/Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,9 @@ include $(XF_PROJ_ROOT)/common/includes/opencl/opencl.mk
8080
CXXFLAGS += $(opencl_CXXFLAGS) -Wall -O0 -g -std=c++11
8181
LDFLAGS += $(opencl_LDFLAGS)
8282

83+
ifeq ($(findstring flat, $(DEVICE)), flat)
84+
$(error [ERROR]: This example is not supported for $(DEVICE).)
85+
endif
8386
ifeq ($(findstring zc, $(DEVICE)), zc)
8487
$(error [ERROR]: This example is not supported for $(DEVICE).)
8588
endif

host/p2p_fpga2fpga/README.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ Platforms containing following strings in their names are not supported for this
1414

1515
::
1616

17+
flat
1718
zc
1819
201910
1920
2018

host/p2p_fpga2fpga/description.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
"Linux"
1919
],
2020
"platform_blacklist": [
21+
"flat",
2122
"zc",
2223
"201910",
2324
"2018",

host/slave_bridge_copy_buffer/Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,9 @@ endif
8686
ifeq ($(findstring u30, $(DEVICE)), u30)
8787
$(error [ERROR]: This example is not supported for $(DEVICE).)
8888
endif
89+
ifeq ($(findstring u50c, $(DEVICE)), u50c)
90+
$(error [ERROR]: This example is not supported for $(DEVICE).)
91+
endif
8992
ifeq ($(findstring zc, $(DEVICE)), zc)
9093
$(error [ERROR]: This example is not supported for $(DEVICE).)
9194
endif

host/slave_bridge_copy_buffer/README.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ Platforms containing following strings in their names are not supported for this
1616

1717
_u25_
1818
u30
19+
u50c
1920
zc
2021
vck
2122
aws-vu9p-f1

host/slave_bridge_copy_buffer/description.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
"platform_blacklist": [
1717
"_u25_",
1818
"u30",
19+
"u50c",
1920
"zc",
2021
"vck",
2122
"aws-vu9p-f1",

library_examples/anti_money_laundering/config.mk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ ifndef XILINX_VIVADO
66
$(error [ERROR]: g++ version older. Please use 5.0 or above)
77
else
88
CXX := $(XILINX_VIVADO)/tps/lnx64/gcc-6.2.0/bin/g++
9+
export LD_LIBRARY_PATH:=$(XILINX_VIVADO)/tps/lnx64/gcc-6.2.0/lib64:$(LD_LIBRARY_PATH)
910
$(warning [WARNING]: g++ version older. Using g++ provided by the tool : $(CXX))
1011
endif
1112
endif

sys_opt/kernel_swap/Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,9 @@ include ./config.mk
8787
CXXFLAGS += $(opencl_CXXFLAGS) -Wall -O0 -g -std=c++11
8888
LDFLAGS += $(opencl_LDFLAGS)
8989

90+
ifeq ($(findstring flat, $(DEVICE)), flat)
91+
$(error This example is not supported for $(DEVICE))
92+
endif
9093
ifeq ($(findstring zcu102_base_20, $(DEVICE)), zcu102_base_20)
9194
$(error This example is not supported for $(DEVICE))
9295
endif

sys_opt/kernel_swap/README.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ Platforms containing following strings in their names are not supported for this
1414

1515
::
1616

17+
flat
1718
zcu102_base_20
1819
zcu104_base_20
1920
vck

sys_opt/kernel_swap/description.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
"Multiple Kernel Binaries"
1414
],
1515
"platform_blacklist": [
16+
"flat",
1617
"zcu102_base_20",
1718
"zcu104_base_20",
1819
"vck",

0 commit comments

Comments
 (0)