1 #!/bin/sh 2 # SPDX-License-Identifier: GPL-2.0 3 # 4 # Probe for libraries and create header files 5 # header files and Makefile include fragments 6 7 OUTPUT_H_FILE=local_config.h 8 OUTPUT_MKFILE=local_config.mk 9 10 tmpname=$(mktemp) 11 tmpfile_c=${tmpname}.c 12 tmpfile_o=${tmpname}.o 13 14 # liburing 15 echo "#include <sys/types.h>" > $tmpfil 16 echo "#include <liburing.h>" >> $tmpfil 17 echo "int func(void) { return 0; }" >> $tmpfil 18 19 CC=${1:?"Usage: $0 <compiler> # example compil 20 $CC -c $tmpfile_c -o $tmpfile_o >/dev/null 2>& 21 22 if [ -f $tmpfile_o ]; then 23 echo "#define LOCAL_CONFIG_HAVE_LIBURING 1 24 echo "IOURING_EXTRA_LIBS = -luring" 25 else 26 echo "// No liburing support found" 27 echo "# No liburing support found, so:" 28 echo "IOURING_EXTRA_LIBS = " 29 fi 30 31 rm ${tmpname}.*
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.