Forum Discussion
Altera_Forum
Honored Contributor
8 years ago --- Quote Start --- why would you put all the packages in their own library? packages should be in appropriate libraries. --- Quote End --- if I want to use the 'context' in the libraries clause, I must compile the context's related packages in a separate library (not to 'work' lib). Example:
library pkgs;
context pkgs.all_func;
...
contect all_func is
library pkgs;
use f1_pkg.all;
use f2_pkg.all;
...
end context;
--- Quote Start --- packages should be in appropriate libraries --- Quote End --- What do you mean "appropriate libraries"?