Skip to content

Commit c65d570

Browse files
FPGA: Correct the setting of DEVICE_FAMILY in use_library sample (#2333)
Update incorrect FAMILY flag setting in use_library sample.
1 parent 977ecc0 commit c65d570

File tree

1 file changed

+1
-3
lines changed
  • DirectProgramming/C++SYCL_FPGA/Tutorials/Tools/use_library

1 file changed

+1
-3
lines changed

DirectProgramming/C++SYCL_FPGA/Tutorials/Tools/use_library/CMakeLists.txt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -172,10 +172,8 @@ elseif(DEVICE_FLAG MATCHES S10)
172172
set(FAMILY "Stratix 10")
173173
elseif(DEVICE_FLAG MATCHES CycloneV)
174174
set(FAMILY "Cyclone V")
175-
elseif(DEVICE_FLAG MATCHES Agilex5)
176-
set(FAMILY "Agilex 5")
177175
else()
178-
set(FAMILY "Agilex7")
176+
set(FAMILY "Agilex")
179177
endif()
180178

181179
# The RTL file (specified in lib_rtl_spec.xml) must be copied to the CMake working directory for the final stage of FPGA hardware compilation

0 commit comments

Comments
 (0)