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
This commit is contained in:
ager@chromium.org 2008-09-04 20:40:40 +00:00
parent 3e9d63e16e
commit 68834a4352

View File

@ -55,7 +55,8 @@ LIBRARY_FLAGS = {
'CCFLAGS': ['-O2']
},
'wordsize:64': {
'CCFLAGS': ['-m32']
'CCFLAGS': ['-m32'],
'LINKFLAGS': ['-m32']
},
},
'msvc': {