Ah, also, make sure there are no spaces in your file paths (eg don't use "Documents and settings/My Documents" for your project files).

You can have a look at this script and it's basically just calling a standard windows xcopy, so not much that can go wrong. You can also try'n execute it manually to see if there's some more helpful debug output.

Jason


On 10 Jun 2009, at 11:02, Jason Manley wrote:

Chances are that it's not finding your base package. Are you certain your environment variables are correctly set (MLIB_ROOT and BEE2_XPS_LIB_PATH)?

The recommended way of starting your matlab install is with a batch file containing something like:



set MATLAB=C:\Programs\MATLAB2007b
set XILINX=C:\Xilinx\ISE10.1\ISE
set XILINX_EDK=C:\Xilinx\EDK10.1\EDK
set MLIB_ROOT=C:\casper_svn\mlib_devel_10_1
set BEE2_XPS_LIB_PATH=%MLIB_ROOT%\xps_lib

set PATH=%XILINX%\bin\nt;%XILINX_EDK%\bin\nt;%PATH%;

%MATLAB%\bin\win32\matlab.exe






Your startup.m should contain something like:


addpath([getenv('MLIB_ROOT'), '\xps_library']);
load_system([getenv('MLIB_ROOT'), '\xps_library\xps_library.mdl']);
addpath([getenv('MLIB_ROOT'), '\casper_library']);
load_system([getenv('MLIB_ROOT'), '\casper_library \casper_library.mdl']);
addpath([getenv('MLIB_ROOT'), '\gavrt_library']);
load_system([getenv('MLIB_ROOT'), '\gavrt_library \gavrt_library.mdl']);





Jason Manley
Digital Engineer
SKA-SA, KAT Pinelands office

Unit 12, Lonsdale Building
Lonsdale Road
Pinelands
7405
South Africa

Cell: +27 82 662 7726
Work: +27 21 531 7282
Fax: + 27 21 531 9761

On 10 Jun 2009, at 10:42, Mitchell Bernard Mickaliger wrote:

Hi guys,

I have installed version 10.1 of the toolflow, and when I try to build a
design, it compiles fine until it gets to the "copying base system"
step, where I get the following error:

Error using ==> gen_xps_files at 286
Unpackage base system files failed.

Any ideas?

--
Mitch Mickaliger
Physics Department
West Virginia University






Reply via email to