Revision: 22565
Author: [email protected]
Date: Wed Jul 23 14:54:12 2014 UTC
Log: Fix cross-compilation in Makefile.
Fix r22531, I dropped a necessary pair of parens.
BUG=
[email protected]
Review URL: https://codereview.chromium.org/410003003
http://code.google.com/p/v8/source/detail?r=22565
Modified:
/branches/bleeding_edge/Makefile
=======================================
--- /branches/bleeding_edge/Makefile Tue Jul 22 15:29:22 2014 UTC
+++ /branches/bleeding_edge/Makefile Wed Jul 23 14:54:12 2014 UTC
@@ -401,7 +401,7 @@
$(OUT_MAKEFILES): $(GYPFILES) $(ENVFILE)
$(eval CXX_TARGET_ARCH:=$(shell $(CXX) -v 2>&1 | grep ^Target: | \
cut -f 2 -d " " | cut -f 1 -d "-" ))
- $(eval CXX_TARGET_ARCH:=$(subst aarch64,arm64,$CXX_TARGET_ARCH))
+ $(eval CXX_TARGET_ARCH:=$(subst aarch64,arm64,$(CXX_TARGET_ARCH)))
$(eval V8_TARGET_ARCH:=$(subst .,,$(suffix $(basename $@))))
PYTHONPATH="$(shell pwd)/tools/generate_shim_headers:$(shell
pwd)/build:$(PYTHONPATH):$(shell pwd)/build/gyp/pylib:$(PYTHONPATH)" \
GYP_GENERATORS=make \
--
--
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/d/optout.