public inbox for glibc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug libc/758] New: syscall.h not generated properly
@ 2005-02-22 23:52 giffordj at linkline dot com
  2005-02-23  3:12 ` [Bug libc/758] " giffordj at linkline dot com
                   ` (20 more replies)
  0 siblings, 21 replies; 22+ messages in thread
From: giffordj at linkline dot com @ 2005-02-22 23:52 UTC (permalink / raw)
  To: glibc-bugs

When trying to compile numerous programs I stumbled accross a lot of these type
of errors. Looks to be caused by syscall.h not being generated properly.

 error: `SYS_read' undeclared (first use in this function)
 error: (Each undeclared identifier is reported only once
 error: for each function it appears in.)
 error: `SYS_write' undeclared (first use in this function)

Comparing my contents to the contents of a known working distro's version 2.3.3
of syscall.h, I noticied a big difference.

Here is my contents of syscall.h

/* Generated at libc build time from kernel syscall list.  */

#ifndef _SYSCALL_H
# error "Never use <bits/syscall.h> directly; include <sys/syscall.h> instead."
#endif

#include <sgidefs.h>
#if _MIPS_SIM == _ABIN32
#define SYS_Linux __NR_N32_Linux
#define SYS_Linux_syscalls __NR_N32_Linux_syscalls
#elif _MIPS_SIM == _ABI64
#else
#define SYS_Linux __NR_O32_Linux
#define SYS_Linux_syscalls __NR_O32_Linux_syscalls
#endif

The distro's version had a lot of lines simlar to the following

#define SYS_accept __NR_accept
#define SYS_fdatasync __NR_fdatasync
#define SYS_bind __NR_bind
#define SYS_mlockall __NR_mlockall
#define SYS_connect __NR_connect
#define SYS_sched_yield __NR_sched_yield

I'm using no patches to build my glibc, using the following build commands. I'm
building with linuxthreads and libcibn.

cd /usr/src/glibc-2.3.4
rm -rf nptl*
mkdir /usr/src/glibc-2.3.4-build
/usr/src/glibc-2.3.4/configure --prefix=/usr \
    --libexecdir=/usr/bin --disable-profile \
    --enable-add-ons --enable-bind-now \
    --enable-kernel=2.6.0 --without-cvs
make 
make install

-- 
           Summary: syscall.h not generated properly
           Product: glibc
           Version: 2.3.4
            Status: NEW
          Severity: critical
          Priority: P2
         Component: libc
        AssignedTo: gotom at debian dot or dot jp
        ReportedBy: giffordj at linkline dot com
                CC: glibc-bugs at sources dot redhat dot com
  GCC host triplet: mipsel-unknown-linux-gnu


http://sources.redhat.com/bugzilla/show_bug.cgi?id=758

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 22+ messages in thread

* [Bug libc/758] syscall.h not generated properly
  2005-02-22 23:52 [Bug libc/758] New: syscall.h not generated properly giffordj at linkline dot com
@ 2005-02-23  3:12 ` giffordj at linkline dot com
  2005-02-23 18:29 ` giffordj at linkline dot com
                   ` (19 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: giffordj at linkline dot com @ 2005-02-23  3:12 UTC (permalink / raw)
  To: glibc-bugs


------- Additional Comments From giffordj at linkline dot com  2005-02-23 03:12 -------
Was giving to me by some folks at linux-mips.org. Here is a link to the messages

http://www.linux-mips.org/archives/linux-mips/2005-02/msg00197.html

-- 


http://sources.redhat.com/bugzilla/show_bug.cgi?id=758

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 22+ messages in thread

* [Bug libc/758] syscall.h not generated properly
  2005-02-22 23:52 [Bug libc/758] New: syscall.h not generated properly giffordj at linkline dot com
  2005-02-23  3:12 ` [Bug libc/758] " giffordj at linkline dot com
