Thank you! By disabling i18n and stripping it, I was able to get the build down to 2.8 MB. This is excellent.
Now, how would I pull a similar stunt on Windows? As mentioned previously, I was able to reduce v8_base.lib to about 38 MB by setting "Debug Information Format" to "None" and optimization flags to "Minimum Size" (/O1) and "Favor small code" (/Os), but that's still massive, and that's just one of the files. It sounds like the binary isn't stripped and that V8 is linked against > ICU. Run `strip path/to/d8` to strip debug symbols. `make > i18nsupport=off` builds without ICU. > -- -- v8-users mailing list [email protected] http://groups.google.com/group/v8-users --- You received this message because you are subscribed to the Google Groups "v8-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
