From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from s411.sureserver.com (s411.sureserver.com [192.252.151.33]) by sourceware.org (Postfix) with ESMTPS id A8BAF3858D1E for ; Sun, 20 Nov 2022 17:41:05 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org A8BAF3858D1E Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=nishan.io Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=nishan.io DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=nishan.io; h=message-id :reply-to:from:to:subject:date:mime-version:in-reply-to :references:content-type:content-transfer-encoding; s=dkim; bh=H Dh6UUQ0RJ3n5zXal02xJsn2Ls9twTUqNug1YuUYnXU=; b=ZpsY/DouN5LtdmWx7 X/+jZfS97KnSmyu5sa2JOmgbzaw7K0QAASFzbWRJQ7/YyZPGEAC/Lsds8c8SmkIU 4T8BifpbSYXvC9QOB7PDU7Bno5gBUsynakZJn84j+YUa5xxVcsAxCjNjevQsA69A yAVYv+H78pC3ihwMj1BwtZzSUw= Received: (qmail 11108 invoked by uid 1900); 20 Nov 2022 17:41:04 -0000 Message-ID: <20221120174104.11107.qmail@s411.sureserver.com> Reply-To: "=?utf-8?Q?Saifi=20Khan?=" From: "=?utf-8?Q?Saifi=20Khan?=" To: libc-help@sourceware.org Subject: =?utf-8?B?UmU6IGVycm9yOiDigJhfX2xpYmNfc2luZ2xlX3RocmVhZGVkX2ludGVybmFs4oCZIHVuZGVjbGFyZWQ=?= Date: Sun, 20 Nov 2022 17:41:04 +0000 MIME-Version: 1.0 X-Mailer: WebMail 2.55.13.14 X-Suremail-Sender: 103_199_139_48 X-Originating-Email: saifi.khan@nishan.io In-Reply-To: References: <20221120135532.10506.qmail@s411.sureserver.com> Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-0.5 required=5.0 tests=BAYES_00,BODY_8BITS,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,SPF_HELO_PASS,SPF_PASS,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: > -------Original Message------- > From: Adhemerval Zanella > > Do you mean by 'out-of-source-tree' that you are just trying to > compile the source without all the internal files and definitions? > Adhemerval, thanks for your kind reply. The directory tree structure looks like this /opt/work/linux/glibc/ ├── build └── src In the build directory, i first execute a configure script (b02.sh) DIR_ONE=/opt/work/linux/glibc DIR_SRC=${DIR_ONE}/src DIR_DST=${DIR_ONE}/root CC="gcc-12" CXX="g++-12" CFLAGS="-O2 -pipe" CXXFLAGS="${CFLAGS}" CC="gcc-12" CXX="g++-12" CFLAGS="-O2 -pipe" CXXFLAGS="${CFLAGS}" ${DIR_SRC}/configure \ --prefix=${DIR_DST} \ --exec-prefix=${DIR_DST} \ --datarootdir=${DIR_DST}/doc/share \ --datadir=${DIR_DST}/doc \ --docdir=${DIR_DST}/doc \ --htmldir=${DIR_DST}/doc \ --mandir=${DIR_DST}/doc/man \ --infodir=${DIR_DST}/doc/info \ --enable-add-ons \ --disable-hidden-plt \ --disable-profile \ --enable-stack-protector=no \ --enable-shared \ --enable-ld=yes \ --with-gnu-ld \ --without-selinux exit 0; next i execute the build script (b04.sh) make -j1 that's when the above mentioned error was seen. Do you think anything needs to be changed in the options that are being passed to the configure script ? warm regards Saifi.