Commit 68834a43 authored by ager@chromium.org's avatar ager@chromium.org

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
parent 3e9d63e1
......@@ -55,7 +55,8 @@ LIBRARY_FLAGS = {
'CCFLAGS': ['-O2']
},
'wordsize:64': {
'CCFLAGS': ['-m32']
'CCFLAGS': ['-m32'],
'LINKFLAGS': ['-m32']
},
},
'msvc': {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment