- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
Hi all,
in my project, I need to include a library, MF_pllpack.all: library ieee;use ieee.std_logic_1164.all;
use std.textio.all;
use work.mf_pllpack.all; ... I have compiled that library elsewhere in another folder. How can I carry that compiled library under "Work" to use it in my project? Thanks to all
コピーされたリンク
5 返答(返信)
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
it's easiest just to compile it for the local work libarary.
vcom the_directory_of_the_MF_pllpack/MF_pllpack.vhd otherwise you have to import it as an external (not work) library- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
i have not got the .vhd file (MF_pllpack.vhd), but only the compiling folder containing the compilation files
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
in that case either:
copy the compiled files to the local work folder and try a refresh use the ML_pllpack folder as the work folder. map an external library to the MF_pllpack work folder: vmap MF_Lib MF_directory/work and then in your source: library MF_Lib; use MF_Lib.MF_pllpack.all;- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
use the ml_pllpack folder as the work folder.???
I have to include even other libraries...I have to mantain 'WORK' as work folder- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
then I suggest you do not include MF_pllpack in the work library but map to it as another library.
vmap MF_lib directory_of_MF/work/ then in the code, instead of use work.MF_pllpack.all; write: library MF_Lib; use MF_Lib.MF_pllpack.all;