From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 32045 invoked by alias); 4 Aug 2002 22:28:22 -0000 Mailing-List: contact libc-hacker-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-hacker-owner@sources.redhat.com Received: (qmail 32029 invoked from network); 4 Aug 2002 22:28:21 -0000 Received: from unknown (HELO sunsite.mff.cuni.cz) (195.113.19.66) by sources.redhat.com with SMTP; 4 Aug 2002 22:28:21 -0000 Received: (from jakub@localhost) by sunsite.mff.cuni.cz (8.11.6/8.11.6) id g74MSIX17790; Mon, 5 Aug 2002 00:28:18 +0200 Date: Sun, 04 Aug 2002 15:28:00 -0000 From: Jakub Jelinek To: Ulrich Drepper Cc: Glibc hackers Subject: [PATCH] Fix IA-64 build Message-ID: <20020805002818.V20867@sunsite.ms.mff.cuni.cz> Reply-To: Jakub Jelinek References: <20020804235304.U20867@sunsite.ms.mff.cuni.cz> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20020804235304.U20867@sunsite.ms.mff.cuni.cz>; from jakub@redhat.com on Sun, Aug 04, 2002 at 11:53:04PM +0200 X-SW-Source: 2002-08/txt/msg00052.txt.bz2 On Sun, Aug 04, 2002 at 11:53:04PM +0200, Jakub Jelinek wrote: > IA-64 doesn't build either (even with this patch), will look into it tomorrow morning. I believe this should fix it (bootstrap pending). __lseek was defined in both lseek.os and llseek.os (and __llseek nowhere). 2002-08-05 Jakub Jelinek * sysdeps/unix/sysv/linux/ia64/syscalls.list (llseek): Provide __llseek alias, not __lseek. * sysdeps/unix/sysv/linux/s390/s390-64/syscalls.list (llseek): Likewise. * manual/debug.texi (%MENU%): Remove trailing dot. Reported by . --- libc/manual/debug.texi.jj 2002-08-04 21:57:15.000000000 +0200 +++ libc/manual/debug.texi 2002-08-05 00:41:19.000000000 +0200 @@ -1,6 +1,6 @@ @node Debugging Support @c @node Debugging Support, , Cryptographic Functions, Top -@c %MENU% Functions to help debugging applications. +@c %MENU% Functions to help debugging applications @chapter Debugging support Applications are usually debugged using dedicated debugger programs. --- libc/sysdeps/unix/sysv/linux/ia64/syscalls.list.jj 2002-08-04 20:23:28.000000000 +0200 +++ libc/sysdeps/unix/sysv/linux/ia64/syscalls.list 2002-08-05 00:40:02.000000000 +0200 @@ -3,7 +3,7 @@ umount2 - umount 2 __umount2 umount2 # Whee! 64-bit systems naturally implement llseek. -llseek EXTRA lseek 3 __libc_lseek64 __lseek llseek __lseek64 lseek64 +llseek EXTRA lseek 3 __libc_lseek64 __llseek llseek __lseek64 lseek64 pread - pread 4 __libc_pread __libc_pread64 __pread pread __pread64 pread64 pwrite - pwrite 4 __libc_pwrite __libc_pwrite64 __pwrite pwrite __pwrite64 pwrite64 fstatfs - fstatfs i:ip __fstatfs fstatfs fstatfs64 __fstatfs64 --- libc/sysdeps/unix/sysv/linux/s390/s390-64/syscalls.list.jj 2002-08-04 20:23:28.000000000 +0200 +++ libc/sysdeps/unix/sysv/linux/s390/s390-64/syscalls.list 2002-08-05 00:40:37.000000000 +0200 @@ -1,6 +1,6 @@ # File name Caller Syscall name # args Strong name Weak names -llseek EXTRA lseek 3 __libc_lseek64 __lseek llseek __lseek64 lseek64 +llseek EXTRA lseek 3 __libc_lseek64 __llseek llseek __lseek64 lseek64 pread - pread 4 __libc_pread __libc_pread64 __pread pread __pread64 pread64 pwrite - pwrite 4 __libc_pwrite __libc_pwrite64 __pwrite pwrite __pwrite64 pwrite64 fstatfs - fstatfs i:ip __fstatfs fstatfs fstatfs64 __fstatfs64 Jakub