From: Ryan Bradetich <rbradetich@uswest.net>
To: Tara Dear <tdear@linuxcare.com>, parisc-linux@thepuffingroup.com
Subject: Re: [parisc-linux] recipe
Date: Tue, 08 Aug 2000 23:25:09 -0600 [thread overview]
Message-ID: <3990EB35.D33C40BF@uswest.net> (raw)
In-Reply-To: 39864BF4.4FD098D0@linuxcare.com
[-- Attachment #1: Type: text/plain, Size: 2513 bytes --]
Tara,
I have a small patch to the recipe that will fix problems with a new install.
Sorry it has taken so long to get back, but it took me a while to figure out
how to fix them so I could post a patch :)
Unfortunately, the current glibc cvs source will not build for me so I have
not finished testing the recipe. I will take a look at the remaining errors
tomorrow evening, unless someone else manages to fix them before then :)
Thanks for the recipe!
- Ryan
P.S. Here are the glibc errors.
hppa-linux-gcc ../sysdeps/unix/sysv/linux/sigaction.c -c -O -Wall -Winline
-Wstrict-prototypes -Wwrite-strings -g -I../include -I.
-I/usr/src/parisc/glibc-build/signal -I.. -I../libio
-I/usr/src/parisc/glibc-build -I../sysdeps/hppa/elf
-I../sysdeps/unix/sysv/linux/hppa -I../sysdeps/unix/sysv/linux
-I../sysdeps/gnu -I../sysdeps/unix/common -I../sysdeps/unix/mman
-I../sysdeps/unix/inet -I../sysdeps/unix/sysv -I../sysdeps/unix
-I../sysdeps/posix -I../sysdeps/hppa/hppa1.1 -I../sysdeps/wordsize-32
-I../sysdeps/ieee754/flt-32 -I../sysdeps/ieee754/dbl-64
-I../sysdeps/ieee754/ldbl-128 -I../sysdeps/hppa/fpu -I../sysdeps/hppa
-I../sysdeps/ieee754 -I../sysdeps/generic/elf -I../sysdeps/generic -nostdinc
-isystem /opt/puffin/lib/gcc-lib/hppa-linux/2.96/include -isystem
/usr/src/parisc/glibc-build/../linux-2.3/include -include
../include/libc-symbols.h -o
/usr/src/parisc/glibc-build/signal/sigaction.o
../sysdeps/unix/sysv/linux/sigaction.c: In function `__sigaction':
../sysdeps/unix/sysv/linux/sigaction.c:77: structure has no member named
`sa_restorer'
../sysdeps/unix/sysv/linux/sigaction.c:83: warning: initialization makes
integer from pointer without a cast
../sysdeps/unix/sysv/linux/sigaction.c:83: warning: initialization makes
integer from pointer without a cast
../sysdeps/unix/sysv/linux/sigaction.c:96: structure has no member named
`sa_restorer'
../sysdeps/unix/sysv/linux/sigaction.c:116: structure has no member named
`sa_restorer'
../sysdeps/unix/sysv/linux/sigaction.c:119: warning: initialization makes
integer from pointer without a cast
../sysdeps/unix/sysv/linux/sigaction.c:119: warning: initialization makes
integer from pointer without a cast
../sysdeps/unix/sysv/linux/sigaction.c:127: structure has no member named
`sa_restorer'
make[2]: *** [/usr/src/parisc/glibc-build/signal/sigaction.o] Error 1
make[2]: Leaving directory `/usr/src/parisc/glibc/signal'
make[1]: *** [signal/subdir_lib] Error 2
make[1]: Leaving directory `/usr/src/parisc/glibc'
make: *** [all] Error 2
[-- Attachment #2: patch.recipe --]
[-- Type: text/plain, Size: 965 bytes --]
*** recipe.sh.orig Tue Aug 8 23:06:46 2000
--- recipe.sh Tue Aug 8 23:04:27 2000
***************
*** 1,7 ****
#!/bin/sh -e
! PREFIX=/home/tdear/parisc
HOST=i386-linux
export CVS_RSH=ssh
echo Checking for CVS directories
--- 1,8 ----
#!/bin/sh -e
! PREFIX=/opt/puffin
HOST=i386-linux
+ PATH=/usr/local/bin:/usr/bin:/bin
export CVS_RSH=ssh
echo Checking for CVS directories
***************
*** 43,48 ****
--- 44,56 ----
echo Updating linux-2.3
(cd linux-2.3 && cvs update -dP)
echo Updating header files in $PREFIX/hppa-linux/include/{linux,asm}
+
+ # We need to build include/linux/version.h for glibc
+ (cd linux-2.3 && gmake `pwd`/include/linux/version.h)
+
+ # We also need a symbolic link for asm
+ (cd linux-2.3/include && ln -s asm-parisc asm)
+
rm -rf $PREFIX/hppa-linux/include/{linux,asm}
cp -a linux-2.3/include/linux $PREFIX/hppa-linux/include
cp -a linux-2.3/include/asm-parisc $PREFIX/hppa-linux/include/asm
next prev parent reply other threads:[~2000-08-09 11:25 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2000-08-01 4:03 [parisc-linux] recipe Tara Dear
2000-07-31 21:45 ` Grant Grundler
2000-08-09 5:25 ` Ryan Bradetich [this message]
2000-08-09 14:11 ` David Huggins-Daines
2000-08-10 6:36 ` Ryan Bradetich
[not found] <Pine.LNX.4.21.0006270919200.16671-100000@front.linuxcare.com.au>
2000-06-28 18:36 ` [parisc-linux] Recipe Brian S. Julin
2000-06-28 23:21 ` Alan Modra
-- strict thread matches above, loose matches on Subject: below --
2000-06-01 7:08 [parisc-linux] Binutils update Alan Modra
2000-06-26 13:20 ` [parisc-linux] Recipe Brian S. Julin
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=3990EB35.D33C40BF@uswest.net \
--to=rbradetich@uswest.net \
--cc=parisc-linux@thepuffingroup.com \
--cc=tdear@linuxcare.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.