diff options
| author | Leon Clarke <leonclarke@google.com> | 2010-01-27 15:57:47 +0000 |
|---|---|---|
| committer | Leon Clarke <leonclarke@google.com> | 2010-01-27 15:57:47 +0000 |
| commit | 888f6729be6a6f6fbe246cb5a9f122e2dbe455b7 (patch) | |
| tree | 16f9ce250ef5d36e49a0fb0018e979002ed5b4fb /src/SConscript | |
| parent | 1471e9f5b6f291eea8447f441527cd2a85074a33 (diff) | |
| download | android_external_v8-888f6729be6a6f6fbe246cb5a9f122e2dbe455b7.tar.gz android_external_v8-888f6729be6a6f6fbe246cb5a9f122e2dbe455b7.tar.bz2 android_external_v8-888f6729be6a6f6fbe246cb5a9f122e2dbe455b7.zip | |
Pull from svn bleeding_edge@3716
Diffstat (limited to 'src/SConscript')
| -rwxr-xr-x | src/SConscript | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/src/SConscript b/src/SConscript index 4eb87224..7950ab33 100755 --- a/src/SConscript +++ b/src/SConscript @@ -56,10 +56,10 @@ SOURCES = { disassembler.cc execution.cc factory.cc - fast-codegen.cc flags.cc frame-element.cc frames.cc + full-codegen.cc func-name-inferrer.cc global-handles.cc handles.cc @@ -112,8 +112,8 @@ SOURCES = { arm/cpu-arm.cc arm/debug-arm.cc arm/disasm-arm.cc - arm/fast-codegen-arm.cc arm/frames-arm.cc + arm/full-codegen-arm.cc arm/ic-arm.cc arm/jump-target-arm.cc arm/macro-assembler-arm.cc @@ -135,8 +135,8 @@ SOURCES = { ia32/cpu-ia32.cc ia32/debug-ia32.cc ia32/disasm-ia32.cc - ia32/fast-codegen-ia32.cc ia32/frames-ia32.cc + ia32/full-codegen-ia32.cc ia32/ic-ia32.cc ia32/jump-target-ia32.cc ia32/macro-assembler-ia32.cc @@ -152,8 +152,8 @@ SOURCES = { x64/cpu-x64.cc x64/debug-x64.cc x64/disasm-x64.cc - x64/fast-codegen-x64.cc x64/frames-x64.cc + x64/full-codegen-x64.cc x64/ic-x64.cc x64/jump-target-x64.cc x64/macro-assembler-x64.cc @@ -168,6 +168,7 @@ SOURCES = { 'os:linux': ['platform-linux.cc', 'platform-posix.cc'], 'os:android': ['platform-linux.cc', 'platform-posix.cc'], 'os:macos': ['platform-macos.cc', 'platform-posix.cc'], + 'os:solaris': ['platform-solaris.cc', 'platform-posix.cc'], 'os:nullos': ['platform-nullos.cc'], 'os:win32': ['platform-win32.cc'], 'mode:release': [], @@ -196,6 +197,9 @@ D8_FILES = { 'os:openbsd': [ 'd8-posix.cc' ], + 'os:solaris': [ + 'd8-posix.cc' + ], 'os:win32': [ 'd8-windows.cc' ], |
