I think they already do that with bitcode. You upload the LLVM bitcode and it will generate the code for the appropriate architecture as needed. It's standard when you upload your app to iTunes.
They don't use your source code for that.
back
1 comments
Do you mean "bytecode" or is "bitcode" a thing?
bitcode is indeed a thing, its a file format for LLVM IR https://lowlevelbits.org/bitcode-demystified/
It's not really a bytecode as it's not interpreted, but that's debatable.
I continue to learn more.