Forum Discussion
5 Replies
- Altera_Forum
Honored Contributor
You probably just need to delete, re-add the .qip file. Or edit your .qsf file directly and change the path.
FYI, instead of using Qsys to generate the files and adding the .qip to your Quartus project, you can also just add the .qsys file directly to your project. Then when you compile your project, Qsys will automatically generate the Qsys system. - Altera_Forum
Honored Contributor
@ted: Thanks for the suggestion.
I have changed the path to the .qip and it seems to work ... But I get the following errors if I try to generate the system by Qsys:
:confused:Error: soc_system.intr_capturer_0: Component intr_capturer 100.99.98.97 not found or could not be instantiated Error: soc_system.avs_to_wbs_bridge_0: Component avs_to_wbs_bridge 1.0 not found or could not be instantiated - Altera_Forum
Honored Contributor
Presumably those are custom IP cores - i.e. ones in your project directory, not in the Quartus ip directiory?
If so, you will need to tell Qsys where to find them. In the directory where you put the Qsys file, create a file called "ipcores.ipx", and add the following:<library> <path path="relative/path/to/folder/with/custom/ipcores/in/it/**/*" > <!-- Keep the /**/* at the end of your path --> <tag2 key="COMPONENT_IN_PROJECT" value="true" /> </path> </library> - Altera_Forum
Honored Contributor
@TCWORLD: Thanks for your support! The stars "*" helped me a lot.
Instead of ipcores.ipx, I added the following line to my .qsf file and it works fine!set_global_assignment -name SEARCH_PATH ../ip/**/* - Altera_Forum
Honored Contributor
This doesn't seem to work anymore in Quartus Prime Standard 16.1. Can't figure out why does the options window in Qsys not accept relative paths?