From: Steve H. <st...@we...> - 2013-11-12 23:46:22
|
In order to make development more productive, I'd like to be able to recompile only those Java files that have been modified since my last compile. Looking at the code, it looks like this won't be possible (for the Java to C conversion) because all of the strings are generated centrally in a file called constant_pool.m, and explicit string indexes are used in the actual generated C files when using a string constant. This means that modifying any single Java file could result in changes to all other java files, since it would change the string index of all string literals. Is there a setting for XMLVM to disable the string pool usage, and instead just use xmlvm_create_java_string("...") to create the strings. Alternatively, is there another approach that can be used to make the generated source files independent of each other? Any pointers appreciated. Steve |