From 68834a4352ccdcdd6e2f4166481e93b81f78227a Mon Sep 17 00:00:00 2001 From: "ager@chromium.org" Date: Thu, 4 Sep 2008 20:40:40 +0000 Subject: [PATCH] If CCFLAGS contains '-m32', LINKFLAGS needs also needs '-m32'. Otherwise, ld complains and refuses to work. git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@146 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- SConstruct | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index 34f20d340a..ebb2b9e80a 100644 --- a/SConstruct +++ b/SConstruct @@ -55,7 +55,8 @@ LIBRARY_FLAGS = { 'CCFLAGS': ['-O2'] }, 'wordsize:64': { - 'CCFLAGS': ['-m32'] + 'CCFLAGS': ['-m32'], + 'LINKFLAGS': ['-m32'] }, }, 'msvc': {