Forum Discussion
Altera_Forum
Honored Contributor
8 years agoA context can contain multiple libraries and multiple use clauses. No need to have all of the packages in a single library. A context also exists within a library.
eg:
context my_ctx is
library lib1;
use lib1.pkg1.all;
library lib2;
use lib2.lib2pkg.all;
end context my_ctx;
....
library some_othter_lib;
context some_other_lib.my_ctx;