I have a project where I'm using the V8 JavaScript engine from Google. I also use Travis CI to build and deploy my project. The build often exceeds the maximum time limit (~45 min) and fails because of this. I have done the following to speed up the compile time for V8 (which made some difference):
- Don't build tests
- Disabled support for i18n
How could I speed up the compile time for V8 even more?