Re: [systemd-devel] Revert "meson: use the host architecture compiler/linker for src/boot/efi" #10217

2018-09-30 Thread Helmut Grohne
Hi, > This reverts commit df7caca. If you reverts df7caca, please also revert b710072 as that breaks cross builds. > The patch df7caca breaks normal build. Let's revert this, as I do not want to > revert this every time when setting up a new build directory to test some > branch. No, it doesn

[systemd-devel] [PATCH v2] meson: use the host architecture compiler/linker for src/boot/efi

2018-09-27 Thread Helmut Grohne
cross building systemd to arm64 presently fails, because the build system uses plain gcc and plain ld (build architecture compiler and linker respectively) for building src/boot/efi. These values come from the efi-cc and efi-ld options respectively. It rather should be using host tools here. Fixes

[systemd-devel] [PATCH] add LIB_ARCH_TUPLE for tilegx-linux-gnu

2017-02-27 Thread Helmut Grohne
: add LIB_ARCH_TUPLE for tilegx-linux-gnu (2017-02-27 16:21:06 +0100) This commit fixes a build failure on the tilegx architecture. A downstream bug report is located at https://bugs.debian.org/856306. Helmut Grohne (1): add

Re: [systemd-devel] [PATCH] basic: fix build on architectures with small long

2015-11-21 Thread Helmut Grohne
) Helmut Grohne (1): basic: fix build on architectures with small long src/basic/stat-util.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/basic/stat-util.h b/src/basic/stat-util.h index 909b220

[systemd-devel] [PATCH] basic: fix build on architectures with small long

2015-11-20 Thread Helmut Grohne
The assertion assert_cc(sizeof(statfs_f_type_t) >= sizeof(s->f_type)); can trigger on architectures where long is smaller than struct statfs' f_type member. This includes x32. Thus fix the typedef statfs_f_type_t. --- src/basic/stat-util.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deleti