|
|
|
|
|
by mraleph
1938 days ago
|
|
[I work on Dart VM team] `dart2native` just concatenates two binaries together: AOT runtime binary and AOT snapshot binary. AOT snapshot is an ELF binary which contains native code generated from your original Dart code. The approach is not pretty but was chosen as an implementation shortcut. That's why `strip` does not actually do good things to the binary. There is no reason to run `strip` on such binaries - because they don't contain anything strippable. |
|
I didn't inspect the binaries, just try to see how/if they compress.