@ 2005-02-23 18:29 ` giffordj at linkline dot com
  2005-02-24 18:43 ` macro at linux-mips dot org
                   ` (18 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: giffordj at linkline dot com @ 2005-02-23 18:29 UTC (permalink / raw)
  To: glibc-bugs


------- Additional Comments From giffordj at linkline dot com  2005-02-23 18:29 -------
A patch was proposed here on libc-alpha for this issue
http://sourceware.org/ml/libc-alpha/2004-11/msg00097.html

-- 


http://sources.redhat.com/bugzilla/show_bug.cgi?id=758

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 22+ messages in thread

* [Bug libc/758] syscall.h not generated properly
  2005-02-22 23:52 [Bug libc/758] New: syscall.h not generated properly giffordj at linkline dot com
  2005-02-23  3:12 ` [Bug libc/758] " giffordj at linkline dot com
  2005-02-23 18:29 ` giffordj at linkline dot com
@ 2005-02-24 18:43 ` macro at linux-mips dot org
  2005-02-24 19:54 ` giffordj at linkline dot com
                   ` (17 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: macro at linux-mips dot org @ 2005-02-24 18:43 UTC (permalink / raw)
  To: glibc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|gotom at debian dot or dot  |aj at suse dot de
                   |jp                          |
             Status|NEW                         |ASSIGNED


http://sources.redhat.com/bugzilla/show_bug.cgi?id=758

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 22+ messages in thread

* [Bug libc/758] syscall.h not generated properly
  2005-02-22 23:52 [Bug libc/758] New: syscall.h not generated properly giffordj at linkline dot com
                   ` (3 preceding siblings ...)
  2005-02-24 19:54 ` giffordj at linkline dot com
@ 2005-02-24 19:54 ` giffordj at linkline dot com
  2005-02-25 15:20 ` cvs-commit at gcc dot gnu dot org
                   ` (15 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: giffordj at linkline dot com @ 2005-02-24 19:54 UTC (permalink / raw)
  To: glibc-bugs


------- Additional Comments From giffordj at linkline dot com  2005-02-24 19:53 -------
Created an attachment (id=422)
 --> (http://sources.redhat.com/bugzilla/attachment.cgi?id=422&action=view)
Updated Patch based on libc-alpha message


-- 


http://sources.redhat.com/bugzilla/show_bug.cgi?id=758

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 22+ messages in thread

* [Bug libc/758] syscall.h not generated properly
  2005-02-22 23:52 [Bug libc/758] New: syscall.h not generated properly giffordj at linkline dot com
                   ` (2 preceding siblings ...)
  2005-02-24 18:43 ` macro at linux-mips dot org
@ 2005-02-24 19:54 ` giffordj at linkline dot com
  2005-02-24 19:54 ` giffordj at linkline dot com
                   ` (16 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: giffordj at linkline dot com @ 2005-02-24 19:54 UTC (permalink / raw)
  To: glibc-bugs


------- Additional Comments From giffordj at linkline dot com  2005-02-24 19:54 -------
I have attached an updated patch to the one posted to libc-alpha in november
2004, I have tested the patch and it does properly generate the syscall.h file.

-- 


http://sources.redhat.com/bugzilla/show_bug.cgi?id=758

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 22+ messages in thread

* [Bug libc/758] syscall.h not generated properly
  2005-02-22 23:52 [Bug libc/758] New: syscall.h not generated properly giffordj at linkline dot com
                   ` (4 preceding siblings ...)
  2005-02-24 19:54 ` giffordj at linkline dot com
@ 2005-02-25 15:20 ` cvs-commit at gcc dot gnu dot org
  2005-02-25 15:23 ` aj at suse dot de
                   ` (14 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2005-02-25 15:20 UTC (permalink / raw)
  To: glibc-bugs


------- Additional Comments From cvs-commit at gcc dot gnu dot org  2005-02-25 15:19 -------
Subject: Bug 758

CVSROOT:	/cvs/glibc
Module name:	libc
Changes by:	aj@sources.redhat.com	2005-02-25 15:18:14

Modified files:
	sysdeps/unix/sysv/linux/mips: Makefile configure configure.in 
	sysdeps/unix/sysv/linux/mips/mips32/kern64: sysdep.h 
	sysdeps/unix/sysv/linux/mips/mips64/n32: sysdep.h 
	sysdeps/unix/sysv/linux/mips/mips64/n64: sysdep.h 

Log message:
	2004-11-11  Richard Sandiford  <rsandifo@redhat.com>
	
	[BZ #758]
	* sysdeps/unix/sysv/linux/mips/configure.in (asm-unistd.h): Only
	preprocess <asm/unistd.h> if it defines ABI-prefixed syscall names
	like __NR_N32_open.  Just include <asm/unistd.h> otherwise.
	* sysdeps/unix/sysv/linux/mips/configure: Regenerate.
	* sysdeps/unix/sysv/linux/mips/mips32/kern64/sysdep.h: Delete
	* sysdeps/unix/sysv/linux/mips/mips64/n32/sysdep.h (SYS_ify): Use the
	standard __NR prefix.
	* sysdeps/unix/sysv/linux/mips/mips64/n64/sysdep.h (SYS_ify): Likewise.
	* sysdeps/unix/sysv/linux/mips/Makefile (syscall-%.h): Rework so that
	the output file is compatible with both pre-2.6 and 2.6 kernel headers.
	Extract separate syscall lists for each ABI.

Patches:
http://sources.redhat.com/cgi-bin/cvsweb.cgi/libc/sysdeps/unix/sysv/linux/mips/Makefile.diff?cvsroot=glibc&r1=1.14&r2=1.15
http://sources.redhat.com/cgi-bin/cvsweb.cgi/libc/sysdeps/unix/sysv/linux/mips/configure.diff?cvsroot=glibc&r1=1.8&r2=1.9
http://sources.redhat.com/cgi-bin/cvsweb.cgi/libc/sysdeps/unix/sysv/linux/mips/configure.in.diff?cvsroot=glibc&r1=1.7&r2=1.8
http://sources.redhat.com/cgi-bin/cvsweb.cgi/libc/sysdeps/unix/sysv/linux/mips/mips32/kern64/sysdep.h.diff?cvsroot=glibc&r1=1.1&r2=1.2
http://sources.redhat.com/cgi-bin/cvsweb.cgi/libc/sysdeps/unix/sysv/linux/mips/mips64/n32/sysdep.h.diff?cvsroot=glibc&r1=1.4&r2=1.5
http://sources.redhat.com/cgi-bin/cvsweb.cgi/libc/sysdeps/unix/sysv/linux/mips/mips64/n64/sysdep.h.diff?cvsroot=glibc&r1=1.4&r2=1.5



-- 


http://sources.redhat.com/bugzilla/show_bug.cgi?id=758

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 22+ messages in thread

* [Bug libc/758] syscall.h not generated properly
  2005-02-22 23:52 [Bug libc/758] New: syscall.h not generated properly giffordj at linkline dot com
                   ` (5 preceding siblings ...)
  2005-02-25 15:20 ` cvs-commit at gcc dot gnu dot org
@ 2005-02-25 15:23 ` aj at suse dot de
  2005-03-23  1:58 ` roland at gnu dot org
                   ` (13 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: aj at suse dot de @ 2005-02-25 15:23 UTC (permalink / raw)
  To: glibc-bugs


------- Additional Comments From aj at suse dot de  2005-02-25 15:23 -------
Roland, this should go into 2.3 as well.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
OtherBugsDependingO|                            |724
              nThis|                            |
         AssignedTo|aj at suse dot de           |roland at gnu dot org


http://sources.redhat.com/bugzilla/show_bug.cgi?id=758

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 22+ messages in thread

* [Bug libc/758] syscall.h not generated properly
  2005-02-22 23:52 [Bug libc/758] New: syscall.h not generated properly giffordj at linkline dot com
                   ` (6 preceding siblings ...)
  2005-02-25 15:23 ` aj at suse dot de
@ 2005-03-23  1:58 ` roland at gnu dot org
  2005-04-05 23:49 ` roland at gnu dot org
                   ` (12 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: roland at gnu dot org @ 2005-03-23  1:58 UTC (permalink / raw)
  To: glibc-bugs


------- Additional Comments From roland at gnu dot org  2005-03-23 01:58 -------
I haven't gotten confirmation that this has had testing meeting the 2.3 branch
inclusion criteria.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |aj at suse dot de
             Status|ASSIGNED                    |SUSPENDED


http://sources.redhat.com/bugzilla/show_bug.cgi?id=758

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 22+ messages in thread

* [Bug libc/758] syscall.h not generated properly
  2005-02-22 23:52 [Bug libc/758] New: syscall.h not generated properly giffordj at linkline dot com
                   ` (7 preceding siblings ...)
  2005-03-23  1:58 ` roland at gnu dot org
@ 2005-04-05 23:49 ` roland at gnu dot org
  2005-07-17  5:22 ` gschafer at zip dot com dot au
                   ` (11 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: roland at gnu dot org @ 2005-04-05 23:49 UTC (permalink / raw)
  To: glibc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
OtherBugsDependingO|724                         |
              nThis|                            |


http://sources.redhat.com/bugzilla/show_bug.cgi?id=758

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 22+ messages in thread

* [Bug libc/758] syscall.h not generated properly
  2005-02-22 23:52 [Bug libc/758] New: syscall.h not generated properly giffordj at linkline dot com
                   ` (8 preceding siblings ...)
  2005-04-05 23:49 ` roland at gnu dot org
@ 2005-07-17  5:22 ` gschafer at zip dot com dot au
  2005-07-18  3:53 ` roland at gnu dot org
                   ` (10 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: gschafer at zip dot com dot au @ 2005-07-17  5:22 UTC (permalink / raw)
  To: glibc-bugs


------- Additional Comments From gschafer at zip dot com dot au  2005-07-17 05:22 -------
(In reply to comment #7)
> I haven't gotten confirmation that this has had testing meeting the 2.3 branch
> inclusion criteria.

Roland, mips64 won't even build without this fix. Would it be possible to relax
the inclusion criteria on this occasion? If you do decide to apply it on the
branch, this fixup is also needed:

http://sources.redhat.com/ml/glibc-cvs/2005-q1/msg00811.html

Thanks

-- 


http://sources.redhat.com/bugzilla/show_bug.cgi?id=758

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 22+ messages in thread

* [Bug libc/758] syscall.h not generated properly
  2005-02-22 23:52 [Bug libc/758] New: syscall.h not generated properly giffordj at linkline dot com
                   ` (9 preceding siblings ...)
  2005-07-17  5:22 ` gschafer at zip dot com dot au
@ 2005-07-18  3:53 ` roland at gnu dot org
  2005-07-18 16:43 ` drow at sources dot redhat dot com
                   ` (9 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: roland at gnu dot org @ 2005-07-18  3:53 UTC (permalink / raw)
  To: glibc-bugs


------- Additional Comments From roland at gnu dot org  2005-07-18 03:53 -------
The relevant criterion is that someone testify that they have built a 2.3-based
glibc using this patch into a production or production-testing binary form and
had real-world testing of it.  If there is noone who can get even that minimally
serious about mips maintenance, then the changes do not belong in the 2.3 branch.
It's not a hard requirement to meet, and I cannot imagine how you could be in
the position of caring what's in the 2.3 branch without already having done the
requisite work of making a usable package with the necessary patch and testing it.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|roland at gnu dot org       |aj at suse dot de
             Status|SUSPENDED                   |ASSIGNED


http://sources.redhat.com/bugzilla/show_bug.cgi?id=758

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 22+ messages in thread

* [Bug libc/758] syscall.h not generated properly
  2005-02-22 23:52 [Bug libc/758] New: syscall.h not generated properly giffordj at linkline dot com
                   ` (11 preceding siblings ...)
  2005-07-18 16:43 ` drow at sources dot redhat dot com
@ 2005-07-18 16:43 ` drow at sources dot redhat dot com
  2005-07-19  8:58 ` roland at gnu dot org
                   ` (7 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: drow at sources dot redhat dot com @ 2005-07-18 16:43 UTC (permalink / raw)
  To: glibc-bugs


------- Additional Comments From drow at sources dot redhat dot com  2005-07-18 16:43 -------
MontaVista applies this patch to glibc 2.3.4 and 2.3.5 (the patch attached to
the bug is mildly whitespace-mangled, but functionally the same).  Does that help?

Debian uses a somewhat different patch that I wrote before Richard's better version.

-- 


http://sources.redhat.com/bugzilla/show_bug.cgi?id=758

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 22+ messages in thread

* [Bug libc/758] syscall.h not generated properly
  2005-02-22 23:52 [Bug libc/758] New: syscall.h not generated properly giffordj at linkline dot com
                   ` (10 preceding siblings ...)
  2005-07-18  3:53 ` roland at gnu dot org
@ 2005-07-18 16:43 ` drow at sources dot redhat dot com
  2005-07-18 16:43 ` drow at sources dot redhat dot com
                   ` (8 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: drow at sources dot redhat dot com @ 2005-07-18 16:43 UTC (permalink / raw)
  To: glibc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |drow at sources dot redhat
                   |                            |dot com


http://sources.redhat.com/bugzilla/show_bug.cgi?id=758

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 22+ messages in thread

* [Bug libc/758] syscall.h not generated properly
  2005-02-22 23:52 [Bug libc/758] New: syscall.h not generated properly giffordj at linkline dot com
                   ` (12 preceding siblings ...)
  2005-07-18 16:43 ` drow at sources dot redhat dot com
@ 2005-07-19  8:58 ` roland at gnu dot org
  2005-10-15  5:09 ` drepper at redhat dot com
                   ` (6 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: roland at gnu dot org @ 2005-07-19  8:58 UTC (permalink / raw)
  To: glibc-bugs


------- Additional Comments From roland at gnu dot org  2005-07-19 08:58 -------
Can you send me a nonmangled patch against the current 2.3 branch, that you have
tested?  If you do some work beyond merging and have your own log entry, send
that; otherwise, I'll use the trunk log entry shown in this bug and your patch
should match its description of changes.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |WAITING


http://sources.redhat.com/bugzilla/show_bug.cgi?id=758

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 22+ messages in thread

* [Bug libc/758] syscall.h not generated properly
  2005-02-22 23:52 [Bug libc/758] New: syscall.h not generated properly giffordj at linkline dot com
                   ` (13 preceding siblings ...)
  2005-07-19  8:58 ` roland at gnu dot org
@ 2005-10-15  5:09 ` drepper at redhat dot com
  2005-10-17 21:13 ` drow at sources dot redhat dot com
                   ` (5 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: drepper at redhat dot com @ 2005-10-15  5:09 UTC (permalink / raw)
  To: glibc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
 GCC target triplet|                            |mips-linux


http://sourceware.org/bugzilla/show_bug.cgi?id=758

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 22+ messages in thread

* [Bug libc/758] syscall.h not generated properly
  2005-02-22 23:52 [Bug libc/758] New: syscall.h not generated properly giffordj at linkline dot com
                   ` (14 preceding siblings ...)
  2005-10-15  5:09 ` drepper at redhat dot com
@ 2005-10-17 21:13 ` drow at sources dot redhat dot com
  2005-10-17 21:14 ` drow at sources dot redhat dot com
                   ` (4 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: drow at sources dot redhat dot com @ 2005-10-17 21:13 UTC (permalink / raw)
  To: glibc-bugs


------- Additional Comments From drow at sources dot redhat dot com  2005-10-17 21:13 -------
Created an attachment (id=716)
 --> (http://sourceware.org/bugzilla/attachment.cgi?id=716&action=view)
Debian's backported patch.

This is the patch that Debian now applies.  All I changed from Richard's
posting was a couple of _MIPS_SIM vs _ABI macros that changed after 2.3.


-- 


http://sourceware.org/bugzilla/show_bug.cgi?id=758

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 22+ messages in thread

* [Bug libc/758] syscall.h not generated properly
  2005-02-22 23:52 [Bug libc/758] New: syscall.h not generated properly giffordj at linkline dot com
                   ` (15 preceding siblings ...)
  2005-10-17 21:13 ` drow at sources dot redhat dot com
@ 2005-10-17 21:14 ` drow at sources dot redhat dot com
  2005-10-23  0:39 ` roland at gnu dot org
                   ` (3 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: drow at sources dot redhat dot com @ 2005-10-17 21:14 UTC (permalink / raw)
  To: glibc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|WAITING                     |ASSIGNED
   Last reconfirmed|0000-00-00 00:00:00         |2005-10-17 21:14:25
               date|                            |


http://sourceware.org/bugzilla/show_bug.cgi?id=758

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 22+ messages in thread

* [Bug libc/758] syscall.h not generated properly
  2005-02-22 23:52 [Bug libc/758] New: syscall.h not generated properly giffordj at linkline dot com
                   ` (16 preceding siblings ...)
  2005-10-17 21:14 ` drow at sources dot redhat dot com
@ 2005-10-23  0:39 ` roland at gnu dot org
  2005-10-23  0:43 ` cvs-commit at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: roland at gnu dot org @ 2005-10-23  0:39 UTC (permalink / raw)
  To: glibc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
OtherBugsDependingO|                            |852
              nThis|                            |


http://sourceware.org/bugzilla/show_bug.cgi?id=758

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 22+ messages in thread

* [Bug libc/758] syscall.h not generated properly
  2005-02-22 23:52 [Bug libc/758] New: syscall.h not generated properly giffordj at linkline dot com
                   ` (17 preceding siblings ...)
  2005-10-23  0:39 ` roland at gnu dot org
@ 2005-10-23  0:43 ` cvs-commit at gcc dot gnu dot org
  2005-11-04 21:43 ` roland at gnu dot org
  2005-11-15  2:08 ` cvs-commit at gcc dot gnu dot org
  20 siblings, 0 replies; 22+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2005-10-23  0:43 UTC (permalink / raw)
  To: glibc-bugs


------- Additional Comments From cvs-commit at gcc dot gnu dot org  2005-10-23 00:42 -------
Subject: Bug 758

CVSROOT:	/cvs/glibc
Module name:	libc
Branch: 	glibc-2_3-branch
Changes by:	roland@sources.redhat.com	2005-10-23 00:42:56

Modified files:
	sysdeps/unix/sysv/linux/mips: Makefile configure configure.in 
	sysdeps/unix/sysv/linux/mips/mips64/n32: sysdep.h 
	sysdeps/unix/sysv/linux/mips/mips32/kern64: sysdep.h 
	sysdeps/unix/sysv/linux/mips/mips64/n64: sysdep.h 

Log message:
	2004-11-11  Richard Sandiford  <rsandifo@redhat.com>
	
	[BZ #758]
	* sysdeps/unix/sysv/linux/mips/configure.in (asm-unistd.h): Only
	preprocess <asm/unistd.h> if it defines ABI-prefixed syscall names
	like __NR_N32_open.  Just include <asm/unistd.h> otherwise.
	* sysdeps/unix/sysv/linux/mips/configure: Regenerate.
	* sysdeps/unix/sysv/linux/mips/mips32/kern64/sysdep.h: Delete
	* sysdeps/unix/sysv/linux/mips/mips64/n32/sysdep.h (SYS_ify): Use the
	standard __NR prefix.
	* sysdeps/unix/sysv/linux/mips/mips64/n64/sysdep.h (SYS_ify): Likewise.
	* sysdeps/unix/sysv/linux/mips/Makefile (syscall-%.h): Rework so that
	the output file is compatible with both pre-2.6 and 2.6 kernel headers.
	Extract separate syscall lists for each ABI.

Patches:
http://sources.redhat.com/cgi-bin/cvsweb.cgi/libc/sysdeps/unix/sysv/linux/mips/Makefile.diff?cvsroot=glibc&only_with_tag=glibc-2_3-branch&r1=1.14&r2=1.14.2.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/libc/sysdeps/unix/sysv/linux/mips/configure.diff?cvsroot=glibc&only_with_tag=glibc-2_3-branch&r1=1.8&r2=1.8.2.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/libc/sysdeps/unix/sysv/linux/mips/configure.in.diff?cvsroot=glibc&only_with_tag=glibc-2_3-branch&r1=1.7&r2=1.7.2.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/libc/sysdeps/unix/sysv/linux/mips/mips64/n32/sysdep.h.diff?cvsroot=glibc&only_with_tag=glibc-2_3-branch&r1=1.4&r2=1.4.2.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/libc/sysdeps/unix/sysv/linux/mips/mips32/kern64/sysdep.h.diff?cvsroot=glibc&only_with_tag=glibc-2_3-branch&r1=1.1&r2=1.1.4.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/libc/sysdeps/unix/sysv/linux/mips/mips64/n64/sysdep.h.diff?cvsroot=glibc&only_with_tag=glibc-2_3-branch&r1=1.4&r2=1.4.2.1



-- 


http://sourceware.org/bugzilla/show_bug.cgi?id=758

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 22+ messages in thread

* [Bug libc/758] syscall.h not generated properly
  2005-02-22 23:52 [Bug libc/758] New: syscall.h not generated properly giffordj at linkline dot com
                   ` (18 preceding siblings ...)
  2005-10-23  0:43 ` cvs-commit at gcc dot gnu dot org
@ 2005-11-04 21:43 ` roland at gnu dot org
  2005-11-15  2:08 ` cvs-commit at gcc dot gnu dot org
  20 siblings, 0 replies; 22+ messages in thread
From: roland at gnu dot org @ 2005-11-04 21:43 UTC (permalink / raw)
  To: glibc-bugs


------- Additional Comments From roland at gnu dot org  2005-11-04 21:43 -------
This bug should be fixed in the 2.3.6 release just made.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|                            |FIXED


http://sourceware.org/bugzilla/show_bug.cgi?id=758

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 22+ messages in thread

* [Bug libc/758] syscall.h not generated properly
  2005-02-22 23:52 [Bug libc/758] New: syscall.h not generated properly giffordj at linkline dot com
                   ` (19 preceding siblings ...)
  2005-11-04 21:43 ` roland at gnu dot org
@ 2005-11-15  2:08 ` cvs-commit at gcc dot gnu dot org
  20 siblings, 0 replies; 22+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2005-11-15  2:08 UTC (permalink / raw)
  To: glibc-bugs


------- Additional Comments From cvs-commit at gcc dot gnu dot org  2005-11-15 02:08 -------
Subject: Bug 758

CVSROOT:	/cvs/glibc
Module name:	libc
Branch: 	glibc-2_3-branch
Changes by:	roland@sources.redhat.com	2005-11-15 02:08:20

Modified files:
	.              : ChangeLog 
Removed files:
	sysdeps/unix/sysv/linux/mips/mips32/kern64: sysdep.h 

Log message:
	2005-11-14  Roland McGrath  <roland@redhat.com>
	
	[BZ #758]
	* sysdeps/unix/sysv/linux/mips/mips32/kern64/sysdep.h: Really remove.

Patches:
http://sources.redhat.com/cgi-bin/cvsweb.cgi/libc/sysdeps/unix/sysv/linux/mips/mips32/kern64/sysdep.h.diff?cvsroot=glibc&only_with_tag=glibc-2_3-branch&r1=1.1.4.1&r2=NONE
http://sources.redhat.com/cgi-bin/cvsweb.cgi/libc/ChangeLog.diff?cvsroot=glibc&only_with_tag=glibc-2_3-branch&r1=1.9088.2.75&r2=1.9088.2.76



-- 


http://sourceware.org/bugzilla/show_bug.cgi?id=758

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 22+ messages in thread

end of thread, other threads:[~2005-11-15  2:08 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-02-22 23:52 [Bug libc/758] New: syscall.h not generated properly giffordj at linkline dot com
2005-02-23  3:12 ` [Bug libc/758] " giffordj at linkline dot com
2005-02-23 18:29 ` giffordj at linkline dot com
2005-02-24 18:43 ` macro at linux-mips dot org
2005-02-24 19:54 ` giffordj at linkline dot com
2005-02-24 19:54 ` giffordj at linkline dot com
2005-02-25 15:20 ` cvs-commit at gcc dot gnu dot org
2005-02-25 15:23 ` aj at suse dot de
2005-03-23  1:58 ` roland at gnu dot org
2005-04-05 23:49 ` roland at gnu dot org
2005-07-17  5:22 ` gschafer at zip dot com dot au
2005-07-18  3:53 ` roland at gnu dot org
2005-07-18 16:43 ` drow at sources dot redhat dot com
2005-07-18 16:43 ` drow at sources dot redhat dot com
2005-07-19  8:58 ` roland at gnu dot org
2005-10-15  5:09 ` drepper at redhat dot com
2005-10-17 21:13 ` drow at sources dot redhat dot com
2005-10-17 21:14 ` drow at sources dot redhat dot com
2005-10-23  0:39 ` roland at gnu dot org
2005-10-23  0:43 ` cvs-commit at gcc dot gnu dot org
2005-11-04 21:43 ` roland at gnu dot org
2005-11-15  2:08 ` cvs-commit at gcc dot gnu dot org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).