mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
synced 2026-04-18 03:23:53 -04:00
check_config.sh checks that liburing is available by running the compiler provided as its first argument. This makes two assumptions: 1. CC consists of only one word 2. No extra flag is required Unfortunately, there are many situations where these assumptions don't hold. For instance: - When using Clang, CC consists of multiple words - When cross-compiling, extra flags may be required to allow the compiler to find headers Remove these assumptions by passing down CC and CFLAGS as-is from the Makefile, so that the same command line is used as when actually building the tests. Link: https://lkml.kernel.org/r/20260122170224.4056513-4-kevin.brodsky@arm.com Signed-off-by: Kevin Brodsky <kevin.brodsky@arm.com> Reviewed-by: Mark Brown <broonie@kernel.org> Acked-by: David Hildenbrand (Red Hat) <david@kernel.org> Cc: Jason Gunthorpe <jgg@nvidia.com> Cc: John Hubbard <jhubbard@nvidia.com> Cc: Dev Jain <dev.jain@arm.com> Cc: Lorenzo Stoakes <lorenzo.stoakes@oracle.com> Cc: Paolo Abeni <pabeni@redhat.com> Cc: Ryan Roberts <ryan.roberts@arm.com> Cc: SeongJae Park <sj@kernel.org> Cc: Shuah Khan <shuah@kernel.org> Cc: Usama Anjum <Usama.Anjum@arm.com> Cc: wang lian <lianux.mm@gmail.com> Cc: Yunsheng Lin <linyunsheng@huawei.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
31 lines
893 B
Bash
Executable File
31 lines
893 B
Bash
Executable File
#!/bin/sh
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Probe for libraries and create header files to record the results. Both C
|
|
# header files and Makefile include fragments are created.
|
|
|
|
OUTPUT_H_FILE=local_config.h
|
|
OUTPUT_MKFILE=local_config.mk
|
|
|
|
tmpname=$(mktemp)
|
|
tmpfile_c=${tmpname}.c
|
|
tmpfile_o=${tmpname}.o
|
|
|
|
# liburing
|
|
echo "#include <sys/types.h>" > $tmpfile_c
|
|
echo "#include <liburing.h>" >> $tmpfile_c
|
|
echo "int func(void) { return 0; }" >> $tmpfile_c
|
|
|
|
$CC $CFLAGS -c $tmpfile_c -o $tmpfile_o
|
|
|
|
if [ -f $tmpfile_o ]; then
|
|
echo "#define LOCAL_CONFIG_HAVE_LIBURING 1" > $OUTPUT_H_FILE
|
|
echo "IOURING_EXTRA_LIBS = -luring" > $OUTPUT_MKFILE
|
|
else
|
|
echo "// No liburing support found" > $OUTPUT_H_FILE
|
|
echo "# No liburing support found, so:" > $OUTPUT_MKFILE
|
|
echo "IOURING_EXTRA_LIBS = " >> $OUTPUT_MKFILE
|
|
fi
|
|
|
|
rm ${tmpname}.*
|