Recompiling encrypted v8 code under v10

Jon_Roland

New Member
How does one migrate encrypted source code from v8 to v10 and recompile it? When one tries to recompile with "xcode " the compiler seems to ignore it and proceeds to error out with the undecrypted source files producing compile errors.Does one have to recompile under v9, then 10, or is there no alternative to getting the unencrypted source?The database itself has already been converted to v10.
 
You should just be able to compile it as is. Of course if there are errors it will fail. Likely errors between v8 and oe10 would be new keywords and tighter compilation rules. Keywords can be dealt with via the keyword forget list. Other errors are, umm, more troubling.

Running it through xcode again will just mangle it (although the from that the mangling takes is insightful if you're interested in xcode :eek: ).
 
We use the same xcode encrypted files on V8 , V9 and V10 . You just need to specify the right encryption key in the compiler options and it should work. If the compiler can't decrypt the code it probably because the encryption key is wrong , xcode hasn't changed since V8.
 
Back
Top