| OLD | NEW |
| 1 # Copyright 2013 the V8 project authors. All rights reserved. | 1 # Copyright 2013 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 649 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 660 'cflags': ['-mfp32'], | 660 'cflags': ['-mfp32'], |
| 661 }], | 661 }], |
| 662 [ 'clang==0', { | 662 [ 'clang==0', { |
| 663 'cflags': ['-Wa,-mips32r2'], | 663 'cflags': ['-Wa,-mips32r2'], |
| 664 }], | 664 }], |
| 665 ], | 665 ], |
| 666 'cflags': ['-mips32r2'], | 666 'cflags': ['-mips32r2'], |
| 667 'ldflags': ['-mips32r2'], | 667 'ldflags': ['-mips32r2'], |
| 668 }], | 668 }], |
| 669 ['mips_arch_variant=="r1"', { | 669 ['mips_arch_variant=="r1"', { |
| 670 'defines': [ |
| 671 'FPU_MODE_FP32', |
| 672 ], |
| 670 'cflags!': ['-mfp64', '-mfpxx'], | 673 'cflags!': ['-mfp64', '-mfpxx'], |
| 671 'conditions': [ | 674 'conditions': [ |
| 672 [ 'clang==0', { | 675 [ 'clang==0', { |
| 673 'cflags': ['-Wa,-mips32'], | 676 'cflags': ['-Wa,-mips32'], |
| 674 }], | 677 }], |
| 675 ], | 678 ], |
| 676 'cflags': ['-mips32'], | 679 'cflags': ['-mips32'], |
| 677 'ldflags': ['-mips32'], | 680 'ldflags': ['-mips32'], |
| 678 }], | 681 }], |
| 679 ['mips_arch_variant=="rx"', { | 682 ['mips_arch_variant=="rx"', { |
| (...skipping 702 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1382 ], | 1385 ], |
| 1383 }, | 1386 }, |
| 1384 'Release_x64': { | 1387 'Release_x64': { |
| 1385 'inherit_from': ['ReleaseBase'], | 1388 'inherit_from': ['ReleaseBase'], |
| 1386 }, | 1389 }, |
| 1387 }], | 1390 }], |
| 1388 ], | 1391 ], |
| 1389 }, # configurations | 1392 }, # configurations |
| 1390 }, # target_defaults | 1393 }, # target_defaults |
| 1391 } | 1394 } |
| OLD | NEW |