On 20-06-2020 14:36, Pierre Labastie wrote:
On Sat, 2020-06-20 at 14:20 +0200, Frans de Boer wrote:
On 20-06-2020 13:12, Xi Ruoyao wrote:
On 2020-06-20 13:02 +0200, Frans de Boer wrote:
On 19-06-2020 22:33, Frans de Boer wrote:
On 19-06-2020 22:15, Pierre Labastie wrote:
On Fri, 2020-06-19 at 21:13 +0200, Frans de Boer wrote:
Dear all,
I follow every step but always stumble on the '$LFS_TGT-gcc
dummy.c'
-
in the first glibc.c section - in that crti.o can't be
located by ld.
Looking for crti.o, I find it residing in the
$LFS/usr/lib64
directory.
That's the weird thing, /usr/lib64 shouldn't exist. It's the
setting of
libc_cv_slibdir, which prevents that.
So, why can't ld find it?
gcc has been told (with the "case" instruction) to ask ld to
look into
/usr/lib, not /usr/lib64.
Pierre
I will check if the sed was successful.
--- Frans.
I checked and the result of the sed was as expected. Only glibc
creates
the usr/lib64 directory.
In the past the /usr/lib64 directory was a link to /usr/lib.
Also, due
to experimenting, I also found in the past that for some
adaptations I
needed to execute next for glibc:
# When going for a specific architecture, change some literals
/lib into
/lib64 or /lib32
#
if [[ ilibType -eq elibTYPE_LIB && $bldTARCH == "x86_64" ]]; then
#
# Change literal /lib64 into /lib with no architecture depended
directories
sed -r -i -e 's@(/lib)64(/ld-linux)@\1\2@'
./sysdeps/unix/sysv/linux/x86_64/ldconfig.h
sed -i -e 's@6, "/lib64", 6@4, "/lib", 4@' \
-e 's@len >= 6 \&\& ! memcmp @len >= 4 \&\& !
memcmp @'
./sysdeps/unix/sysv/linux/x86_64/dl-cache.h
sed -r -i -e 's@(lib)64@\1@g'
./sysdeps/unix/sysv/linux/x86_64{,/64}/configure{,.ac}
# sed -i -e 's@die "ldd execution failed" if $?;@# &@'
./scripts/test-installation.pl
sed -r -i -e 's@(RTLDLIST=.*\\2)64@\1@'
./sysdeps/unix/sysv/linux/x86_64/ldd-rewrite.sed
fi
-------
The above (maybe somewhat dated) is an example when NOT having
the
/usr/lib64 directory, either as link or directory. So, it is
clear - so
it seems - that we need some more tuning, or revert to having
/usr/lib64
as just a link.
I don't think so.
The code automatically choose "${exec_prefix}/lib64" is in glibc-
2.31/sysdeps/unix/sysv/linux/x86_64/64/configure. It's very clear
that if
"libc_cv_slibdir" is explicitly set, the code won't be executed.
So I believe you forgot to set "libc_cv_slibdir=/lib", maybe by a
typo (like
"libc_cv_libdir=/lib").
Suggestions?
Nope, here a partial copy:
.....
--with-headers=$LFS/usr/include \
libc_cv_slibdir=/lib
The only thing I can tell you is that I have built lfs with the new
"cross" approach zillion times (for testing) using commands exactly as
they are written, and the /usr/lib64 dir has never been created.
Maybe look at config.log (or post it) to see where the issue comes from
in your build.
Pierre
Looking at the config.log, I see that libc_cv_slibdir is set to /lib.
However, libdir is automatically set to /lib64. I did specified in the
past this --libdir, so there was no problem - most likely because lib64
was just a link to lib.
I tried again with adding --libdir=/lib too, instead of assuming that
things work automatically. To no avail.
The only thing what is placed under /usr/lib is the directory getconf.
I attached the config.log file. Maybe have to include it textually if
the attachment is not accepted.
-- Frans
--
A: Yes, just like that A: Ja, net zo
Q: Oh, Just like reading a book backwards Q: Oh, net als een boek
achterstevoren lezen
A: Because it upsets the natural flow of a story A: Omdat het de natuurlijke
gang uit het verhaal haalt
Q: Why is top-posting annoying? Q: Waarom is Top-posting zo
irritant?
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by GNU C Library configure (see version.h), which was
generated by GNU Autoconf 2.69. Invocation command line was
$ /mnt/lfs/sources-base/glibc-2.31/configure --prefix=/usr --host=x86_64-cross-linux --build=x86_64-pc-linux-gnu --enable-kernel=3.2 --with-headers=/mnt/lfs/usr/include libc_cv_slibdir=/lib
## --------- ##
## Platform. ##
## --------- ##
hostname = pws1
uname -m = x86_64
uname -r = 5.3.18-lp152.19-default
uname -s = Linux
uname -v = #1 SMP Tue Jun 9 20:59:24 UTC 2020 (960cb00)
/usr/bin/uname -p = x86_64
/bin/uname -X = unknown
/bin/arch = x86_64
/usr/bin/arch -k = unknown
/usr/convex/getsysinfo = unknown
/usr/bin/hostinfo = unknown
/bin/machine = unknown
/usr/bin/oslevel = unknown
/bin/universe = unknown
PATH: /mnt/lfs/crosstools/bin
PATH: /bin
PATH: /usr/bin
## ----------- ##
## Core tests. ##
## ----------- ##
configure:2009: loading site script /usr/share/site/x86_64-unknown-linux-gnu
| #!/bin/sh
| # Site script for configure. It is resourced via $CONFIG_SITE environment varaible.
|
| # If user did not specify libdir, guess the correct target:
| # Use lib64 for 64 bit bi-arch targets, keep the default for the rest.
| if test "$libdir" = '${exec_prefix}/lib' ; then
|
| ac_config_site_64bit_host=NONE
|
| case "$host" in
| "" )
| # User did not specify host target.
| # The native platform x86_64 is a bi-arch platform.
| # Try to detect cross-compilation to inferior architecture.
|
| # We are trying to guess 32-bit target compilation. It's not as easy as
| # it sounds, as there is possible several intermediate combinations.
| ac_config_site_cross_to_32bit_host=NONE
|
| # User defined -m32 in CFLAGS or CXXFLAGS or CC or CXX:
| # (It's sufficient for 32-bit, but alone may cause mis-behavior of some checks.)
| case "$CFLAGS $CXXFLAGS $CC $CXX" in
| *-m32*)
| ac_config_site_cross_to_32bit_host=YES
| ;;
| esac
|
| # Running with linux32:
| # (Changes detected platform, but not the toolchain target.)
| case "`/bin/uname -i`" in
| x86_64 | ppc64 | s390x | aarch64 )
| ;;
| * )
| ac_config_site_cross_to_32bit_host=YES
| ;;
| esac
|
| if test "x$ac_config_site_cross_to_32bit_host" = xNONE; then
| ac_config_site_64bit_host=YES
| fi
|
| ;;
| *x86_64* | *ppc64* | *s390x* | *aarch64* )
| ac_config_site_64bit_host=YES
| ;;
| esac
|
| if test "x$ac_config_site_64bit_host" = xYES; then
| libdir='${exec_prefix}/lib64'
| fi
| fi
|
| # If user did not specify libexecdir, set the correct target:
| # Nor FHS nor openSUSE allow prefix/libexec. Let's default to prefix/lib.
|
| if test "$libexecdir" = '${exec_prefix}/libexec' ; then
| libexecdir='${exec_prefix}/lib'
| fi
|
| # Continue with the standard behavior of configure defined in AC_SITE_LOAD:
| if test "x$prefix" != xNONE; then
| ac_site_file1=$prefix/share/config.site
| ac_site_file2=$prefix/etc/config.site
| else
| ac_site_file1=$ac_default_prefix/share/config.site
| ac_site_file2=$ac_default_prefix/etc/config.site
| fi
| for ac_site_file in "$ac_site_file1" "$ac_site_file2"
| do
| test "x$ac_site_file" = xNONE && continue
| if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then
| { $as_echo "/usr/share/site/x86_64-unknown-linux-gnu:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5
| $as_echo "/usr/share/site/x86_64-unknown-linux-gnu: loading site script $ac_site_file" >&6;}
| sed 's/^/| /' "$ac_site_file" >&5
| . "$ac_site_file" \
| || { { $as_echo "/usr/share/site/x86_64-unknown-linux-gnu:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
| $as_echo "/usr/share/site/x86_64-unknown-linux-gnu: error: in \`$ac_pwd':" >&2;}
| as_fn_error $? "failed to load site script $ac_site_file
| See \`config.log' for more details" "$LINENO" 5; }
| fi
| done
configure:2218: checking build system type
configure:2232: result: x86_64-pc-linux-gnu
configure:2252: checking host system type
configure:2265: result: x86_64-cross-linux-gnu
configure:2294: checking for x86_64-cross-linux-gcc
configure:2310: found /mnt/lfs/crosstools/bin/x86_64-cross-linux-gcc
configure:2321: result: x86_64-cross-linux-gcc
configure:2590: checking for C compiler version
configure:2599: x86_64-cross-linux-gcc --version >&5
x86_64-cross-linux-gcc (GCC) 10.1.0
Copyright (C) 2020 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
configure:2610: $? = 0
configure:2599: x86_64-cross-linux-gcc -v >&5
Using built-in specs.
COLLECT_GCC=x86_64-cross-linux-gcc
COLLECT_LTO_WRAPPER=/mnt/lfs/crosstools/lib/gcc/x86_64-cross-linux/10.1.0/lto-wrapper
Target: x86_64-cross-linux
Configured with: /mnt/lfs/sources-base/gcc-10.1.0/configure --prefix=/mnt/lfs/crosstools --target=x86_64-cross-linux --with-sysroot=/mnt/lfs --with-glibc-version=2.19 --with-newlib --without-headers --enable-initfini-array --disable-shared --disable-decimal-float --disable-libatomic --disable-libgomp --disable-libquadmath --disable-libssp --disable-libstdcxx --disable-libvtv --disable-multilib --disable-nls --disable-threads --enable-languages=c,c++
Thread model: single
Supported LTO compression algorithms: zlib
gcc version 10.1.0 (GCC)
configure:2610: $? = 0
configure:2599: x86_64-cross-linux-gcc -V >&5
x86_64-cross-linux-gcc: error: unrecognized command-line option '-V'
x86_64-cross-linux-gcc: fatal error: no input files
compilation terminated.
configure:2610: $? = 1
configure:2599: x86_64-cross-linux-gcc -qversion >&5
x86_64-cross-linux-gcc: error: unrecognized command-line option '-qversion'; did you mean '--version'?
x86_64-cross-linux-gcc: fatal error: no input files
compilation terminated.
configure:2610: $? = 1
configure:2615: checking for suffix of object files
configure:2637: x86_64-cross-linux-gcc -c conftest.c >&5
configure:2641: $? = 0
configure:2662: result: o
configure:2666: checking whether we are using the GNU C compiler
configure:2685: x86_64-cross-linux-gcc -c conftest.c >&5
configure:2685: $? = 0
configure:2694: result: yes
configure:2703: checking whether x86_64-cross-linux-gcc accepts -g
configure:2723: x86_64-cross-linux-gcc -c -g conftest.c >&5
configure:2723: $? = 0
configure:2764: result: yes
configure:2793: checking for gcc
configure:2809: found /usr/bin/gcc
configure:2820: result: gcc
configure:2844: checking for x86_64-cross-linux-readelf
configure:2860: found /mnt/lfs/crosstools/bin/x86_64-cross-linux-readelf
configure:2871: result: x86_64-cross-linux-readelf
configure:2949: checking for x86_64-cross-linux-g++
configure:2965: found /mnt/lfs/crosstools/bin/x86_64-cross-linux-g++
configure:2976: result: x86_64-cross-linux-g++
configure:3047: checking for C++ compiler version
configure:3056: x86_64-cross-linux-g++ --version >&5
x86_64-cross-linux-g++ (GCC) 10.1.0
Copyright (C) 2020 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
configure:3067: $? = 0
configure:3056: x86_64-cross-linux-g++ -v >&5
Using built-in specs.
COLLECT_GCC=x86_64-cross-linux-g++
COLLECT_LTO_WRAPPER=/mnt/lfs/crosstools/lib/gcc/x86_64-cross-linux/10.1.0/lto-wrapper
Target: x86_64-cross-linux
Configured with: /mnt/lfs/sources-base/gcc-10.1.0/configure --prefix=/mnt/lfs/crosstools --target=x86_64-cross-linux --with-sysroot=/mnt/lfs --with-glibc-version=2.19 --with-newlib --without-headers --enable-initfini-array --disable-shared --disable-decimal-float --disable-libatomic --disable-libgomp --disable-libquadmath --disable-libssp --disable-libstdcxx --disable-libvtv --disable-multilib --disable-nls --disable-threads --enable-languages=c,c++
Thread model: single
Supported LTO compression algorithms: zlib
gcc version 10.1.0 (GCC)
configure:3067: $? = 0
configure:3056: x86_64-cross-linux-g++ -V >&5
x86_64-cross-linux-g++: error: unrecognized command-line option '-V'
x86_64-cross-linux-g++: fatal error: no input files
compilation terminated.
configure:3067: $? = 1
configure:3056: x86_64-cross-linux-g++ -qversion >&5
x86_64-cross-linux-g++: error: unrecognized command-line option '-qversion'; did you mean '--version'?
x86_64-cross-linux-g++: fatal error: no input files
compilation terminated.
configure:3067: $? = 1
configure:3071: checking whether we are using the GNU C++ compiler
configure:3090: x86_64-cross-linux-g++ -c conftest.cpp >&5
configure:3090: $? = 0
configure:3099: result: yes
configure:3108: checking whether x86_64-cross-linux-g++ accepts -g
configure:3128: x86_64-cross-linux-g++ -c -g conftest.cpp >&5
configure:3128: $? = 0
configure:3169: result: yes
configure:3194: checking whether x86_64-cross-linux-g++ can link programs
configure:3217: x86_64-cross-linux-g++ -o conftest -g -O2 conftest.cpp >&5
/mnt/lfs/crosstools/lib64/gcc/x86_64-cross-linux/10.1.0/../../../../x86_64-cross-linux/bin/ld: cannot find crt1.o: No such file or directory
/mnt/lfs/crosstools/lib64/gcc/x86_64-cross-linux/10.1.0/../../../../x86_64-cross-linux/bin/ld: cannot find crti.o: No such file or directory
/mnt/lfs/crosstools/lib64/gcc/x86_64-cross-linux/10.1.0/../../../../x86_64-cross-linux/bin/ld: cannot find -lstdc++
/mnt/lfs/crosstools/lib64/gcc/x86_64-cross-linux/10.1.0/../../../../x86_64-cross-linux/bin/ld: cannot find -lm
/mnt/lfs/crosstools/lib64/gcc/x86_64-cross-linux/10.1.0/../../../../x86_64-cross-linux/bin/ld: cannot find -lc
/mnt/lfs/crosstools/lib64/gcc/x86_64-cross-linux/10.1.0/../../../../x86_64-cross-linux/bin/ld: cannot find crtn.o: No such file or directory
collect2: error: ld returned 1 exit status
configure:3217: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU C Library"
| #define PACKAGE_TARNAME "glibc"
| #define PACKAGE_VERSION "(see version.h)"
| #define PACKAGE_STRING "GNU C Library (see version.h)"
| #define PACKAGE_BUGREPORT "https://sourceware.org/bugzilla/"
| #define PACKAGE_URL "https://www.gnu.org/software/glibc/"
| #define PKGVERSION "(GNU libc) "
| #define REPORT_BUGS_TO "<https://www.gnu.org/software/libc/bugs.html>"
| /* end confdefs.h. */
|
| int
| main ()
| {
|
| ;
| return 0;
| }
configure:3240: x86_64-cross-linux-g++ -o conftest -g -O2 -static conftest.cpp >&5
conftest.cpp:12:10: fatal error: iostream: No such file or directory
12 | #include <iostream>
| ^~~~~~~~~~
compilation terminated.
configure:3240: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU C Library"
| #define PACKAGE_TARNAME "glibc"
| #define PACKAGE_VERSION "(see version.h)"
| #define PACKAGE_STRING "GNU C Library (see version.h)"
| #define PACKAGE_BUGREPORT "https://sourceware.org/bugzilla/"
| #define PACKAGE_URL "https://www.gnu.org/software/glibc/"
| #define PKGVERSION "(GNU libc) "
| #define REPORT_BUGS_TO "<https://www.gnu.org/software/libc/bugs.html>"
| /* end confdefs.h. */
|
| #include <iostream>
|
| int
| main()
| {
| std::cout << "Hello, world!";
| return 0;
| }
|
configure:3255: result: no
configure:3794: x86_64-cross-linux-gcc -c -g -O2 conftest.c >&5
conftest.c: In function 'main':
conftest.c:18:2: error: #error no CET compiler support
18 | #error no CET compiler support
| ^~~~~
configure:3794: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU C Library"
| #define PACKAGE_TARNAME "glibc"
| #define PACKAGE_VERSION "(see version.h)"
| #define PACKAGE_STRING "GNU C Library (see version.h)"
| #define PACKAGE_BUGREPORT "https://sourceware.org/bugzilla/"
| #define PACKAGE_URL "https://www.gnu.org/software/glibc/"
| #define PKGVERSION "(GNU libc) "
| #define REPORT_BUGS_TO "<https://www.gnu.org/software/libc/bugs.html>"
| #define HAVE_TUNABLES 1
| /* end confdefs.h. */
|
| int
| main ()
| {
|
| #ifndef __CET__
| #error no CET compiler support
| #endif
| ;
| return 0;
| }
configure:3853: checking for sysdeps preconfigure fragments
configure:6: checking for grep that handles long lines and -e
configure:64: result: /bin/grep
configure:69: checking for egrep
configure:131: result: /bin/grep -E
configure:6: checking for grep that handles long lines and -e
configure:64: result: /bin/grep
configure:69: checking for egrep
configure:131: result: /bin/grep -E
configure:9: checking whether x86_64-cross-linux-gcc compiles in -mx32 mode by default
configure:27: x86_64-cross-linux-gcc -c -g -O2 conftest.c >&5
conftest.c:13:3: error: #error not x32
13 | # error not x32
| ^~~~~
configure:27: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU C Library"
| #define PACKAGE_TARNAME "glibc"
| #define PACKAGE_VERSION "(see version.h)"
| #define PACKAGE_STRING "GNU C Library (see version.h)"
| #define PACKAGE_BUGREPORT "https://sourceware.org/bugzilla/"
| #define PACKAGE_URL "https://www.gnu.org/software/glibc/"
| #define PKGVERSION "(GNU libc) "
| #define REPORT_BUGS_TO "<https://www.gnu.org/software/libc/bugs.html>"
| #define HAVE_TUNABLES 1
| /* end confdefs.h. */
| #ifndef __ILP32__
| # error not x32
| #endif
| int
| main ()
| {
|
| ;
| return 0;
| }
configure:34: result: no
configure:3860: result:
configure:3890: checking for use of fpu sysdeps directories
configure:3909: result: yes
configure:3913: checking for -fstack-protector
configure:3919: x86_64-cross-linux-gcc -g -O2 -Werror -fstack-protector -xc /dev/null -S -o /dev/null
configure:3922: $? = 0
configure:3930: result: yes
configure:3933: checking for -fstack-protector-strong
configure:3939: x86_64-cross-linux-gcc -g -O2 -Werror -fstack-protector-strong -xc /dev/null -S -o /dev/null
configure:3942: $? = 0
configure:3950: result: yes
configure:3953: checking for -fstack-protector-all
configure:3959: x86_64-cross-linux-gcc -g -O2 -Werror -fstack-protector-all -xc /dev/null -S -o /dev/null
configure:3962: $? = 0
configure:3970: result: yes
configure:4013: checking for assembler and linker STT_GNU_IFUNC support
Relocation section '.rela.plt' at offset 0xb0 contains 1 entry:
Offset Info Type Sym. Value Sym. Name + Addend
000000401000 000000000025 R_X86_64_IRELATIV 401000
configure:4044: result: yes
configure:4048: checking for gcc attribute ifunc support
configure:4074: result: yes
configure:4079: checking whether the linker supports textrels along with ifunc
configure:4109: x86_64-cross-linux-gcc -g -O2 -nostartfiles -nostdlib -fno-stack-protector -pie -o conftest conftest.S
configure:4112: $? = 0
configure:4119: result: yes
configure:4124: checking if compiler warns about alias for function with incompatible types
conftest.c:9:34: error: 'foo_alias' alias between functions of incompatible types 'int(const void *, int)' and 'int (*(void))(const void *, int)' [-Werror=attribute-alias=]
9 | extern __typeof (__redirect_foo) foo_alias __attribute__ ((alias ("foo")));
| ^~~~~~~~~
conftest.c:4:28: note: aliased declaration here
4 | __typeof (__redirect_foo) *foo_impl (void)
| ^~~~~~~~
cc1: all warnings being treated as errors
configure:4146: result: yes
configure:4184: checking sysdep dirs
configure:4381: result: sysdeps/generic
configure:4401: checking for a BSD-compatible install
configure:4469: result: /usr/bin/install -c
configure:4484: checking whether ln -s works
configure:4488: result: yes
configure:4514: checking whether /mnt/lfs/crosstools/lib64/gcc/x86_64-cross-linux/10.1.0/../../../../x86_64-cross-linux/bin/as is GNU as
configure:4528: result: yes
configure:4533: checking whether /mnt/lfs/crosstools/lib64/gcc/x86_64-cross-linux/10.1.0/../../../../x86_64-cross-linux/bin/ld is GNU ld
configure:4547: result: yes
configure:4557: checking for /mnt/lfs/crosstools/lib64/gcc/x86_64-cross-linux/10.1.0/../../../../x86_64-cross-linux/bin/as
configure:4584: result: /mnt/lfs/crosstools/lib64/gcc/x86_64-cross-linux/10.1.0/../../../../x86_64-cross-linux/bin/as
configure:4599: checking version of /mnt/lfs/crosstools/lib64/gcc/x86_64-cross-linux/10.1.0/../../../../x86_64-cross-linux/bin/as
configure:4609: result: 2.34, ok
configure:4687: checking for /mnt/lfs/crosstools/lib64/gcc/x86_64-cross-linux/10.1.0/../../../../x86_64-cross-linux/bin/ld
configure:4714: result: /mnt/lfs/crosstools/lib64/gcc/x86_64-cross-linux/10.1.0/../../../../x86_64-cross-linux/bin/ld
configure:4729: checking version of /mnt/lfs/crosstools/lib64/gcc/x86_64-cross-linux/10.1.0/../../../../x86_64-cross-linux/bin/ld
configure:4739: result: 2.34, ok
configure:4754: checking for gnumake
configure:4784: result: no
configure:4754: checking for gmake
configure:4770: found /usr/bin/gmake
configure:4781: result: gmake
configure:4796: checking version of gmake
configure:4806: result: 4.2.1, ok
configure:4818: checking for gnumsgfmt
configure:4848: result: no
configure:4818: checking for gmsgfmt
configure:4848: result: no
configure:4818: checking for msgfmt
configure:4834: found /usr/bin/msgfmt
configure:4845: result: msgfmt
configure:4860: checking version of msgfmt
configure:4870: result: 0.19.8.1, ok
configure:4881: checking for makeinfo
configure:4897: found /usr/bin/makeinfo
configure:4908: result: makeinfo
configure:4923: checking version of makeinfo
configure:4933: result: 6.5, ok
configure:4944: checking for sed
configure:4960: found /bin/sed
configure:4971: result: sed
configure:4986: checking version of sed
configure:4996: result: 4.4, ok
configure:5007: checking for gawk
configure:5023: found /bin/gawk
configure:5034: result: gawk
configure:5049: checking version of gawk
configure:5059: result: 4.2.1, ok
configure:5070: checking for bison
configure:5086: found /usr/bin/bison
configure:5097: result: bison
configure:5112: checking version of bison
configure:5122: result: 3.0.4, ok
configure:5130: checking if x86_64-cross-linux-gcc is sufficient to build libc
configure:5150: x86_64-cross-linux-gcc -c -g -O2 conftest.c >&5
configure:5150: $? = 0
configure:5157: result: yes
configure:5166: checking for x86_64-cross-linux-nm
configure:5182: found /mnt/lfs/crosstools/bin/x86_64-cross-linux-nm
configure:5193: result: x86_64-cross-linux-nm
configure:5331: checking for python3
configure:5347: found /usr/bin/python3
configure:5358: result: python3
configure:5373: checking version of python3
configure:5383: result: 3.6.10, ok
configure:5451: checking LD_LIBRARY_PATH variable
configure:5461: result: ok
configure:5472: checking for bash
configure:5490: found /bin/bash
configure:5503: result: /bin/bash
configure:5514: checking for perl
configure:5532: found /usr/bin/perl
configure:5545: result: /usr/bin/perl
configure:5559: checking for install-info
configure:5578: found /usr/bin/install-info
configure:5591: result: /usr/bin/install-info
configure:5600: checking for .set assembler directive
configure:5626: result: yes
configure:5633: checking linker support for protected data symbol
configure:5643: x86_64-cross-linux-gcc -nostdlib -nostartfiles -fno-stack-protector -fPIC -shared conftest.c -o conftest.so
configure:5646: $? = 0
configure:5653: x86_64-cross-linux-gcc -nostdlib -nostartfiles -fno-stack-protector conftest.c -o conftest conftest.so
/mnt/lfs/crosstools/lib64/gcc/x86_64-cross-linux/10.1.0/../../../../x86_64-cross-linux/bin/ld: warning: cannot find entry symbol _start; defaulting to 0000000000401000
configure:5656: $? = 0
configure:5664: result: yes
configure:5668: checking linker support for INSERT in linker script
configure:5686: x86_64-cross-linux-gcc -nostdlib -nostartfiles -fno-stack-protector -fPIC -shared conftest.c -Wl,-T,conftest.t -o conftest.so
configure:5689: $? = 0
configure:5696: result: yes
configure:5700: checking for broken __attribute__((alias()))
configure:5715: x86_64-cross-linux-gcc -Werror -S conftest.c -o conftest.s 1>&5
configure:5718: $? = 0
configure:5728: result: no
configure:5734: checking whether to put _rtld_local into .sdata section
configure:5748: result: no
configure:5755: checking whether to use .ctors/.dtors header and trailer
configure:5772: x86_64-cross-linux-gcc -g -O2 -fno-stack-protector -o conftest
conftest.c -static -nostartfiles -nostdlib
1>&5
configure:5775: $? = 0
configure:5801: result: no
configure:5808: checking for libunwind-support in compiler
configure:5825: result: no
configure:5834: checking whether --noexecstack is desirable for .S files
configure:5844: x86_64-cross-linux-gcc -g -O2
-S -o conftest.s conftest.c 1>&5
configure:5847: $? = 0
configure:5852: x86_64-cross-linux-gcc -Wa,--noexecstack
-c -o conftest.o conftest.s 1>&5
configure:5855: $? = 0
configure:5864: result: yes
configure:5871: checking for -z combreloc
configure:5885: x86_64-cross-linux-gcc -g -O2
-fPIC -shared -fno-stack-protector -o conftest.so conftest.c
-nostdlib -nostartfiles
-Wl,-z,combreloc 1>&5
configure:5888: $? = 0
configure:5901: result: yes
configure:5909: checking for linker that supports -z execstack
configure:5922: x86_64-cross-linux-gcc -g -O2 -fno-stack-protector
-Wl,-z,execstack -nostdlib -nostartfiles
-fPIC -shared -o conftest.so conftest.c
1>&5
configure:5925: $? = 0
configure:5938: result: yes
configure:5942: checking for linker that supports --no-dynamic-linker
configure:5955: x86_64-cross-linux-gcc -g -O2 -fno-stack-protector
-Wl,--no-dynamic-linker -nostdlib -nostartfiles
-fPIC -shared -o conftest.so conftest.c
1>&5
configure:5958: $? = 0
configure:5971: result: yes
configure:5976: checking for -static-pie
configure:5982: x86_64-cross-linux-gcc -static-pie -xc /dev/null -S -o /dev/null
configure:5985: $? = 0
configure:5993: result: yes
configure:5998: checking for -fpie
configure:6004: x86_64-cross-linux-gcc -fpie -xc /dev/null -S -o /dev/null
configure:6007: $? = 0
configure:6015: result: yes
configure:6020: checking for --hash-style option
configure:6031: x86_64-cross-linux-gcc -g -O2 -fno-stack-protector
-fPIC -shared -o conftest.so conftest.c
-Wl,--hash-style=both -nostdlib 1>&5
configure:6034: $? = 0
configure:6043: result: yes
configure:6051: checking for sufficient default -shared layout
configure:6070: x86_64-cross-linux-gcc -shared -o conftest.so conftest.s 1>&5
/mnt/lfs/crosstools/lib64/gcc/x86_64-cross-linux/10.1.0/../../../../x86_64-cross-linux/bin/ld: cannot find crti.o: No such file or directory
/mnt/lfs/crosstools/lib64/gcc/x86_64-cross-linux/10.1.0/../../../../x86_64-cross-linux/bin/ld: cannot find -lc
/mnt/lfs/crosstools/lib64/gcc/x86_64-cross-linux/10.1.0/../../../../x86_64-cross-linux/bin/ld: cannot find crtn.o: No such file or directory
collect2: error: ld returned 1 exit status
configure:6073: $? = 1
configure:6105: result: no
configure:6110: checking for GLOB_DAT reloc
configure:6123: x86_64-cross-linux-gcc -g -O2
-fPIC -shared -o conftest.so conftest.c
-nostdlib -nostartfiles -fno-stack-protector
1>&5
configure:6126: $? = 0
configure:6139: result: yes
configure:6143: checking linker output format
configure:6157: result: elf64-x86-64
configure:6161: checking for -fno-toplevel-reorder -fno-section-anchors
configure:6171: x86_64-cross-linux-gcc -g -O2 -S -fno-toplevel-reorder -fno-section-anchors
conftest.c 1>&5
configure:6174: $? = 0
configure:6183: result: yes
configure:6192: checking for -mtls-dialect=gnu2
configure:6206: x86_64-cross-linux-gcc -g -O2 -S -fPIC -mtls-dialect=gnu2
conftest.c 1>&5
configure:6209: $? = 0
configure:6218: result: yes
configure:6224: checking whether cc puts quotes around section names
configure:6245: result: no
configure:6252: checking for __builtin_memset
configure:6264: x86_64-cross-linux-gcc -O3 -S conftest.c -o - | grep -F memset > /dev/null
configure:6267: $? = 1
configure:6276: result: yes
configure:6283: checking for redirection of built-in functions
configure:6296: x86_64-cross-linux-gcc -O3 -S conftest.c -o - | grep -F my_strstr > /dev/null
configure:6299: $? = 0
configure:6308: result: yes
configure:6314: checking for compiler option to disable generation of FMA instructions
configure:6322: x86_64-cross-linux-gcc -ffp-contract=off -xc /dev/null -S -o /dev/null
configure:6325: $? = 0
configure:6331: result: -ffp-contract=off
configure:6364: checking if x86_64-cross-linux-gcc accepts -fno-tree-loop-distribute-patterns with __attribute__ ((__optimize__))
configure:6377: x86_64-cross-linux-gcc -g -O2 -c conftest.c
configure:6380: $? = 0
configure:6387: result: yes
configure:6395: checking for libgd
configure:6415: x86_64-cross-linux-gcc -o conftest -g -O2 conftest.c -lgd -lpng -lz -lm >&5
conftest.c:20:10: fatal error: gd.h: No such file or directory
20 | #include <gd.h>
| ^~~~~~
compilation terminated.
configure:6415: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU C Library"
| #define PACKAGE_TARNAME "glibc"
| #define PACKAGE_VERSION "(see version.h)"
| #define PACKAGE_STRING "GNU C Library (see version.h)"
| #define PACKAGE_BUGREPORT "https://sourceware.org/bugzilla/"
| #define PACKAGE_URL "https://www.gnu.org/software/glibc/"
| #define PKGVERSION "(GNU libc) "
| #define REPORT_BUGS_TO "<https://www.gnu.org/software/libc/bugs.html>"
| #define HAVE_TUNABLES 1
| #define HAVE_CC_NO_STACK_PROTECTOR 1
| #define STACK_PROTECTOR_LEVEL 0
| #define USE_MULTIARCH 1
| #define HAVE_ASM_SET_DIRECTIVE 1
| #define NO_CTORS_DTORS_SECTIONS 1
| #define HAVE_Z_COMBRELOC 1
| #define HAVE_BUILTIN_MEMSET 1
| #define HAVE_CC_INHIBIT_LOOP_TO_LIBCALL 1
| /* end confdefs.h. */
| #include <gd.h>
| int
| main ()
| {
| gdImagePng (0, 0)
| ;
| return 0;
| }
configure:6428: result: no
configure:6437: checking for is_selinux_enabled in -lselinux
configure:6462: x86_64-cross-linux-gcc -o conftest -g -O2 conftest.c -lselinux >&5
/mnt/lfs/crosstools/lib64/gcc/x86_64-cross-linux/10.1.0/../../../../x86_64-cross-linux/bin/ld: cannot find crt1.o: No such file or directory
/mnt/lfs/crosstools/lib64/gcc/x86_64-cross-linux/10.1.0/../../../../x86_64-cross-linux/bin/ld: cannot find crti.o: No such file or directory
/mnt/lfs/crosstools/lib64/gcc/x86_64-cross-linux/10.1.0/../../../../x86_64-cross-linux/bin/ld: cannot find -lselinux
/mnt/lfs/crosstools/lib64/gcc/x86_64-cross-linux/10.1.0/../../../../x86_64-cross-linux/bin/ld: cannot find -lc
/mnt/lfs/crosstools/lib64/gcc/x86_64-cross-linux/10.1.0/../../../../x86_64-cross-linux/bin/ld: cannot find crtn.o: No such file or directory
collect2: error: ld returned 1 exit status
configure:6462: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU C Library"
| #define PACKAGE_TARNAME "glibc"
| #define PACKAGE_VERSION "(see version.h)"
| #define PACKAGE_STRING "GNU C Library (see version.h)"
| #define PACKAGE_BUGREPORT "https://sourceware.org/bugzilla/"
| #define PACKAGE_URL "https://www.gnu.org/software/glibc/"
| #define PKGVERSION "(GNU libc) "
| #define REPORT_BUGS_TO "<https://www.gnu.org/software/libc/bugs.html>"
| #define HAVE_TUNABLES 1
| #define HAVE_CC_NO_STACK_PROTECTOR 1
| #define STACK_PROTECTOR_LEVEL 0
| #define USE_MULTIARCH 1
| #define HAVE_ASM_SET_DIRECTIVE 1
| #define NO_CTORS_DTORS_SECTIONS 1
| #define HAVE_Z_COMBRELOC 1
| #define HAVE_BUILTIN_MEMSET 1
| #define HAVE_CC_INHIBIT_LOOP_TO_LIBCALL 1
| /* end confdefs.h. */
|
| /* Override any GCC internal prototype to avoid an error.
| Use char because int might match the return type of a GCC
| builtin and then its argument prototype would still apply. */
| #ifdef __cplusplus
| extern "C"
| #endif
| char is_selinux_enabled ();
| int
| main ()
| {
| return is_selinux_enabled ();
| ;
| return 0;
| }
configure:6471: result: no
configure:6594: checking for _FORTIFY_SOURCE predefine
configure:6613: x86_64-cross-linux-gcc -c -g -O2 conftest.c >&5
configure:6613: $? = 0
configure:6620: result: no
configure:6630: checking whether the linker provides working __ehdr_start
configure:6653: x86_64-cross-linux-gcc -o conftest -g -O2 -fPIC -nostdlib -nostartfiles -shared -fno-stack-protector conftest.c >&5
configure:6653: $? = 0
configure:6669: result: yes
configure:6679: checking for __builtin_trap with no external dependencies
configure:6696: x86_64-cross-linux-gcc -c -g -O2 conftest.c >&5
configure:6696: $? = 0
libc_undefs=''
configure:6710: result: yes
configure:6724: checking whether the C++ compiler supports thread_local
configure:6752: -c -g -O2 -std=gnu++11 conftest.cpp >&5
/mnt/lfs/sources-base/glibc-2.31/configure: line 1638: -c: command not found
configure:6752: $? = 127
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU C Library"
| #define PACKAGE_TARNAME "glibc"
| #define PACKAGE_VERSION "(see version.h)"
| #define PACKAGE_STRING "GNU C Library (see version.h)"
| #define PACKAGE_BUGREPORT "https://sourceware.org/bugzilla/"
| #define PACKAGE_URL "https://www.gnu.org/software/glibc/"
| #define PKGVERSION "(GNU libc) "
| #define REPORT_BUGS_TO "<https://www.gnu.org/software/libc/bugs.html>"
| #define HAVE_TUNABLES 1
| #define HAVE_CC_NO_STACK_PROTECTOR 1
| #define STACK_PROTECTOR_LEVEL 0
| #define USE_MULTIARCH 1
| #define HAVE_ASM_SET_DIRECTIVE 1
| #define NO_CTORS_DTORS_SECTIONS 1
| #define HAVE_Z_COMBRELOC 1
| #define HAVE_BUILTIN_MEMSET 1
| #define HAVE_CC_INHIBIT_LOOP_TO_LIBCALL 1
| #define HAVE_EHDR_START 1
| #define HAVE_BUILTIN_TRAP 1
| /* end confdefs.h. */
|
| #include <thread>
|
| // Compiler support.
| struct S
| {
| S ();
| ~S ();
| };
| thread_local S s;
| S * get () { return &s; }
|
| // libstdc++ support.
| #ifndef _GLIBCXX_HAVE___CXA_THREAD_ATEXIT_IMPL
| #error __cxa_thread_atexit_impl not supported
| #endif
|
configure:6761: result: no
configure:6791: result: running configure fragment for sysdeps/unix/sysv/linux/x86_64/64
configure:6791: result: running configure fragment for sysdeps/unix/sysv/linux/x86_64
configure:6791: result: running configure fragment for sysdeps/unix/sysv/linux
configure:9: checking installed Linux kernel header files
configure:28: x86_64-cross-linux-gcc -c -g -O2 -nostdinc -isystem /mnt/lfs/crosstools/lib64/gcc/x86_64-cross-linux/10.1.0/include -isystem /mnt/lfs/crosstools/lib64/gcc/x86_64-cross-linux/10.1.0/include-fixed -isystem /mnt/lfs/usr/include conftest.c >&5
configure:28: $? = 0
configure:35: result: 3.2.0 or later
configure:69: checking for kernel header at least 3.2
configure:87: x86_64-cross-linux-gcc -c -g -O2 -nostdinc -isystem /mnt/lfs/crosstools/lib64/gcc/x86_64-cross-linux/10.1.0/include -isystem /mnt/lfs/crosstools/lib64/gcc/x86_64-cross-linux/10.1.0/include-fixed -isystem /mnt/lfs/usr/include conftest.c >&5
configure:87: $? = 0
configure:93: result: ok
configure:6791: result: running configure fragment for sysdeps/gnu
configure:6791: result: running configure fragment for sysdeps/x86_64
configure:4: checking for AVX512DQ support in assembler
configure:13: x86_64-cross-linux-gcc -c conftest.s 1>&5
configure:16: $? = 0
configure:24: result: yes
configure:31: checking for AVX512 support
configure:37: x86_64-cross-linux-gcc -mavx512f -xc /dev/null -S -o /dev/null
configure:40: $? = 0
configure:48: result: yes
configure:57: checking -mprefer-vector-width=128
configure:63: x86_64-cross-linux-gcc -mprefer-vector-width=128 -xc /dev/null -S -o /dev/null
configure:66: $? = 0
configure:74: result: yes
configure:79: checking for Intel MPX support
configure:88: x86_64-cross-linux-gcc -c conftest.s 1>&5
configure:91: $? = 0
configure:99: result: yes
configure:6791: result: running configure fragment for sysdeps/x86
configure:6854: checking whether -fPIC is default
configure:6870: result: no
configure:6874: checking whether -fPIE is default
configure:6890: result: no
configure:7044: creating ./config.status
## ---------------------- ##
## Running config.status. ##
## ---------------------- ##
This file was extended by GNU C Library config.status (see version.h), which was
generated by GNU Autoconf 2.69. Invocation command line was
CONFIG_FILES =
CONFIG_HEADERS =
CONFIG_LINKS =
CONFIG_COMMANDS =
$ ./config.status
on pws1
config.status:956: creating config.make
config.status:956: creating Makefile
config.status:956: creating config.h
config.status:1130: executing default commands
## ---------------- ##
## Cache variables. ##
## ---------------- ##
ac_cv_build=x86_64-pc-linux-gnu
ac_cv_c_compiler_gnu=yes
ac_cv_cxx_compiler_gnu=yes
ac_cv_env_CCC_set=
ac_cv_env_CCC_value=
ac_cv_env_CC_set=
ac_cv_env_CC_value=
ac_cv_env_CFLAGS_set=
ac_cv_env_CFLAGS_value=
ac_cv_env_CPPFLAGS_set=
ac_cv_env_CPPFLAGS_value=
ac_cv_env_CPP_set=
ac_cv_env_CPP_value=
ac_cv_env_CXXFLAGS_set=
ac_cv_env_CXXFLAGS_value=
ac_cv_env_CXX_set=
ac_cv_env_CXX_value=
ac_cv_env_LDFLAGS_set=
ac_cv_env_LDFLAGS_value=
ac_cv_env_LIBS_set=
ac_cv_env_LIBS_value=
ac_cv_env_build_alias_set=set
ac_cv_env_build_alias_value=x86_64-pc-linux-gnu
ac_cv_env_host_alias_set=set
ac_cv_env_host_alias_value=x86_64-cross-linux
ac_cv_env_target_alias_set=
ac_cv_env_target_alias_value=
ac_cv_host=x86_64-cross-linux-gnu
ac_cv_lib_selinux_is_selinux_enabled=no
ac_cv_objext=o
ac_cv_path_BASH_SHELL=/bin/bash
ac_cv_path_EGREP='/bin/grep -E'
ac_cv_path_GREP=/bin/grep
ac_cv_path_INSTALL_INFO=/usr/bin/install-info
ac_cv_path_PERL=/usr/bin/perl
ac_cv_path_install='/usr/bin/install -c'
ac_cv_prog_AS=/mnt/lfs/crosstools/lib64/gcc/x86_64-cross-linux/10.1.0/../../../../x86_64-cross-linux/bin/as
ac_cv_prog_AWK=gawk
ac_cv_prog_BISON=bison
ac_cv_prog_BUILD_CC=gcc
ac_cv_prog_CC=x86_64-cross-linux-gcc
ac_cv_prog_CXX=x86_64-cross-linux-g++
ac_cv_prog_LD=/mnt/lfs/crosstools/lib64/gcc/x86_64-cross-linux/10.1.0/../../../../x86_64-cross-linux/bin/ld
ac_cv_prog_MAKE=gmake
ac_cv_prog_MAKEINFO=makeinfo
ac_cv_prog_MSGFMT=msgfmt
ac_cv_prog_NM=x86_64-cross-linux-nm
ac_cv_prog_PYTHON_PROG=python3
ac_cv_prog_READELF=x86_64-cross-linux-readelf
ac_cv_prog_SED=sed
ac_cv_prog_cc_g=yes
ac_cv_prog_cxx_g=yes
libc_cv_as_noexecstack=yes
libc_cv_asm_avx512dq=yes
libc_cv_asm_mpx=yes
libc_cv_asm_set_directive=yes
libc_cv_broken_alias_attribute=no
libc_cv_builtin_trap=yes
libc_cv_cc_avx512=yes
libc_cv_cc_loop_to_function=yes
libc_cv_cc_mprefer_vector_width=yes
libc_cv_cc_nofma=-ffp-contract=off
libc_cv_cc_pie_default=no
libc_cv_cc_with_libunwind=no
libc_cv_compiler_default_cet=no
libc_cv_compiler_ok=yes
libc_cv_ctors_header=no
libc_cv_cxx_link_ok=no
libc_cv_cxx_thread_local=no
libc_cv_ehdr_start=yes
libc_cv_fno_toplevel_reorder=yes
libc_cv_fpie=yes
libc_cv_gcc_builtin_memset=yes
libc_cv_gcc_builtin_redirection=yes
libc_cv_gcc_incompatible_alias=yes
libc_cv_gcc_indirect_function=yes
libc_cv_gcc_unwind_find_fde=no
libc_cv_has_glob_dat=yes
libc_cv_hashstyle=yes
libc_cv_have_sdata_section=no
libc_cv_have_section_quotes=no
libc_cv_idn=no
libc_cv_insert=yes
libc_cv_ld_gnu_indirect_function=yes
libc_cv_linux320='3.2.0 or later'
libc_cv_localstatedir=/var
libc_cv_mtls_dialect_gnu2=yes
libc_cv_multidir=.
libc_cv_no_dynamic_linker=yes
libc_cv_nss_crypt=no
libc_cv_output_format=elf64-x86-64
libc_cv_pic_default=no
libc_cv_pie_default=no
libc_cv_predef_fortify_source=no
libc_cv_prog_as_gnu=yes
libc_cv_prog_ld_gnu=yes
libc_cv_protected_data=yes
libc_cv_rootsbindir=/sbin
libc_cv_slibdir=/lib
libc_cv_ssp=yes
libc_cv_ssp_all=yes
libc_cv_ssp_strong=yes
libc_cv_static_nss_crypt=no
libc_cv_static_pie=yes
libc_cv_sysconfdir=/etc
libc_cv_textrel_ifunc=yes
libc_cv_use_default_link=no
libc_cv_with_fp=yes
libc_cv_x32=no
libc_cv_z_combreloc=yes
libc_cv_z_execstack=yes
## ----------------- ##
## Output variables. ##
## ----------------- ##
AR='/mnt/lfs/crosstools/lib64/gcc/x86_64-cross-linux/10.1.0/../../../../x86_64-cross-linux/bin/ar'
AS='/mnt/lfs/crosstools/lib64/gcc/x86_64-cross-linux/10.1.0/../../../../x86_64-cross-linux/bin/as'
ASFLAGS_config=' -Wa,--noexecstack'
AUTOCONF='no'
AWK='gawk'
BASH_SHELL='/bin/bash'
BISON='bison'
BUILD_CC='gcc'
CC='x86_64-cross-linux-gcc'
CFLAGS='-g -O2'
CPP='x86_64-cross-linux-gcc -E'
CPPFLAGS=''
CPPUNDEFS=''
CXX=''
CXXFLAGS='-g -O2'
CXX_BITS_STD_ABS_H=''
CXX_CMATH_HEADER=''
CXX_CSTDLIB_HEADER=''
CXX_SYSINCLUDES=''
DEFINES=''
DEFS='-DHAVE_CONFIG_H'
ECHO_C=''
ECHO_N='-n'
ECHO_T=''
GPROF='gprof'
INSTALL_DATA='${INSTALL} -m 644'
INSTALL_INFO='/usr/bin/install-info'
INSTALL_PROGRAM='${INSTALL}'
INSTALL_SCRIPT='${INSTALL}'
LD='/mnt/lfs/crosstools/lib64/gcc/x86_64-cross-linux/10.1.0/../../../../x86_64-cross-linux/bin/ld'
LDFLAGS=''
LIBGD='no'
LIBOBJS=''
LIBS=''
LN_S='ln -s'
LTLIBOBJS=''
MAKE='gmake'
MAKEINFO='makeinfo'
MSGFMT='msgfmt'
NM='x86_64-cross-linux-nm'
OBJCOPY='/mnt/lfs/crosstools/lib64/gcc/x86_64-cross-linux/10.1.0/../../../../x86_64-cross-linux/bin/objcopy'
OBJDUMP='/mnt/lfs/crosstools/lib64/gcc/x86_64-cross-linux/10.1.0/../../../../x86_64-cross-linux/bin/objdump'
OBJEXT='o'
PACKAGE_BUGREPORT='https://sourceware.org/bugzilla/'
PACKAGE_NAME='GNU C Library'
PACKAGE_STRING='GNU C Library (see version.h)'
PACKAGE_TARNAME='glibc'
PACKAGE_URL='https://www.gnu.org/software/glibc/'
PACKAGE_VERSION='(see version.h)'
PATH_SEPARATOR=':'
PERL='/usr/bin/perl'
PKGVERSION='(GNU libc) '
PKGVERSION_TEXI='(GNU libc) '
PYTHON='python3 -B'
PYTHON_PROG='python3'
READELF='x86_64-cross-linux-readelf'
RELEASE='stable'
REPORT_BUGS_TEXI='@uref{https://www.gnu.org/software/libc/bugs.html}'
REPORT_BUGS_TO='<https://www.gnu.org/software/libc/bugs.html>'
SED='sed'
SHELL='/bin/sh'
SYSINCLUDES='-nostdinc -isystem /mnt/lfs/crosstools/lib64/gcc/x86_64-cross-linux/10.1.0/include -isystem /mnt/lfs/crosstools/lib64/gcc/x86_64-cross-linux/10.1.0/include-fixed -isystem /mnt/lfs/usr/include'
VERSION='2.31'
ac_ct_CC=''
ac_ct_CXX=''
all_warnings=''
base_machine='x86_64'
bindir='${exec_prefix}/bin'
bindnow='no'
build='x86_64-pc-linux-gnu'
build_alias='x86_64-pc-linux-gnu'
build_cpu='x86_64'
build_crypt='yes'
build_nscd='yes'
build_obsolete_nsl='no'
build_os='linux-gnu'
build_pt_chown='no'
build_vendor='pc'
cross_compiling='yes'
datadir='${datarootdir}'
datarootdir='${prefix}/share'
docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
dvidir='${docdir}'
enable_timezone_tools='yes'
enable_werror='yes'
exec_prefix='${prefix}'
experimental_malloc='yes'
extra_nonshared_cflags=''
fno_unit_at_a_time='-fno-toplevel-reorder -fno-section-anchors'
force_install='yes'
hardcoded_path_in_tests='no'
have_libaudit=''
have_libcap=''
have_selinux='no'
have_tunables='yes'
host='x86_64-cross-linux-gnu'
host_alias='x86_64-cross-linux'
host_cpu='x86_64'
host_os='linux-gnu'
host_vendor='cross'
htmldir='${docdir}'
includedir='${prefix}/include'
infodir='${datarootdir}/info'
ldd_rewrite_script='sysdeps/unix/sysv/linux/x86_64/ldd-rewrite.sed'
libc_cv_cc_loop_to_function='yes'
libc_cv_cc_nofma='-ffp-contract=off'
libc_cv_cc_pie_default='no'
libc_cv_cc_submachine=''
libc_cv_cc_with_libunwind='no'
libc_cv_complocaledir=''
libc_cv_cxx_thread_local='no'
libc_cv_fpie='yes'
libc_cv_gcc_unwind_find_fde='no'
libc_cv_has_glob_dat='yes'
libc_cv_hashstyle='yes'
libc_cv_insert='yes'
libc_cv_localstatedir='/var'
libc_cv_mtls_dialect_gnu2='yes'
libc_cv_multidir='.'
libc_cv_nss_crypt='no'
libc_cv_output_format='elf64-x86-64'
libc_cv_pic_default='no'
libc_cv_pie_default='no'
libc_cv_protected_data='yes'
libc_cv_rootsbindir='/sbin'
libc_cv_rtlddir=''
libc_cv_slibdir='/lib'
libc_cv_ssp='yes'
libc_cv_static_nss_crypt='no'
libc_cv_sysconfdir='/etc'
libc_cv_textrel_ifunc='yes'
libc_cv_with_fp='yes'
libc_cv_z_combreloc='yes'
libc_cv_z_execstack='yes'
libc_extra_cflags=''
libc_extra_cppflags=''
libdir='${exec_prefix}/lib64'
libexecdir='${exec_prefix}/lib'
link_obsolete_rpc='no'
localedir='${datarootdir}/locale'
localstatedir='${prefix}/var'
mach_interface_list=''
mandir='${datarootdir}/man'
multi_arch='default'
no_stack_protector='-fno-stack-protector -DSTACK_PROTECTOR_LEVEL=0'
oldincludedir='/usr/include'
pdfdir='${docdir}'
prefix='/usr'
profile='no'
program_transform_name='s,x,x,'
psdir='${docdir}'
sbindir='${exec_prefix}/sbin'
shared='yes'
sharedstatedir='${prefix}/com'
stack_protector='-fno-stack-protector'
static=''
static_nss='no'
subdirs=' '
submachine=''
sysconfdir='${prefix}/etc'
sysheaders='/mnt/lfs/usr/include'
sysnames=' sysdeps/unix/sysv/linux/x86_64/64 sysdeps/unix/sysv/linux/x86_64 sysdeps/unix/sysv/linux/x86 sysdeps/x86/nptl sysdeps/unix/sysv/linux/wordsize-64 sysdeps/x86_64/nptl sysdeps/unix/sysv/linux sysdeps/nptl sysdeps/pthread sysdeps/gnu sysdeps/unix/inet sysdeps/unix/sysv sysdeps/unix/x86_64 sysdeps/unix sysdeps/posix sysdeps/x86_64/64 sysdeps/x86_64/fpu/multiarch sysdeps/x86_64/fpu sysdeps/x86/fpu sysdeps/x86_64/multiarch sysdeps/x86_64 sysdeps/x86 sysdeps/ieee754/float128 sysdeps/ieee754/ldbl-96 sysdeps/ieee754/dbl-64/wordsize-64 sysdeps/ieee754/dbl-64 sysdeps/ieee754/flt-32 sysdeps/wordsize-64 sysdeps/ieee754 sysdeps/generic'
target_alias=''
use_default_link='no'
use_ldconfig='yes'
use_nscd='yes'
## ----------- ##
## confdefs.h. ##
## ----------- ##
/* confdefs.h */
#define PACKAGE_NAME "GNU C Library"
#define PACKAGE_TARNAME "glibc"
#define PACKAGE_VERSION "(see version.h)"
#define PACKAGE_STRING "GNU C Library (see version.h)"
#define PACKAGE_BUGREPORT "https://sourceware.org/bugzilla/"
#define PACKAGE_URL "https://www.gnu.org/software/glibc/"
#define PKGVERSION "(GNU libc) "
#define REPORT_BUGS_TO "<https://www.gnu.org/software/libc/bugs.html>"
#define HAVE_TUNABLES 1
#define HAVE_CC_NO_STACK_PROTECTOR 1
#define STACK_PROTECTOR_LEVEL 0
#define USE_MULTIARCH 1
#define HAVE_ASM_SET_DIRECTIVE 1
#define NO_CTORS_DTORS_SECTIONS 1
#define HAVE_Z_COMBRELOC 1
#define HAVE_BUILTIN_MEMSET 1
#define HAVE_CC_INHIBIT_LOOP_TO_LIBCALL 1
#define HAVE_EHDR_START 1
#define HAVE_BUILTIN_TRAP 1
#define __LINUX_KERNEL_VERSION (3 * 65536 + 2 * 256 + 0)
#define __ABI_TAG_VERSION 3,2,0
#define HAVE_INLINED_SYSCALLS 1
#define HAVE_AVX512DQ_ASM_SUPPORT 1
#define HAVE_AVX512_SUPPORT 1
#define HAVE_MPX_SUPPORT 1
#define PI_STATIC_AND_HIDDEN 1
#define HAVE_IFUNC 1
#define HAVE_GCC_IFUNC 1
#define USE_NSCD 1
#define USE_LDCONFIG 1
configure: exit 0
--
http://lists.linuxfromscratch.org/listinfo/lfs-support
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page
Do not top post on this list.
A: Because it messes up the order in which people normally read text.
Q: Why is top-posting such a bad thing?
A: Top-posting.
Q: What is the most annoying thing in e-mail?
http://en.wikipedia.org/wiki/Posting_style