OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'libc++abi', | 8 'target_name': 'libc++abi', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'dependencies=': [], | 10 'dependencies=': [], |
(...skipping 19 matching lines...) Expand all Loading... |
30 'include_dirs': [ | 30 'include_dirs': [ |
31 'trunk/include', | 31 'trunk/include', |
32 '../libc++/trunk/include' | 32 '../libc++/trunk/include' |
33 ], | 33 ], |
34 'cflags': [ | 34 'cflags': [ |
35 '-fstrict-aliasing', | 35 '-fstrict-aliasing', |
36 '-nostdinc++', | 36 '-nostdinc++', |
37 '-std=c++11', | 37 '-std=c++11', |
38 ], | 38 ], |
39 'cflags_cc!': [ | 39 'cflags_cc!': [ |
| 40 '-fno-exceptions', |
40 '-fno-rtti', | 41 '-fno-rtti', |
41 ], | 42 ], |
42 'cflags!': [ | 43 'cflags!': [ |
43 '-fno-exceptions', | |
44 '-fvisibility=hidden', | 44 '-fvisibility=hidden', |
45 ], | 45 ], |
46 'ldflags': [ | 46 'ldflags': [ |
47 '-nodefaultlibs', | 47 '-nodefaultlibs', |
48 ], | 48 ], |
49 'ldflags!': [ | 49 'ldflags!': [ |
50 '-pthread', | 50 '-pthread', |
51 ], | 51 ], |
52 'libraries': [ | 52 'libraries': [ |
53 '-lc', | 53 '-lc', |
54 '-lgcc_s', | 54 '-lgcc_s', |
55 '-lpthread', | 55 '-lpthread', |
56 '-lrt', | 56 '-lrt', |
57 ] | 57 ] |
58 }, | 58 }, |
59 ] | 59 ] |
60 } | 60 } |
OLD | NEW |