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

Side by Side Diff: SConstruct

Issue 9584045: Fix MinGW-w64 compilation (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 8 years, 9 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 | src/globals.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2012 the V8 project authors. All rights reserved. 1 # Copyright 2012 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 282 matching lines...) Expand 10 before | Expand all | Expand 10 after
293 'gcc': { 293 'gcc': {
294 'all': { 294 'all': {
295 'WARNINGFLAGS': ['-Wall', 295 'WARNINGFLAGS': ['-Wall',
296 '-Werror', 296 '-Werror',
297 '-W', 297 '-W',
298 '-Wno-unused-parameter', 298 '-Wno-unused-parameter',
299 '-Woverloaded-virtual', 299 '-Woverloaded-virtual',
300 '-Wnon-virtual-dtor'] 300 '-Wnon-virtual-dtor']
301 }, 301 },
302 'os:win32': { 302 'os:win32': {
303 'WARNINGFLAGS': ['-pedantic', '-Wno-long-long', '-Wno-pedantic-ms-format'] 303 'WARNINGFLAGS': ['-pedantic', '-Wno-long-long', '-Wno-pedantic-ms-format'] ,
304 'library:shared': {
305 'LIBS': ['winmm', 'ws2_32']
306 }
304 }, 307 },
305 'os:linux': { 308 'os:linux': {
306 'WARNINGFLAGS': ['-pedantic'], 309 'WARNINGFLAGS': ['-pedantic'],
307 'library:shared': { 310 'library:shared': {
308 'soname:on': { 311 'soname:on': {
309 'LINKFLAGS': ['-Wl,-soname,${SONAME}'] 312 'LINKFLAGS': ['-Wl,-soname,${SONAME}']
310 } 313 }
311 } 314 }
312 }, 315 },
313 'os:macos': { 316 'os:macos': {
(...skipping 1247 matching lines...) Expand 10 before | Expand all | Expand 10 after
1561 # version of scons. Also, there's a bug in some revisions that 1564 # version of scons. Also, there's a bug in some revisions that
1562 # doesn't allow this flag to be set, so we swallow any exceptions. 1565 # doesn't allow this flag to be set, so we swallow any exceptions.
1563 # Lovely. 1566 # Lovely.
1564 try: 1567 try:
1565 SetOption('warn', 'no-deprecated') 1568 SetOption('warn', 'no-deprecated')
1566 except: 1569 except:
1567 pass 1570 pass
1568 1571
1569 1572
1570 Build() 1573 Build()
OLDNEW
« no previous file with comments | « no previous file | src/globals.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698