On Tue, Dec 29, 2015 at 9:47 PM, Jane Chen <[email protected]> wrote: > Once the .sln and .vcxproj files are generated through python, how is one > supposed to re-generate them with different gyp flags? When I run: > > python build/gyp_v8 -Dtarget_arch=x64 -Dv8_use_external_startup_data=0 > > for example, I get "updating project files...", but then only to find out > nothing is updated. > > Any advice would be appreciated. Thanks in advance.
GYP only updates when the build rules change. If the *.gyp and *.gypi files are unchanged and you ran gyp_v8 with -Dtarget_arch=x64 -Dv8_use_external_startup_data=0 last time as well, then there is nothing to update. -- -- 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.
