* make errors involving speakup
@ Chris Schulte
` Kirk Reiser
` Kerry Hoath
0 siblings, 2 replies; 7+ messages in thread
From: Chris Schulte @ UTC (permalink / raw)
To: speakup
Hi all,
I have been working with someone to help me install speakup v0.9B. We are
both blind, and he is quite experienced where compiling kernels is
concerned. I am using Slackware V7.1 curtesy of downloading zipspeak from
the slackware website. The kernel we have chosen is 2.3.9 because it has
support for my sound card. Everything seems to go fine, until making the
bzImage. I have looked at the errors and they seem to all be speakup
related. Here is what I have gotten for errors.
gcc -D__KERNEL__ -I/usr/src/linux/include -Wall -Wstrict-prototypes -O2 -fom
it-frame-pointer -pipe -fno-strength-reduce -DCPU=686 -c -o init/main.o
init/main.c
gcc -D__KERNEL__ -I/usr/src/linux/include -Wall -Wstrict-prototypes -O2 -fom
it-frame-pointer -pipe -fno-strength-reduce -DCPU=686 -DUTS_MACHINE='"i386"'
-c -o init/version.o init/version.c
make -C kernel
make[1]: Entering directory `/usr/src/linux/kernel'
make all_targets
make[2]: Entering directory `/usr/src/linux/kernel'
make[2]: Nothing to be done for `all_targets'.
make[2]: Leaving directory `/usr/src/linux/kernel'
make[1]: Leaving directory `/usr/src/linux/kernel'
make -C drivers
make[1]: Entering directory `/usr/src/linux/drivers'
make -C block
make[2]: Entering directory `/usr/src/linux/drivers/block'
make all_targets
make[3]: Entering directory `/usr/src/linux/drivers/block'
make[3]: Nothing to be done for `all_targets'.
make[3]: Leaving directory `/usr/src/linux/drivers/block'
make[2]: Leaving directory `/usr/src/linux/drivers/block'
make -C char
make[2]: Entering directory `/usr/src/linux/drivers/char'
make -C speakup
make[3]: Entering directory `/usr/src/linux/drivers/char/speakup'
make all_targets
make[4]: Entering directory `/usr/src/linux/drivers/char/speakup'
gcc -D__KERNEL__ -I/usr/src/linux/include -Wall -Wstrict-prototypes -O2 -fom
it-frame-pointer -pipe -fno-strength-reduce -DCPU=686 -DSPK_BNS -DSPK_BNS
-c -o speakup_bns.o speakup_bns.c
make[4]: Leaving directory `/usr/src/linux/drivers/char/speakup'
make[3]: Leaving directory `/usr/src/linux/drivers/char/speakup'
make[2]: Leaving directory `/usr/src/linux/drivers/char'
make[1]: Leaving directory `/usr/src/linux/drivers'
Any help would be appreciated. Thanks in advance,
Chris Schulte
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: make errors involving speakup
make errors involving speakup Chris Schulte
@ ` Kirk Reiser
` Chris Schulte
` Kerry Hoath
1 sibling, 1 reply; 7+ messages in thread
From: Kirk Reiser @ UTC (permalink / raw)
To: speakup
Hi Chris: Well, I don't see any errors in your make output, just a
compile line for the bns driver. Seems to me there should be another
compile line for the speakup main modules as well but it isn't there.
My guess is that you've done this compile before and so we're not
seeing the entire picture.
Kirk
--
Kirk Reiser The Computer Braille Facility
e-mail: kirk@braille.uwo.ca University of Western Ontario
phone: (519) 661-3061
^ permalink raw reply [flat|nested] 7+ messages in thread* Re: make errors involving speakup
` Kirk Reiser
@ ` Chris Schulte
` Jacob Schmude
` Kerry Hoath
0 siblings, 2 replies; 7+ messages in thread
From: Chris Schulte @ UTC (permalink / raw)
To: speakup
Yes, I have done the compile before, and it seems that all of the errors are
speakup related. I was told that the best way to have the exact error
message was to type the following line: 'make bzImage > /errors.txt' that is
what I did and sent to you. Sorry.
----- Original Message -----
From: "Kirk Reiser" <kirk@braille.uwo.ca>
To: <speakup@braille.uwo.ca>
Sent: Thursday, October 26, 2000 2:33 PM
Subject: Re: make errors involving speakup
> Hi Chris: Well, I don't see any errors in your make output, just a
> compile line for the bns driver. Seems to me there should be another
> compile line for the speakup main modules as well but it isn't there.
> My guess is that you've done this compile before and so we're not
> seeing the entire picture.
>
> Kirk
>
> --
>
> Kirk Reiser The Computer Braille Facility
> e-mail: kirk@braille.uwo.ca University of Western Ontario
> phone: (519) 661-3061
>
> _______________________________________________
> Speakup mailing list
> Speakup@braille.uwo.ca
> http://speech.braille.uwo.ca/mailman/listinfo/speakup
^ permalink raw reply [flat|nested] 7+ messages in thread* Re: make errors involving speakup
` Chris Schulte
@ ` Jacob Schmude
` Geoff Shang
` Kerry Hoath
1 sibling, 1 reply; 7+ messages in thread
From: Jacob Schmude @ UTC (permalink / raw)
To: speakup
Hi Chris:
Well, I never had success withat make line. Here's what I've always done:
make bzImage 1> errors.txt 2>> errors.txt
This will direct the error output as well as the standard output to the file. Then we'd be able to see the error.
Chris Schulte writes:
> Yes, I have done the compile before, and it seems that all of the errors are
> speakup related. I was told that the best way to have the exact error
> message was to type the following line: 'make bzImage > /errors.txt' that is
> what I did and sent to you. Sorry.
^ permalink raw reply [flat|nested] 7+ messages in thread* Re: make errors involving speakup
` Jacob Schmude
@ ` Geoff Shang
0 siblings, 0 replies; 7+ messages in thread
From: Geoff Shang @ UTC (permalink / raw)
To: speakup
On Thu, 26 Oct 2000, Jacob Schmude wrote:
> Hi Chris:
> Well, I never had success withat make line. Here's what I've always done:
> make bzImage 1> errors.txt 2>> errors.txt
Wouldn't this give you all of stdout followed by all of stderr? Kerry's
example is better - make bzImage >errors.txt 2>&1 at least you'll get it
all in sequence.
Geoff.
--
Geoff Shang <gshang10@scu.edu.au>
ICQ number 43634701
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: make errors involving speakup
` Chris Schulte
` Jacob Schmude
@ ` Kerry Hoath
1 sibling, 0 replies; 7+ messages in thread
From: Kerry Hoath @ UTC (permalink / raw)
To: speakup
Ah but that only gives the standard output not standard error try this:
make bzImage >errors.txt 2>&1
Regards, Kerry.
On Thu, Oct 26, 2000 at 03:00:46PM -0400, Chris Schulte wrote:
> Yes, I have done the compile before, and it seems that all of the errors are
> speakup related. I was told that the best way to have the exact error
> message was to type the following line: 'make bzImage > /errors.txt' that is
> what I did and sent to you. Sorry.
>
> ----- Original Message -----
> From: "Kirk Reiser" <kirk@braille.uwo.ca>
> To: <speakup@braille.uwo.ca>
> Sent: Thursday, October 26, 2000 2:33 PM
> Subject: Re: make errors involving speakup
>
>
> > Hi Chris: Well, I don't see any errors in your make output, just a
> > compile line for the bns driver. Seems to me there should be another
> > compile line for the speakup main modules as well but it isn't there.
> > My guess is that you've done this compile before and so we're not
> > seeing the entire picture.
> >
> > Kirk
> >
> > --
> >
> > Kirk Reiser The Computer Braille Facility
> > e-mail: kirk@braille.uwo.ca University of Western Ontario
> > phone: (519) 661-3061
> >
> > _______________________________________________
> > Speakup mailing list
> > Speakup@braille.uwo.ca
> > http://speech.braille.uwo.ca/mailman/listinfo/speakup
>
>
>
> _______________________________________________
> Speakup mailing list
> Speakup@braille.uwo.ca
> http://speech.braille.uwo.ca/mailman/listinfo/speakup
--
--
Kerry Hoath: kerry@gotss.eu.org
Alternates: kerry@emusys.com.au kerry@gotss.spice.net.au or khoath@lis.net.au
ICQ UIN: 62823451
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: make errors involving speakup
make errors involving speakup Chris Schulte
` Kirk Reiser
@ ` Kerry Hoath
1 sibling, 0 replies; 7+ messages in thread
From: Kerry Hoath @ UTC (permalink / raw)
To: speakup
Firstly 2.2.17 is the kernel you want for maximum stability; it probably
supports your soundcard too; what sort of card is it?
Also; you can install the ALSA drivers later if you like to get
better soundcard support.
On Thu, Oct 26, 2000 at 01:18:14PM -0400, Chris Schulte wrote:
> Hi all,
> I have been working with someone to help me install speakup v0.9B. We are
> both blind, and he is quite experienced where compiling kernels is
> concerned. I am using Slackware V7.1 curtesy of downloading zipspeak from
> the slackware website. The kernel we have chosen is 2.3.9 because it has
> support for my sound card. Everything seems to go fine, until making the
> bzImage. I have looked at the errors and they seem to all be speakup
> related. Here is what I have gotten for errors.
> gcc -D__KERNEL__ -I/usr/src/linux/include -Wall -Wstrict-prototypes -O2 -fom
> it-frame-pointer -pipe -fno-strength-reduce -DCPU=686 -c -o init/main.o
> init/main.c
> gcc -D__KERNEL__ -I/usr/src/linux/include -Wall -Wstrict-prototypes -O2 -fom
> it-frame-pointer -pipe -fno-strength-reduce -DCPU=686 -DUTS_MACHINE='"i386"'
> -c -o init/version.o init/version.c
> make -C kernel
> make[1]: Entering directory `/usr/src/linux/kernel'
> make all_targets
> make[2]: Entering directory `/usr/src/linux/kernel'
> make[2]: Nothing to be done for `all_targets'.
> make[2]: Leaving directory `/usr/src/linux/kernel'
> make[1]: Leaving directory `/usr/src/linux/kernel'
> make -C drivers
> make[1]: Entering directory `/usr/src/linux/drivers'
> make -C block
> make[2]: Entering directory `/usr/src/linux/drivers/block'
> make all_targets
> make[3]: Entering directory `/usr/src/linux/drivers/block'
> make[3]: Nothing to be done for `all_targets'.
> make[3]: Leaving directory `/usr/src/linux/drivers/block'
> make[2]: Leaving directory `/usr/src/linux/drivers/block'
> make -C char
> make[2]: Entering directory `/usr/src/linux/drivers/char'
> make -C speakup
> make[3]: Entering directory `/usr/src/linux/drivers/char/speakup'
> make all_targets
> make[4]: Entering directory `/usr/src/linux/drivers/char/speakup'
> gcc -D__KERNEL__ -I/usr/src/linux/include -Wall -Wstrict-prototypes -O2 -fom
> it-frame-pointer -pipe -fno-strength-reduce -DCPU=686 -DSPK_BNS -DSPK_BNS
> -c -o speakup_bns.o speakup_bns.c
> make[4]: Leaving directory `/usr/src/linux/drivers/char/speakup'
> make[3]: Leaving directory `/usr/src/linux/drivers/char/speakup'
> make[2]: Leaving directory `/usr/src/linux/drivers/char'
> make[1]: Leaving directory `/usr/src/linux/drivers'
>
> Any help would be appreciated. Thanks in advance,
> Chris Schulte
>
>
>
>
> _______________________________________________
> Speakup mailing list
> Speakup@braille.uwo.ca
> http://speech.braille.uwo.ca/mailman/listinfo/speakup
--
--
Kerry Hoath: kerry@gotss.eu.org
Alternates: kerry@emusys.com.au kerry@gotss.spice.net.au or khoath@lis.net.au
ICQ UIN: 62823451
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~ UTC | newest]
Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
make errors involving speakup Chris Schulte
` Kirk Reiser
` Chris Schulte
` Jacob Schmude
` Geoff Shang
` Kerry Hoath
` Kerry Hoath
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).