[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Newsgroup Home]
[news.eclipse.dsdp.rtsc] Re: RTSC Module Primer / Lesson 0+1 Examples / Windows Double-Quotes

I agree with you, avoiding spaces in path names would be the best solution. Unfortunately, TI uses spaces in the setup default pathes of their products, for example:

"C:\Programme\Texas Instruments\xdctools_3_10_03" on a german Windows XP
"C:\Program Files\Texas Instruments\xdctools_3_10_03" on an english Windows XP


Following the hint at lesson 0, I modified common.mak:

XDCROOT = "C:/Programme/Texas Instruments/xdctools_3_10_03"
C6XTOOLS = "C:/Programme/Texas Instruments/C6000 Code Generation Tools 6.1.10"


Good idea, but it seem windows doesn't allow the concatenation of quoted pathes with sub-pathes. Running lesson1/makefile comes up with this application name:

"C:/Programme/Texas Instruments/xdctools_3_10_03"/xs

This will not work. We need this command:

"C:/Programme/Texas Instruments/xdctools_3_10_03/xs"

You see what I mean? Other combined path names will be malformed, e.g.:

CONFIGURO = $(XDCROOT)/xs xdc.tools.configuro
LOADER = $(XDCROOT)/xs xdc.tools.loader
CC = $(C6XTOOLS)/bin/cl6x -q
..-l $(C6XTOOLS)/lib/rts64plus.lib