OLD | NEW |
---|---|
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 import("//build/config/chromecast_build.gni") | 5 import("//build/config/chromecast_build.gni") |
6 | 6 |
7 assert(is_chromecast) | 7 assert(is_chromecast) |
8 | 8 |
9 config("static_config") { | 9 config("static_config") { |
10 ldflags = [ | 10 ldflags = [ |
(...skipping 16 matching lines...) Expand all Loading... | |
27 # This is explicitly disabled in Chrome for security reasons (see comments in | 27 # This is explicitly disabled in Chrome for security reasons (see comments in |
28 # //build/config/gcc/BUILD.gn), but necessary on Chromecast so that OEM's may | 28 # //build/config/gcc/BUILD.gn), but necessary on Chromecast so that OEM's may |
29 # override the default libraries shipped in the Cast receiver package. | 29 # override the default libraries shipped in the Cast receiver package. |
30 ldflags = [ | 30 ldflags = [ |
31 "-Wl,-rpath=/oem_cast_shlib", | 31 "-Wl,-rpath=/oem_cast_shlib", |
32 "-Wl,-rpath=\$ORIGIN/lib", | 32 "-Wl,-rpath=\$ORIGIN/lib", |
33 "-Wl,-rpath=\$ORIGIN", | 33 "-Wl,-rpath=\$ORIGIN", |
34 ] | 34 ] |
35 } | 35 } |
36 | 36 |
37 config("executable_config") { | 37 # Whole archiving libgcc.a and libstdc++ is needed if dynamic share libs are |
38 configs = [ ":ldconfig" ] | 38 # used, see b/25566835. |
39 | 39 config("executable_whole_archive_config") { |
40 if (current_cpu == "arm") { | 40 if (current_cpu == "arm") { |
41 ldflags = [ | 41 ldflags = [ |
42 # Export stdlibc++ and libgcc symbols to force shlibs to refer to these | 42 # Export stdlibc++ and libgcc symbols to force shlibs to refer to these |
43 # symbols from the executable. | 43 # symbols from the executable. |
44 "-Wl,--export-dynamic", | 44 "-Wl,--export-dynamic", |
45 | 45 |
46 "-lm", # stdlibc++ requires math.h | 46 "-lm", # stdlibc++ requires math.h |
47 | 47 |
48 # In case we redefined stdlibc++ symbols (e.g. tc_malloc) | 48 # In case we redefined stdlibc++ symbols (e.g. tc_malloc). |
49 "-Wl,--allow-multiple-definition", | 49 "-Wl,--allow-multiple-definition", |
50 | 50 |
51 # Adding all symbols from libgcc and libstdc++. | |
51 "-Wl,--whole-archive", | 52 "-Wl,--whole-archive", |
52 "-l:libstdc++.a", | 53 "-l:libstdc++.a", |
53 "-l:libgcc.a", | 54 "-l:libgcc.a", |
54 "-Wl,--no-whole-archive", | 55 "-Wl,--no-whole-archive", |
55 ] | 56 ] |
57 } | |
58 } | |
56 | 59 |
57 # Despite including libstdc++/libgcc archives, we still need to specify | 60 config("executable_config") { |
58 # static linking for them in order to prevent the executable from having a | 61 configs = [ ":ldconfig" ] |
59 # dynamic dependency on them. | 62 |
63 if (current_cpu == "arm") { | |
slan
2016/08/30 22:22:53
Why just "arm" here? What is this conditional tryi
bcf
2016/08/30 22:36:43
This is only a problem on our Chromecast devices b
slan
2016/08/30 22:46:51
Thanks - that's a good point. However, this wouldn
| |
64 # Statically link libstdc++ and libgcc to avoid having a dynamic dependency | |
65 # on them. | |
60 configs += [ ":static_config" ] | 66 configs += [ ":static_config" ] |
61 } | 67 } |
62 } | 68 } |
63 | 69 |
64 config("shared_library_config") { | 70 config("shared_library_config") { |
65 configs = [ ":ldconfig" ] | 71 configs = [ ":ldconfig" ] |
66 if (current_cpu == "arm") { | 72 if (current_cpu == "arm") { |
67 configs += [ ":static_config" ] | 73 configs += [ ":static_config" ] |
68 } | 74 } |
69 } | 75 } |
OLD | NEW |