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 |
scottmg
2016/09/02 20:40:55
"share" -> "shared"
antz1
2016/09/02 21:22:53
Done.
| |
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" && !is_android) { |
scottmg
2016/09/02 20:40:55
Isn't there an is_chromecast, if that's what's mea
antz1
2016/09/02 21:22:53
is_chromecast is set for our android builds, which
| |
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 # Statically linking against libstdc++/libgcc should happen for arm chromecast |
58 # static linking for them in order to prevent the executable from having a | 61 # devices, and is not needed for Android builds. |
59 # dynamic dependency on them. | 62 config("executable_config") { |
63 configs = [ ":ldconfig" ] | |
64 | |
65 if (current_cpu == "arm" && !is_android) { | |
bcf
2016/09/02 20:35:12
Define variable for this at top.
scottmg
2016/09/02 20:40:55
And here?
| |
66 # Statically link libstdc++ and libgcc to avoid having a dynamic dependency | |
67 # on them. | |
60 configs += [ ":static_config" ] | 68 configs += [ ":static_config" ] |
61 } | 69 } |
62 } | 70 } |
63 | 71 |
64 config("shared_library_config") { | 72 config("shared_library_config") { |
65 configs = [ ":ldconfig" ] | 73 configs = [ ":ldconfig" ] |
66 if (current_cpu == "arm") { | 74 if (current_cpu == "arm" && !is_android) { |
67 configs += [ ":static_config" ] | 75 configs += [ ":static_config" ] |
68 } | 76 } |
69 } | 77 } |
OLD | NEW |