We are using a C6713B processor and I need to build the run time library rts6700.lib for compiler version 7.3.7. This library was successfully built for version 7.3.5 and I am following the same method for 7.3.7.
The path environment has the following: d:\ti\ccsv5\utils\bin;d:\ti\ccsv5\utils\cygwin;d:\ti\ccsv5\tools\c6000_7.3.7\bin;d:\ti\ccsv5\tools\c6000_7.3.7\include
Here is the make line I successfully used for 7.3.5 and tried for 7.3.7: mklib --pattern=rts6700.lib --index=libc.a
It seems to fail because it can't find the files negll.obj and wchar.obj. Here are the failures:
cl6x negll.sa -o -oe -k -ps -pdsw225 -q -mo --mem_model:data=far --no_visible_enums -c --ti_lib --building_runtime -D_B
OOL -mv6700 -Ic:/temp/ti_mkl~1/src -fr c:/temp/ti_mkl~1/obj -fs c:/temp/ti_mkl~1/obj -ft c:/temp/ti_mkl~1/obj
process_begin: CreateProcess(NULL, cl6x negll.sa -o -oe -k -ps -pdsw225 -q -mo --mem_model:data=far --no_visible_enums -
c --ti_lib --building_runtime -D_BOOL -mv6700 -Ic:/temp/ti_mkl~1/src -fr c:/temp/ti_mkl~1/obj -fs c:/temp/ti_mkl~1/obj -
ft c:/temp/ti_mkl~1/obj, ...) failed.
cl6x wchar.cx -o -oe -k -ps -pdsw225 -q -mo --mem_model:data=far --no_visible_enums -c --ti_lib --building_runtime -D_B
OOL -mv6700 -Ic:/temp/ti_mkl~1/src -fr c:/temp/ti_mkl~1/obj -fs c:/temp/ti_mkl~1/obj -ft c:/temp/ti_mkl~1/obj
process_begin: CreateProcess(NULL, cl6x wchar.cx -o -oe -k -ps -pdsw225 -q -mo --mem_model:data=far --no_visible_enums -
c --ti_lib --building_runtime -D_BOOL -mv6700 -Ic:/temp/ti_mkl~1/src -fr c:/temp/ti_mkl~1/obj -fs c:/temp/ti_mkl~1/obj -
ft c:/temp/ti_mkl~1/obj, ...) failed.
make (e=2): The system cannot find the file specified.
gmake.exe: *** [c:/temp/ti_mkl~1/obj/negll.obj] Error 2
gmake.exe: *** Waiting for unfinished jobs....
make (e=2): The system cannot find the file specified.
gmake.exe: *** [c:/temp/ti_mkl~1/obj/wchar.obj] Error 2
I looked in the temp directory where the source files were extracted and negll.sa and the wchar files appear to be there.
Any suggestions?