You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is the result of automated script (0.9.0) conversion:
oe-core/scripts/contrib/convert-overrides.py .
converting the metadata to use ":" as the override character instead of "_".
Signed-off-by: Martin Jansa <[email protected]>
# instead, so that if DEBUG_BUILD is not set GN will not create a huge debug
181
181
# binary anyway. Since our compiler flags are passed after GN's, -g0 does
182
182
# not cause any issues if DEBUG_BUILD is set, as -g1 will be passed later.
183
-
DEBUG_FLAGS_remove_arm="-g"
184
-
DEBUG_FLAGS_append_arm="-g1"
185
-
DEBUG_FLAGS_remove_x86="-g"
186
-
DEBUG_FLAGS_append_x86="-g1"
183
+
DEBUG_FLAGS:remove:arm="-g"
184
+
DEBUG_FLAGS:append:arm="-g1"
185
+
DEBUG_FLAGS:remove:x86="-g"
186
+
DEBUG_FLAGS:append:x86="-g1"
187
187
GN_ARGS+="symbol_level=0"
188
188
189
189
# As of Chromium 62.0.3202.94 and Yocto Rocko (GCC 7, binutils 2.29), passing
190
190
# -g to the compiler results in many linker errors on aarch64, such as:
191
191
# obj/third_party/WebKit/Source/modules/payments/libpayments.a(PaymentEventDataConversion.o)(.debug_loc+0x4e25): error: relocation overflow in R_AARCH64_ABS32
192
-
DEBUG_FLAGS_remove_aarch64="-g"
193
-
DEBUG_FLAGS_append_aarch64="-g1"
192
+
DEBUG_FLAGS:remove:aarch64="-g"
193
+
DEBUG_FLAGS:append:aarch64="-g1"
194
194
195
195
# As of Chromium 60.0.3112.101 and Yocto Pyro (GCC 6, binutils 2.28), passing
196
196
# -g to the compiler results in many linker errors on x86_64, such as:
197
197
# obj/third_party/WebKit/Source/core/loader/libloader.a(ModuleTreeLinker.o)(.debug_loc+0x1e9a5): error: relocation overflow: reference to local symbol 82 in obj/third_party/WebKit/Source/core/loader/libloader.a(ModuleTreeLinker.o)
198
198
# obj/third_party/WebKit/Source/core/libcore_generated.a(ScriptModule.o)(.debug_loc+0x253c): error: relocation overflow: reference to local symbol 31 in obj/third_party/WebKit/Source/core/libcore_generated.a(ScriptModule.o)
199
199
# so we have to use the same hack described above.
200
-
DEBUG_FLAGS_remove_x86-64="-g"
201
-
DEBUG_FLAGS_append_x86-64="-g1"
200
+
DEBUG_FLAGS:remove:x86-64="-g"
201
+
DEBUG_FLAGS:append:x86-64="-g1"
202
202
203
203
# Disable Chrome Remote Desktop (aka Chromoting) support. Building host support
204
204
# (so that the machine running this recipe can be controlled remotely from
@@ -277,7 +277,7 @@ GN_ARGS += ' \
277
277
# If we do not pass |arm_arch| and friends to GN, it will deduce a value that
278
278
# will then conflict with TUNE_CCARGS and CC.
279
279
# Note that as of M61 in some corner cases parts of the build system disable
280
-
# the "compiler_arm_fpu" GN config, whereas -mfpu is always passed via ${CC}.
280
+
# the "compiler:arm_fpu" GN config, whereas -mfpu is always passed via ${CC}.
281
281
# We might want to rework that if there are issues in the future.
282
282
defget_compiler_flag(params,param_name,d):
283
283
"""Given a sequence of compiler arguments in |params|, returns the value of
0 commit comments