Don't hard-code object sizes
We need to know the object sizes for the target kernel being used inside the tool https://github.com/seL4/microkit/blob/a7f037c74097f688e11134ba888eba531eaad971/tool/microkit/src/sel4.rs#L433.
It is vital that these are the exact same as what is in the architecture specific constants.h. These values are often highly configuration dependent which results in the tool being fragile in this area.
We should instead change the kernel build system to output a format readable by the tool (e.g JSON instead of C header) so that we don't have to hard-code all these values, or we add another step in build_sdk.py to do the same thing.
json output from the kernel side would be great, then I can use that on the verification side as well.