[glib/glib-2-62: 1/8] tests: Use objcopy from the cross-compilation file, if configured
- From: Simon McVittie <smcv src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [glib/glib-2-62: 1/8] tests: Use objcopy from the cross-compilation file, if configured
- Date: Tue, 29 Oct 2019 14:21:30 +0000 (UTC)
commit 56da3e5a01c1ab63f0a7f6d84e3b661370e13440
Author: Philip Withnall <withnall endlessm com>
Date: Mon Oct 28 12:08:48 2019 +0000
tests: Use objcopy from the cross-compilation file, if configured
Otherwise we’ll end up using the host’s `objcopy`, which will output
object files in the wrong format.
Signed-off-by: Philip Withnall <withnall endlessm com>
Fixes: #1916
gio/tests/meson.build | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
---
diff --git a/gio/tests/meson.build b/gio/tests/meson.build
index b5593a4ec..382dfccad 100644
--- a/gio/tests/meson.build
+++ b/gio/tests/meson.build
@@ -577,7 +577,9 @@ if not meson.is_cross_build() or meson.has_exe_wrapper()
# Support for --add-symbol was added to LLVM objcopy in 2019
# (https://reviews.llvm.org/D58234). FIXME: This test could be enabled for
# LLVM once that support is in a stable release.
- if build_machine.system() == 'linux' and cc.get_id() == 'gcc'
+ objcopy = find_program('objcopy', required : false)
+
+ if build_machine.system() == 'linux' and cc.get_id() == 'gcc' and objcopy.found()
test_gresource_binary = custom_target('test5.gresource',
input : 'test5.gresource.xml',
output : 'test5.gresource',
@@ -616,7 +618,7 @@ if not meson.is_cross_build() or meson.has_exe_wrapper()
test_resources_binary2 = custom_target('test_resources2.o',
input : test_resources_binary,
output : 'test_resources2.o',
- command : ['objcopy',
+ command : [objcopy,
'--add-symbol','_g_binary_test1_resource_data=.data:0',
'@INPUT@',
'@OUTPUT@'])
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]