[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Newsgroup Home]
[news.eclipse.dsdp.rtsc] Re: XDC build error with specific XDCARGS

Badri wrote:
Champs,
I am using XDC tools version 3.15.00.50 on Windows. I am seeing that the xdc build fails with message:
"can't create directory syslink_2_00_00_04" on giving the following XDC build command line:
xdc all XDCARGS="SYSLINKDIR=D:/tools_wtbu_base_omx/syslink_2_00_00_04"


Looks like XDC tools tries to create a mak file under lib/ folder of the form

lib/SYSLINKDIR=D:/tools_wtbu_base_omx/syslink_2_00_00_04/ti.sdo.domx.domxcore.av5T.mak


which fails on windows.

Can you please let me know how to escape the XDCARGS so that this does not occur

XDCARGS is "uninterpreted" by XDCtools; it is simply passed to package build scripts; see http://rtsc.eclipse.org/docs-tip/Command_-_xdc#Environment_Variables

This looks like a SysLink question but, if I had to guess, I'd try dropping the XDCARGS assignment:

    xdc all SYSLINKDIR=D:/tools_wtbu_base_omx/syslink_2_00_00_04

Recall that the xdc command is just GNU make and GNU make allows one to define values on the command line via simple name=value pairs.

Thanks Badri