Hi,
For some security reasons, I have a bunch of pre-built object files. I
want to add them into my codec, so they are archived along with all the
other .c files after they are compiled.
I have tried this in my package.bld:
if( targ.name == "C64P" )
{
// Add licensing object files
objs =
java.io.File("../../security/obj/C64P").list();
for( var k = 0; k < objs.length; k++ )
{
print(objs[k]);
}
// Add object files
lib.addObjects(objs);
}
This seems to work, but I get the warnings:
Warning: target ti.targets.C64P doesn't know how to create
'package/lib/lib/**/aes.o64P'
Warning: target ti.targets.C64P doesn't know how to create
'package/lib/lib/**/bignum.o64P'
Warning: target ti.targets.C64P doesn't know how to create
'package/lib/lib/**/sha1.o64P'
I also tried by specifying the prebuilt:1 flag, but this didn't work at
all.
Any ideas?
Thanks,
Ben
_______________________________________________
Davinci-linux-open-source mailing list
[email protected]
http://linux.davincidsp.com/mailman/listinfo/davinci-linux-open-source