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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
91 'CXXFLAGS': ['$CCFLAGS', '-fno-rtti', '-fno-exceptions'], | 91 'CXXFLAGS': ['$CCFLAGS', '-fno-rtti', '-fno-exceptions'], |
92 }, | 92 }, |
93 'mode:debug': { | 93 'mode:debug': { |
94 'CCFLAGS': ['-g', '-O0'], | 94 'CCFLAGS': ['-g', '-O0'], |
95 'CPPDEFINES': ['ENABLE_DISASSEMBLER', 'DEBUG'] | 95 'CPPDEFINES': ['ENABLE_DISASSEMBLER', 'DEBUG'] |
96 }, | 96 }, |
97 'mode:release': { | 97 'mode:release': { |
98 'CCFLAGS': ['-O3', '-fomit-frame-pointer', '-fdata-sections', | 98 'CCFLAGS': ['-O3', '-fomit-frame-pointer', '-fdata-sections', |
99 '-ffunction-sections'], | 99 '-ffunction-sections'], |
100 'os:android': { | 100 'os:android': { |
101 'CCFLAGS': ['-mthumb'], | 101 'CCFLAGS': ['-mthumb', '-Os'], |
102 'CPPDEFINES': ['SK_RELEASE', 'NDEBUG'] | 102 'CPPDEFINES': ['SK_RELEASE', 'NDEBUG'] |
103 } | 103 } |
104 }, | 104 }, |
105 'os:linux': { | 105 'os:linux': { |
106 'CCFLAGS': ['-ansi'], | 106 'CCFLAGS': ['-ansi'], |
107 }, | 107 }, |
108 'os:macos': { | 108 'os:macos': { |
109 'CCFLAGS': ['-ansi'], | 109 'CCFLAGS': ['-ansi'], |
110 }, | 110 }, |
111 'os:freebsd': { | 111 'os:freebsd': { |
(...skipping 643 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
755 # version of scons. Also, there's a bug in some revisions that | 755 # version of scons. Also, there's a bug in some revisions that |
756 # doesn't allow this flag to be set, so we swallow any exceptions. | 756 # doesn't allow this flag to be set, so we swallow any exceptions. |
757 # Lovely. | 757 # Lovely. |
758 try: | 758 try: |
759 SetOption('warn', 'no-deprecated') | 759 SetOption('warn', 'no-deprecated') |
760 except: | 760 except: |
761 pass | 761 pass |
762 | 762 |
763 | 763 |
764 Build() | 764 Build() |
OLD | NEW |