We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Line 250 of gr-ettus/python/rfnoc_modtool/rfnoc-newmod/CMakeLists.txt has a bug:
gr-ettus/python/rfnoc_modtool/rfnoc-newmod/CMakeLists.txt
COMMAND source ${FPGA}/usrp3/top/e300/setupenv.sh && make -C rfnoc/testbenches/${name} ${SIM} FPGA_TOP_DIR=${FPGA}
e300 is now e3xx in the fpga repo, so this step causes make noc_block_[name_of_your_block]_tb to fail.
Also might be worth changing rfnoc/testbenches/${name} to an absolute path-- ${CMAKE_SOURCE_DIR}/rfnoc/testbenches/${name}
rfnoc/testbenches/${name}
${CMAKE_SOURCE_DIR}/rfnoc/testbenches/${name}
The text was updated successfully, but these errors were encountered:
rfnocmodtool: fix path to setupenv generated into OOTs. Fix EttusRese…
3e83d5e
…arch#38
@mbr0wn This can be closed
Sorry, something went wrong.
Thanks for the bug report @robincoxe, and thanks for the PR @primercuervo !
No branches or pull requests
Line 250 of
gr-ettus/python/rfnoc_modtool/rfnoc-newmod/CMakeLists.txt
has a bug:COMMAND source ${FPGA}/usrp3/top/e300/setupenv.sh && make -C rfnoc/testbenches/${name} ${SIM} FPGA_TOP_DIR=${FPGA}
e300 is now e3xx in the fpga repo, so this step causes make noc_block_[name_of_your_block]_tb to fail.
Also might be worth changing
rfnoc/testbenches/${name}
to an absolute path--${CMAKE_SOURCE_DIR}/rfnoc/testbenches/${name}
The text was updated successfully, but these errors were encountered: