OLD | NEW |
1 # Copyright 2011 the V8 project authors. All rights reserved. | 1 # Copyright 2011 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 789 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
800 }, | 800 }, |
801 'os:openbsd': { | 801 'os:openbsd': { |
802 'LIBS': ['pthread'], | 802 'LIBS': ['pthread'], |
803 }, | 803 }, |
804 'os:win32': { | 804 'os:win32': { |
805 'LIBS': ['winmm', 'ws2_32'], | 805 'LIBS': ['winmm', 'ws2_32'], |
806 }, | 806 }, |
807 'arch:arm': { | 807 'arch:arm': { |
808 'LINKFLAGS': ARM_LINK_FLAGS | 808 'LINKFLAGS': ARM_LINK_FLAGS |
809 }, | 809 }, |
| 810 'compress_startup_data:bz2': { |
| 811 'CPPDEFINES': ['COMPRESS_STARTUP_DATA_BZ2'], |
| 812 'os:linux': { |
| 813 'LIBS': ['bz2'] |
| 814 } |
| 815 } |
810 }, | 816 }, |
811 'msvc': { | 817 'msvc': { |
812 'all': { | 818 'all': { |
813 'LIBS': ['winmm', 'ws2_32'] | 819 'LIBS': ['winmm', 'ws2_32'] |
814 } | 820 } |
815 } | 821 } |
816 } | 822 } |
817 | 823 |
818 | 824 |
819 SUFFIXES = { | 825 SUFFIXES = { |
(...skipping 649 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1469 # version of scons. Also, there's a bug in some revisions that | 1475 # version of scons. Also, there's a bug in some revisions that |
1470 # doesn't allow this flag to be set, so we swallow any exceptions. | 1476 # doesn't allow this flag to be set, so we swallow any exceptions. |
1471 # Lovely. | 1477 # Lovely. |
1472 try: | 1478 try: |
1473 SetOption('warn', 'no-deprecated') | 1479 SetOption('warn', 'no-deprecated') |
1474 except: | 1480 except: |
1475 pass | 1481 pass |
1476 | 1482 |
1477 | 1483 |
1478 Build() | 1484 Build() |
OLD | NEW |