C++ incremental compilation

Hello,

I just have a question just for knowledge, are extensions built from scratch on the build server everytime? or there is incremental compilation support somehow?

Thanks

1 Like

Hi @Karim_Ahmed!

Unfortunately, the builds are currently not incremental.
We do cache larger files when uploaded, so the next upload won’t take as long.
And I’d like to add support for caching the built artifacts as well (.o, .a, .jar, .dex etc).

EDIT: And, also, the final built result is currently also cached by the editor/bob.jar (you’ll find it in ./internal/cache)

1 Like

Thanks @Mathias_Westerdahl