OLD | NEW |
1 # Copyright 2008 the V8 project authors. All rights reserved. | 1 # Copyright 2008 the V8 project authors. All rights reserved. |
2 # Redistribution and use in source and binary forms, with or without | 2 # Redistribution and use in source and binary forms, with or without |
3 # modification, are permitted provided that the following conditions are | 3 # modification, are permitted provided that the following conditions are |
4 # met: | 4 # met: |
5 # | 5 # |
6 # * Redistributions of source code must retain the above copyright | 6 # * Redistributions of source code must retain the above copyright |
7 # notice, this list of conditions and the following disclaimer. | 7 # notice, this list of conditions and the following disclaimer. |
8 # * Redistributions in binary form must reproduce the above | 8 # * Redistributions in binary form must reproduce the above |
9 # copyright notice, this list of conditions and the following | 9 # copyright notice, this list of conditions and the following |
10 # disclaimer in the documentation and/or other materials provided | 10 # disclaimer in the documentation and/or other materials provided |
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
143 dtoa_env = env.Copy() | 143 dtoa_env = env.Copy() |
144 dtoa_env.Replace(**context.flags['dtoa']) | 144 dtoa_env.Replace(**context.flags['dtoa']) |
145 dtoa_files = ['dtoa-config.c'] | 145 dtoa_files = ['dtoa-config.c'] |
146 dtoa_obj = context.ConfigureObject(dtoa_env, dtoa_files) | 146 dtoa_obj = context.ConfigureObject(dtoa_env, dtoa_files) |
147 | 147 |
148 source_objs = context.ConfigureObject(env, source_files) | 148 source_objs = context.ConfigureObject(env, source_files) |
149 non_snapshot_files = [jscre_obj, dtoa_obj, source_objs] | 149 non_snapshot_files = [jscre_obj, dtoa_obj, source_objs] |
150 | 150 |
151 # Create snapshot if necessary. | 151 # Create snapshot if necessary. |
152 empty_snapshot_obj = context.ConfigureObject(env, 'snapshot-empty.cc') | 152 empty_snapshot_obj = context.ConfigureObject(env, 'snapshot-empty.cc') |
| 153 mksnapshot_src = 'mksnapshot.cc' |
| 154 mksnapshot = env.Program('mksnapshot', [mksnapshot_src, libraries_obj, non_sna
pshot_files, empty_snapshot_obj], PDB='mksnapshot.exe.pdb') |
153 if context.use_snapshot: | 155 if context.use_snapshot: |
154 mksnapshot_src = 'mksnapshot.cc' | 156 if context.build_snapshot: |
155 mksnapshot = env.Program('mksnapshot', [mksnapshot_src, libraries_obj, non_s
napshot_files, empty_snapshot_obj], PDB='mksnapshot.exe.pdb') | 157 snapshot_cc = env.Snapshot('snapshot.cc', mksnapshot, LOGFILE=File('snapsh
ot.log').abspath) |
156 snapshot_cc = env.Snapshot('snapshot.cc', mksnapshot, LOGFILE=File('snapshot
.log').abspath) | 158 else: |
| 159 snapshot_cc = Command('snapshot.cc', [], []) |
157 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) | 160 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) |
158 libraries_obj = context.ConfigureObject(env, libraries_empty_src, CPPPATH=['
.']) | 161 libraries_obj = context.ConfigureObject(env, libraries_empty_src, CPPPATH=['
.']) |
159 else: | 162 else: |
160 snapshot_obj = empty_snapshot_obj | 163 snapshot_obj = empty_snapshot_obj |
161 | |
162 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] | 164 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] |
163 return (library_objs, d8_objs) | 165 return (library_objs, d8_objs, [mksnapshot]) |
164 | 166 |
165 | 167 |
166 (library_objs, d8_objs) = ConfigureObjectFiles() | 168 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() |
167 Return('library_objs d8_objs') | 169 Return('library_objs d8_objs mksnapshot') |
OLD | NEW |