Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(111)

Side by Side Diff: SConstruct

Issue 67242: Fix building of snapshots on Windows (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 11 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 220 matching lines...) Expand 10 before | Expand all | Expand 10 after
231 }, 231 },
232 'os:freebsd': { 232 'os:freebsd': {
233 'LIBS': ['pthread'], 233 'LIBS': ['pthread'],
234 }, 234 },
235 'os:win32': { 235 'os:win32': {
236 'LIBS': ['winmm', 'ws2_32'], 236 'LIBS': ['winmm', 'ws2_32'],
237 }, 237 },
238 }, 238 },
239 'msvc': { 239 'msvc': {
240 'all': { 240 'all': {
241 'CPPDEFINES': ['_HAS_EXCEPTIONS=0'],
241 'LIBS': ['winmm', 'ws2_32'] 242 'LIBS': ['winmm', 'ws2_32']
242 } 243 }
243 } 244 }
244 } 245 }
245 246
246 247
247 DTOA_EXTRA_FLAGS = { 248 DTOA_EXTRA_FLAGS = {
248 'gcc': { 249 'gcc': {
249 'all': { 250 'all': {
250 'WARNINGFLAGS': ['-Werror', '-Wno-uninitialized'] 251 'WARNINGFLAGS': ['-Werror', '-Wno-uninitialized']
(...skipping 515 matching lines...) Expand 10 before | Expand all | Expand 10 after
766 # version of scons. Also, there's a bug in some revisions that 767 # version of scons. Also, there's a bug in some revisions that
767 # doesn't allow this flag to be set, so we swallow any exceptions. 768 # doesn't allow this flag to be set, so we swallow any exceptions.
768 # Lovely. 769 # Lovely.
769 try: 770 try:
770 SetOption('warn', 'no-deprecated') 771 SetOption('warn', 'no-deprecated')
771 except: 772 except:
772 pass 773 pass
773 774
774 775
775 Build() 776 Build()
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698