Reviewers: Rico,

Description:
Add ARM_LINK_FLAGS when build d8 with arch=arm to make
cross-compiling d8 easier.


Please review this at http://codereview.chromium.org/3062002/show

SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/

Affected files:
  M     SConstruct


Index: SConstruct
===================================================================
--- SConstruct  (revision 5114)
+++ SConstruct  (working copy)
@@ -43,7 +43,7 @@
   ANDROID_TOP=""

 # ARM_TARGET_LIB is the path to the dynamic library to use on the target
-# machine if cross-compiling to an arm machine. You will also need to set
+# machine if cross-compiling to an arm machine. You will also need to set
# the additional cross-compiling environment variables to the cross compiler.
 ARM_TARGET_LIB = os.environ.get('ARM_TARGET_LIB')
 if ARM_TARGET_LIB:
@@ -629,6 +629,9 @@
     'os:win32': {
       'LIBS': ['winmm', 'ws2_32'],
     },
+    'arch:arm': {
+      'LINKFLAGS':   ARM_LINK_FLAGS
+    },
   },
   'msvc': {
     'all': {


--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to