Revision: 18257
Author:   [email protected]
Date:     Thu Dec  5 11:19:10 2013 UTC
Log:      Pass -Goutput_dir=. to the make generator.

This makes it possible to remove the builddir_name hack added in r238632.

BUG=315004

Patch from Nico Weber <[email protected]>.

[email protected]

Review URL: https://codereview.chromium.org/98753003
http://code.google.com/p/v8/source/detail?r=18257

Modified:
 /branches/bleeding_edge/build/gyp_v8

=======================================
--- /branches/bleeding_edge/build/gyp_v8        Mon Jul 15 15:41:21 2013 UTC
+++ /branches/bleeding_edge/build/gyp_v8        Thu Dec  5 11:19:10 2013 UTC
@@ -167,5 +167,9 @@
   # Generate for the architectures supported on the given platform.
   gyp_args = list(args)
   if platform.system() == 'Linux':
+    # --generator-output defines where the Makefile goes.
     gyp_args.append('--generator-output=out')
+    # -Goutput_dir defines where the build output goes, relative to the
+ # Makefile. Set it to . so that the build output doesn't end up in out/out.
+    gyp_args.append('-Goutput_dir=.')
   run_gyp(gyp_args)

--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" 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/groups/opt_out.

Reply via email to