[LTP] [PATCH 1/2] build.sh: Remove deprecated CROSS_COMPILE
Petr Vorel
pvorel@suse.cz
Mon Jan 11 16:28:36 CET 2021
Hi Li,
> The CROSS_COMPILE was no longer used by ltp since 400ac9bbe20.
> Signed-off-by: Li Zhijian <lizhijian@cn.fujitsu.com>
> ---
> build.sh | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
> diff --git a/build.sh b/build.sh
> index 452cc6f4c..602ca419e 100755
> --- a/build.sh
> +++ b/build.sh
> @@ -64,7 +64,7 @@ build_cross()
> fi
> echo "===== cross-compile ${host} ${1}-tree build into $PREFIX ====="
> - build $1 $2 "--host=$host" CROSS_COMPILE="${host}-"
I looked what would require CROSS_COMPILE support. It's somehow duplicate to
autoconf --host parameter.
Although it wouldn't be difficult to add a support into configure.ac and
include/mk/config.mk.in via AC_ARG_VAR, it's use would require:
1) either migrate everything to pkg-config (but libnuma and libaio does not
support it) and use PKG_CONFIG_LIBDIR
2) fix host cpu detection in m4/ltp-host-cpu.m4 (parse CROSS_COMPILE).
=> IMHO it's not worth of doing it, thus good we removed it.
Kind regards,
Petr
> + build $1 $2 "--host=$host"
> }
> build()
More information about the ltp
mailing list