On Mon, Apr 25, 2016 at 1:36 PM, Deepak Subramanian <[email protected]> wrote: > Hi I am looking to use g++ as my default. I used to use GYPFLAGS="-Dclang=0" > when using make. Is there a way I can accomplish the same thing using ninja > . > > My main issue is that I am moving my build to chromium and I want to > continue using g++.
GYP's build.ninja generator respects the CC and CXX environment variables so I think you should be able to just `env CXX=g++ python build/gyp_v8` or however you invoke GYP. -- -- 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.
