From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2041) id 34C783858D39; Wed, 2 Aug 2023 04:01:50 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 34C783858D39 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Vladimir Mezentsev To: bfd-cvs@sourceware.org, gdb-cvs@sourceware.org Subject: [binutils-gdb] gprofng: Fix build with 64bit file offset on 32bit machines X-Act-Checkin: binutils-gdb X-Git-Author: Khem Raj X-Git-Refname: refs/heads/master X-Git-Oldrev: 1913729810b6437166c33a3f4c750bf7ac63e7f4 X-Git-Newrev: 69c37f53e20dc3e0b3c179b511ff786db6ae114e Message-Id: <20230802040150.34C783858D39@sourceware.org> Date: Wed, 2 Aug 2023 04:01:50 +0000 (GMT) X-BeenThere: binutils-cvs@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Binutils-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Aug 2023 04:01:50 -0000 https://sourceware.org/git/gitweb.cgi?p=3Dbinutils-gdb.git;h=3D69c37f53e20d= c3e0b3c179b511ff786db6ae114e commit 69c37f53e20dc3e0b3c179b511ff786db6ae114e Author: Khem Raj Date: Mon Jul 31 15:31:40 2023 -0700 gprofng: Fix build with 64bit file offset on 32bit machines =20 gprofng/ChangeLog 2023-07-31 Khem Raj =20 * libcollector/iotrace.c: Define open64, fgetpos64, and fsetpos64 only when __USE_LARGEFILE64 and __USE_FILE_OFFSET64 are not defined. Diff: --- gprofng/libcollector/iotrace.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/gprofng/libcollector/iotrace.c b/gprofng/libcollector/iotrace.c index c0ea7497b09..81c844048d9 100644 --- a/gprofng/libcollector/iotrace.c +++ b/gprofng/libcollector/iotrace.c @@ -1030,8 +1030,9 @@ gprofng_open64 (int(real_open64) (const char *, int, = ...), } =20 DCL_FUNC_VER (DCL_OPEN64, open64_2_2, open64@GLIBC_2.2) +#if !defined(__USE_LARGEFILE64) DCL_OPEN64 (open64) - +#endif =20 #define F_ERROR_ARG 0 #define F_INT_ARG 1 @@ -2989,8 +2990,9 @@ DCL_FUNC_VER (DCL_FGETPOS64, fgetpos64_2_17, fgetpos6= 4@GLIBC_2.17) DCL_FUNC_VER (DCL_FGETPOS64, fgetpos64_2_2_5, fgetpos64@GLIBC_2.2.5) DCL_FUNC_VER (DCL_FGETPOS64, fgetpos64_2_2, fgetpos64@GLIBC_2.2) DCL_FUNC_VER (DCL_FGETPOS64, fgetpos64_2_1, fgetpos64@GLIBC_2.1) +#if !defined(__USE_LARGEFILE64) DCL_FGETPOS64 (fgetpos64) - +#endif /*------------------------------------------------------------- fsetpos */ static int gprofng_fsetpos (int(real_fsetpos) (FILE *, const fpos_t *), @@ -3087,8 +3089,9 @@ DCL_FUNC_VER (DCL_FSETPOS64, fsetpos64_2_17, fsetpos6= 4@GLIBC_2.17) DCL_FUNC_VER (DCL_FSETPOS64, fsetpos64_2_2_5, fsetpos64@GLIBC_2.2.5) DCL_FUNC_VER (DCL_FSETPOS64, fsetpos64_2_2, fsetpos64@GLIBC_2.2) DCL_FUNC_VER (DCL_FSETPOS64, fsetpos64_2_1, fsetpos64@GLIBC_2.1) +#if !defined(__USE_LARGEFILE64) DCL_FSETPOS64 (fsetpos64) - +#endif /*------------------------------------------------------------- fsync */ int fsync (int fildes)