Hello,
First off, I wanted to thank you all for the wonderful build system, Bazel!
I’m compiling an iOS app with several thousands of files ( mix of ObjC, ObjC++, C, C++ ) with Bazel. I’d like to build on consumer grade laptops: i.e. invoking a clean build on a mid range 2013 MacBook air.
My baseline build is an Xcode debug build and when I try to compile my entire app under bazel, it is significantly slower than Xcode ( i.e. 2.5x slower ).
Running builds with --spawn_strategy=standalone brings the build time down to something acceptable: similar build time compared to Xcode.
Is safe to turn off sandboxing as a sensible default for local builds? Will this degraded safety or stability for the local builds?
Cheers!
Jerry Marino