| Index: src/SConscript
|
| diff --git a/src/SConscript b/src/SConscript
|
| index 632e6575d1b7d7de24973a3be52f00ab014ec9ca..7aa673b6875d4aa156311ffcd89c813d07058bf3 100755
|
| --- a/src/SConscript
|
| +++ b/src/SConscript
|
| @@ -224,7 +224,7 @@ SOURCES = {
|
| 'os:solaris': ['platform-solaris.cc', 'platform-posix.cc'],
|
| 'os:cygwin': ['platform-cygwin.cc', 'platform-posix.cc'],
|
| 'os:nullos': ['platform-nullos.cc'],
|
| - 'os:win32': ['platform-win32.cc'],
|
| + 'os:win32': ['platform-win32.cc', 'win32-math.cc'],
|
| 'mode:release': [],
|
| 'mode:debug': [
|
| 'objects-debug.cc', 'prettyprinter.cc', 'regexp-macro-assembler-tracer.cc'
|
| @@ -235,15 +235,25 @@ SOURCES = {
|
| PREPARSER_SOURCES = {
|
| 'all': Split("""
|
| allocation.cc
|
| + bignum.cc
|
| + bignum-dtoa.cc
|
| + cached-powers.cc
|
| + conversions.cc
|
| + diy-fp.cc
|
| + dtoa.cc
|
| + fast-dtoa.cc
|
| + fixed-dtoa.cc
|
| hashmap.cc
|
| preparse-data.cc
|
| preparser.cc
|
| preparser-api.cc
|
| scanner-base.cc
|
| + strtod.cc
|
| token.cc
|
| unicode.cc
|
| utils.cc
|
| - """)
|
| + """),
|
| + 'os:win32': ['win32-math.cc']
|
| }
|
|
|
|
|
|
|