public inbox for cygwin@cygwin.com
 help / color / mirror / Atom feed
* RE: Results for 2.97 20010115 (experimental) testsuite on i686-pc-cygwin
@ 2001-01-23 15:47 Billinghurst, David (CRTS)
  2001-01-23 16:18 ` Results for 2.97 20010115 (experimental) testsuite on i686-pc -cygwin Mumit Khan
                   ` (3 more replies)
  0 siblings, 4 replies; 17+ messages in thread
From: Billinghurst, David (CRTS) @ 2001-01-23 15:47 UTC (permalink / raw)
  To: 'Christian Jönsson'
  Cc: 'cygwin@sources.redhat.com'

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 1503 bytes --]

Your g77 failures are caused by linking with -lm.  Try the following patch
to usr/share/dejagnu/target.exp.  Crude, but it works.


--- target.exp.bak      Wed Jan 24 10:39:04 2001
+++ target.exp  Wed Jan 24 10:39:30 2001
@@ -471,7 +471,7 @@
        if [board_info $dest exists mathlib] {
            append add_flags " [board_info $dest mathlib]"
        } else {
-           append add_flags " -lm"
+           append add_flags ""
        }

        # This must be added here.


I see you managed to get dejagnu running with cygwin installed in c:\cygwin.
I have not been able to do this.   Did you install your own versions of
dejagnu, tcltk and expect.  If so, where did you get them from and how did
you build them?

+++++++++++++++++++++++++++++++++++++++++
(Mr) David Billinghurst
Comalco Research Centre
PO Box 316, Thomastown, Vic, Australia, 3074
Phone:	+61 3 9469 0642
FAX:	+61 3 9462 2700
Email:	David.Billinghurst@riotinto.com





> -----Original Message-----
> From:	Christian Jönsson [SMTP:chj@foi.se]
> Sent:	Wednesday, 24 January 2001 6:50
> To:	gcc-testresults
> Cc:	cygwin
> Subject:	Results for 2.97 20010115 (experimental) testsuite on
> i686-pc-cygwin
> 
> This was on an win2k/sp1 host with an up to date cygwin install.
> Root dir of cygwin install is C:\cygwin.
> 
> binutils-20001221-1
> cygwin-1.1.7-1
> dejagnu-20010117-1
> expect-20010117-1
> gcc-2.95.2-6
> tcltk-20001125-1
> 

--
Want to unsubscribe from this list?
Check out: http://cygwin.com/ml/#unsubscribe-simple

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

* RE: Results for 2.97 20010115 (experimental) testsuite on i686-pc -cygwin
  2001-01-23 15:47 Results for 2.97 20010115 (experimental) testsuite on i686-pc-cygwin Billinghurst, David (CRTS)
@ 2001-01-23 16:18 ` Mumit Khan
  2001-01-23 18:14   ` Earnie Boyd
  2001-01-23 23:26   ` Results for 2.97 20010115 (experimental) testsuite on i686-pc -cygwin Christian Jönsson
  2001-01-23 16:22 ` Christopher Faylor
                   ` (2 subsequent siblings)
  3 siblings, 2 replies; 17+ messages in thread
From: Mumit Khan @ 2001-01-23 16:18 UTC (permalink / raw)
  To: Billinghurst, David (CRTS)
  Cc: 'Christian Jönsson',
	'cygwin@sources.redhat.com'

On Tue, 23 Jan 2001, Billinghurst, David (CRTS) wrote:

> 
> I see you managed to get dejagnu running with cygwin installed in c:\cygwin.
> I have not been able to do this.   Did you install your own versions of
> dejagnu, tcltk and expect.  If so, where did you get them from and how did
> you build them?

I believe I had to set DEJAGNULIBS to c:/Cygwin/usr/share/dejagnu and 
*may* have had to set TCL_LIBRARY=c:/Cygwin/usr/share/tcl8.0 before
running `make check'.

  $ export DEJAGNULIBS=c:/Cygwin/usr/share/dejganu
  $ export TCL_LIBRARY=c:/Cygwin/usr/share/tcl8.0
  $ make check

I'll try it again this evening and see if I needed anything more. 

That said, that gets you gcc and g77 tests; for g++, you may run
into a problem in running dg.exp (it looks for "/tests.exp", which
means something is looking for POSIX-style pathnames only). Time
to start looking in Tcl to get the pathnames fixed once and for all
so that it understands Cygwin mounts correctly. 

Christian hopefully has a better way of doing this!

Regards,
Mumit




--
Want to unsubscribe from this list?
Check out: http://cygwin.com/ml/#unsubscribe-simple

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

* Re: Results for 2.97 20010115 (experimental) testsuite on i686-pc -cygwin
  2001-01-23 15:47 Results for 2.97 20010115 (experimental) testsuite on i686-pc-cygwin Billinghurst, David (CRTS)
  2001-01-23 16:18 ` Results for 2.97 20010115 (experimental) testsuite on i686-pc -cygwin Mumit Khan
@ 2001-01-23 16:22 ` Christopher Faylor
  2001-01-23 23:23 ` Results for 2.97 20010115 (experimental) testsuite on i686-pc-cygwin Christian Jönsson
  2001-01-23 23:38 ` Christian Jönsson
  3 siblings, 0 replies; 17+ messages in thread
From: Christopher Faylor @ 2001-01-23 16:22 UTC (permalink / raw)
  To: 'cygwin@cygwin.com'

On Tue, Jan 23, 2001 at 11:47:15PM -0000, Billinghurst, David (CRTS) wrote:
>Your g77 failures are caused by linking with -lm.  Try the following patch
>to usr/share/dejagnu/target.exp.  Crude, but it works.

Why does linking -lm cause problems?  It should have no effect.

cgf

--
Want to unsubscribe from this list?
Check out: http://cygwin.com/ml/#unsubscribe-simple

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

* Re: Results for 2.97 20010115 (experimental) testsuite on i686-pc -cygwin
  2001-01-23 16:18 ` Results for 2.97 20010115 (experimental) testsuite on i686-pc -cygwin Mumit Khan
@ 2001-01-23 18:14   ` Earnie Boyd
  2001-01-23 18:27     ` Tcl pathname isssues [Re: Results for 2.97 20010115 (experimental) testsuite on i686-pc -cygwin] Mumit Khan
  2001-01-23 23:26   ` Results for 2.97 20010115 (experimental) testsuite on i686-pc -cygwin Christian Jönsson
  1 sibling, 1 reply; 17+ messages in thread
From: Earnie Boyd @ 2001-01-23 18:14 UTC (permalink / raw)
  To: Mumit Khan
  Cc: Billinghurst, David,
	'Christian Jönsson',
	'cygwin

Mumit Khan wrote:

> That said, that gets you gcc and g77 tests; for g++, you may run
> into a problem in running dg.exp (it looks for "/tests.exp", which
> means something is looking for POSIX-style pathnames only). Time
> to start looking in Tcl to get the pathnames fixed once and for all
> so that it understands Cygwin mounts correctly.
>

The unix version of Tcl build with Cygwin and configured with `gcc -mno-win32'.
As a side effect, Tcl understands Cygwin paths.

Earnie.


_________________________________________________________
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com


--
Want to unsubscribe from this list?
Check out: http://cygwin.com/ml/#unsubscribe-simple

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

* Tcl pathname isssues [Re: Results for 2.97 20010115 (experimental) testsuite on i686-pc  -cygwin]
  2001-01-23 18:14   ` Earnie Boyd
@ 2001-01-23 18:27     ` Mumit Khan
  2001-01-23 18:43       ` Earnie Boyd
  0 siblings, 1 reply; 17+ messages in thread
From: Mumit Khan @ 2001-01-23 18:27 UTC (permalink / raw)
  To: 'cygwin@sources.redhat.com'

On Tue, 23 Jan 2001, Earnie Boyd wrote:

> The unix version of Tcl build with Cygwin and configured with `gcc -mno-win32'.
> As a side effect, Tcl understands Cygwin paths.

Thanks Earnie for reminding me of this! I'll have to try it out and see
what happens.

The current Cygwin Tcl port's trouble with Cygwin paths/mounts is quite
fixable IMO, and it may be a matter of doing the path/name translation 
in a different place than is done right now. I remember trying to fix 
this a *long* time ago, but ran into a Cygwin bug in resolving relative 
symlink; I belive cgf fixed when he bacame an active contributor (like 
I said, it was a long time ago), but I never moved it off the back
burner.

My memory is rather shoddy on what exactly the potential fix was and
wheter it actually fixed the problem or not, but we'll cross that
bridge later.

Regards,
Mumit



--
Want to unsubscribe from this list?
Check out: http://cygwin.com/ml/#unsubscribe-simple

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

* Re: Tcl pathname isssues [Re: Results for 2.97 20010115 (experimental) testsuite on i686-pc  -cygwin]
  2001-01-23 18:27     ` Tcl pathname isssues [Re: Results for 2.97 20010115 (experimental) testsuite on i686-pc -cygwin] Mumit Khan
@ 2001-01-23 18:43       ` Earnie Boyd
  2001-01-23 18:50         ` Christopher Faylor
  2001-01-23 20:11         ` Mumit Khan
  0 siblings, 2 replies; 17+ messages in thread
From: Earnie Boyd @ 2001-01-23 18:43 UTC (permalink / raw)
  To: Mumit Khan; +Cc: 'cygwin@sources.redhat.com'

Mumit Khan wrote:

> On Tue, 23 Jan 2001, Earnie Boyd wrote:
>
> > The unix version of Tcl build with Cygwin and configured with `gcc -mno-win32'.
> > As a side effect, Tcl understands Cygwin paths.
>
> Thanks Earnie for reminding me of this! I'll have to try it out and see
> what happens.
>
> The current Cygwin Tcl port's trouble with Cygwin paths/mounts is quite
> fixable IMO, and it may be a matter of doing the path/name translation
> in a different place than is done right now. I remember trying to fix
> this a *long* time ago, but ran into a Cygwin bug in resolving relative
> symlink; I belive cgf fixed when he bacame an active contributor (like
> I said, it was a long time ago), but I never moved it off the back
> burner.
>
> My memory is rather shoddy on what exactly the potential fix was and
> wheter it actually fixed the problem or not, but we'll cross that
> bridge later.

A few things have changed in the path recognition since you've been gone so even if
you remember exactly what it is, it is likely not to work the same.  If a path
contains a : in column 2 or contains a \ character it is now determined to be an
absolute windows path.  Chris, is this the correct wording for this feature?

Earnie.


_________________________________________________________
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com


--
Want to unsubscribe from this list?
Check out: http://cygwin.com/ml/#unsubscribe-simple

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

* Re: Tcl pathname isssues [Re: Results for 2.97 20010115 (experimental) testsuite on i686-pc  -cygwin]
  2001-01-23 18:43       ` Earnie Boyd
@ 2001-01-23 18:50         ` Christopher Faylor
  2001-01-23 20:11         ` Mumit Khan
  1 sibling, 0 replies; 17+ messages in thread
From: Christopher Faylor @ 2001-01-23 18:50 UTC (permalink / raw)
  To: 'cygwin@cygwin.com'

On Tue, Jan 23, 2001 at 09:43:34PM -0500, Earnie Boyd wrote:
>Mumit Khan wrote:
>
>> On Tue, 23 Jan 2001, Earnie Boyd wrote:
>>
>> > The unix version of Tcl build with Cygwin and configured with `gcc -mno-win32'.
>> > As a side effect, Tcl understands Cygwin paths.
>>
>> Thanks Earnie for reminding me of this! I'll have to try it out and see
>> what happens.
>>
>> The current Cygwin Tcl port's trouble with Cygwin paths/mounts is quite
>> fixable IMO, and it may be a matter of doing the path/name translation
>> in a different place than is done right now. I remember trying to fix
>> this a *long* time ago, but ran into a Cygwin bug in resolving relative
>> symlink; I belive cgf fixed when he bacame an active contributor (like
>> I said, it was a long time ago), but I never moved it off the back
>> burner.
>>
>> My memory is rather shoddy on what exactly the potential fix was and
>> wheter it actually fixed the problem or not, but we'll cross that
>> bridge later.
>
>A few things have changed in the path recognition since you've been gone so even if
>you remember exactly what it is, it is likely not to work the same.  If a path
>contains a : in column 2 or contains a \ character it is now determined to be an
>absolute windows path.  Chris, is this the correct wording for this feature?

Yep.

cgf

--
Want to unsubscribe from this list?
Check out: http://cygwin.com/ml/#unsubscribe-simple

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

* Re: Tcl pathname isssues [Re: Results for 2.97 20010115 (experimental)  testsuite on i686-pc  -cygwin]
  2001-01-23 18:43       ` Earnie Boyd
  2001-01-23 18:50         ` Christopher Faylor
@ 2001-01-23 20:11         ` Mumit Khan
  1 sibling, 0 replies; 17+ messages in thread
From: Mumit Khan @ 2001-01-23 20:11 UTC (permalink / raw)
  To: 'cygwin@sources.redhat.com'

On Tue, 23 Jan 2001, Earnie Boyd wrote:

> A few things have changed in the path recognition since you've been gone so even if
> you remember exactly what it is, it is likely not to work the same.  If a path
> contains a : in column 2 or contains a \ character it is now determined to be an
> absolute windows path.  Chris, is this the correct wording for this feature?

That's not really what I'm referring to. This is quite a few years ago,
and the problem is that we don't use Cygwin's cygwin_conv_to* API to
do the right thing. It may be Tcl_TranslateFileName where it needs to
be done, on top of the current Cygwin code bits there, but that's what
I need to investigate.

Regards,
Mumit



--
Want to unsubscribe from this list?
Check out: http://cygwin.com/ml/#unsubscribe-simple

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

* Re: Results for 2.97 20010115 (experimental) testsuite on i686-pc-cygwin
  2001-01-23 15:47 Results for 2.97 20010115 (experimental) testsuite on i686-pc-cygwin Billinghurst, David (CRTS)
  2001-01-23 16:18 ` Results for 2.97 20010115 (experimental) testsuite on i686-pc -cygwin Mumit Khan
  2001-01-23 16:22 ` Christopher Faylor
@ 2001-01-23 23:23 ` Christian Jönsson
  2001-01-23 23:38 ` Christian Jönsson
  3 siblings, 0 replies; 17+ messages in thread
From: Christian Jönsson @ 2001-01-23 23:23 UTC (permalink / raw)
  To: Billinghurst, David (CRTS); +Cc: cygwin

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 2234 bytes --]

Thanks for your tips about -lm, I saw that some weeks ago when I raised the
issue of dejagnu with cygwin-1.1.7 and GCC testsuite. I just thought I'd
make
a clean build first.

As you can see in the beginning of my e-mail, I have installed, the test
releases
available with the cygwin setup utility, of dejagnu-20010117-1 and
expect-20010117-1. The rest is "standard" cygwin.

N.B., there are two new tests passing...

Cheers,

/ChJ

----- Original Message -----
From: "Billinghurst, David (CRTS)" <David.Billinghurst@riotinto.com>
To: "'Christian Jönsson'" <chj@foi.se>
Cc: <cygwin@sources.redhat.com>
Sent: Wednesday, January 24, 2001 12:47 AM
Subject: RE: Results for 2.97 20010115 (experimental) testsuite on
i686-pc-cygwin


Your g77 failures are caused by linking with -lm.  Try the following patch
to usr/share/dejagnu/target.exp.  Crude, but it works.


--- target.exp.bak      Wed Jan 24 10:39:04 2001
+++ target.exp  Wed Jan 24 10:39:30 2001
@@ -471,7 +471,7 @@
        if [board_info $dest exists mathlib] {
            append add_flags " [board_info $dest mathlib]"
        } else {
-           append add_flags " -lm"
+           append add_flags ""
        }

        # This must be added here.


I see you managed to get dejagnu running with cygwin installed in c:\cygwin.
I have not been able to do this.   Did you install your own versions of
dejagnu, tcltk and expect.  If so, where did you get them from and how did
you build them?

+++++++++++++++++++++++++++++++++++++++++
(Mr) David Billinghurst
Comalco Research Centre
PO Box 316, Thomastown, Vic, Australia, 3074
Phone: +61 3 9469 0642
FAX: +61 3 9462 2700
Email: David.Billinghurst@riotinto.com





> -----Original Message-----
> From: Christian Jönsson [SMTP:chj@foi.se]
> Sent: Wednesday, 24 January 2001 6:50
> To: gcc-testresults
> Cc: cygwin
> Subject: Results for 2.97 20010115 (experimental) testsuite on
> i686-pc-cygwin
>
> This was on an win2k/sp1 host with an up to date cygwin install.
> Root dir of cygwin install is C:\cygwin.
>
> binutils-20001221-1
> cygwin-1.1.7-1
> dejagnu-20010117-1
> expect-20010117-1
> gcc-2.95.2-6
> tcltk-20001125-1
>



--
Want to unsubscribe from this list?
Check out: http://cygwin.com/ml/#unsubscribe-simple

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

* Re: Results for 2.97 20010115 (experimental) testsuite on i686-pc -cygwin
  2001-01-23 16:18 ` Results for 2.97 20010115 (experimental) testsuite on i686-pc -cygwin Mumit Khan
  2001-01-23 18:14   ` Earnie Boyd
@ 2001-01-23 23:26   ` Christian Jönsson
  2001-01-24  6:52     ` Christopher Faylor
  1 sibling, 1 reply; 17+ messages in thread
From: Christian Jönsson @ 2001-01-23 23:26 UTC (permalink / raw)
  To: Mumit Khan, Billinghurst, David (CRTS); +Cc: cygwin

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 1662 bytes --]

I did not set DEJAGNULIBS nor TCL_LIBRARY, I used the test releases
dejagnu-20010117-1 and expect-20010117-1 and, magic, it flies...

/ChJ

----- Original Message -----
From: "Mumit Khan" <khan@NanoTech.Wisc.EDU>
To: "Billinghurst, David (CRTS)" <David.Billinghurst@riotinto.com>
Cc: "'Christian Jönsson'" <chj@foi.se>; <cygwin@sources.redhat.com>
Sent: Wednesday, January 24, 2001 1:18 AM
Subject: RE: Results for 2.97 20010115 (experimental) testsuite on
i686-pc -cygwin


> On Tue, 23 Jan 2001, Billinghurst, David (CRTS) wrote:
>
> >
> > I see you managed to get dejagnu running with cygwin installed in
c:\cygwin.
> > I have not been able to do this.   Did you install your own versions of
> > dejagnu, tcltk and expect.  If so, where did you get them from and how
did
> > you build them?
>
> I believe I had to set DEJAGNULIBS to c:/Cygwin/usr/share/dejagnu and
> *may* have had to set TCL_LIBRARY=c:/Cygwin/usr/share/tcl8.0 before
> running `make check'.
>
>   $ export DEJAGNULIBS=c:/Cygwin/usr/share/dejganu
>   $ export TCL_LIBRARY=c:/Cygwin/usr/share/tcl8.0
>   $ make check
>
> I'll try it again this evening and see if I needed anything more.
>
> That said, that gets you gcc and g77 tests; for g++, you may run
> into a problem in running dg.exp (it looks for "/tests.exp", which
> means something is looking for POSIX-style pathnames only). Time
> to start looking in Tcl to get the pathnames fixed once and for all
> so that it understands Cygwin mounts correctly.
>
> Christian hopefully has a better way of doing this!
>
> Regards,
> Mumit
>
>
>
>


--
Want to unsubscribe from this list?
Check out: http://cygwin.com/ml/#unsubscribe-simple

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

* Re: Results for 2.97 20010115 (experimental) testsuite on i686-pc-cygwin
  2001-01-23 15:47 Results for 2.97 20010115 (experimental) testsuite on i686-pc-cygwin Billinghurst, David (CRTS)
                   ` (2 preceding siblings ...)
  2001-01-23 23:23 ` Results for 2.97 20010115 (experimental) testsuite on i686-pc-cygwin Christian Jönsson
@ 2001-01-23 23:38 ` Christian Jönsson
  2001-01-24  6:55   ` Christopher Faylor
  3 siblings, 1 reply; 17+ messages in thread
From: Christian Jönsson @ 2001-01-23 23:38 UTC (permalink / raw)
  To: Billinghurst, David (CRTS); +Cc: cygwin

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 2079 bytes --]

Perhaps your patch is "the right thing", then I would like to see it in
cygwin's dejagnu, OTOH, "-lm" is quite normal to have. Perhaps cygwin could
handle "multiple" "-lm"  as "-lcygwin" in principle is "-lm" also...

But, what the heck, I'm, just a user... :-)

Cheers,

/ChJ

----- Original Message -----
From: "Billinghurst, David (CRTS)" <David.Billinghurst@riotinto.com>
To: "'Christian Jönsson'" <chj@foi.se>
Cc: <cygwin@sources.redhat.com>
Sent: Wednesday, January 24, 2001 12:47 AM
Subject: RE: Results for 2.97 20010115 (experimental) testsuite on
i686-pc-cygwin


Your g77 failures are caused by linking with -lm.  Try the following patch
to usr/share/dejagnu/target.exp.  Crude, but it works.


--- target.exp.bak      Wed Jan 24 10:39:04 2001
+++ target.exp  Wed Jan 24 10:39:30 2001
@@ -471,7 +471,7 @@
        if [board_info $dest exists mathlib] {
            append add_flags " [board_info $dest mathlib]"
        } else {
-           append add_flags " -lm"
+           append add_flags ""
        }

        # This must be added here.


I see you managed to get dejagnu running with cygwin installed in c:\cygwin.
I have not been able to do this.   Did you install your own versions of
dejagnu, tcltk and expect.  If so, where did you get them from and how did
you build them?

+++++++++++++++++++++++++++++++++++++++++
(Mr) David Billinghurst
Comalco Research Centre
PO Box 316, Thomastown, Vic, Australia, 3074
Phone: +61 3 9469 0642
FAX: +61 3 9462 2700
Email: David.Billinghurst@riotinto.com





> -----Original Message-----
> From: Christian Jönsson [SMTP:chj@foi.se]
> Sent: Wednesday, 24 January 2001 6:50
> To: gcc-testresults
> Cc: cygwin
> Subject: Results for 2.97 20010115 (experimental) testsuite on
> i686-pc-cygwin
>
> This was on an win2k/sp1 host with an up to date cygwin install.
> Root dir of cygwin install is C:\cygwin.
>
> binutils-20001221-1
> cygwin-1.1.7-1
> dejagnu-20010117-1
> expect-20010117-1
> gcc-2.95.2-6
> tcltk-20001125-1
>



--
Want to unsubscribe from this list?
Check out: http://cygwin.com/ml/#unsubscribe-simple

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

* Re: Results for 2.97 20010115 (experimental) testsuite on i686-pc -cygwin
  2001-01-23 23:26   ` Results for 2.97 20010115 (experimental) testsuite on i686-pc -cygwin Christian Jönsson
@ 2001-01-24  6:52     ` Christopher Faylor
  0 siblings, 0 replies; 17+ messages in thread
From: Christopher Faylor @ 2001-01-24  6:52 UTC (permalink / raw)
  To: cygwin

On Wed, Jan 24, 2001 at 08:26:10AM +0100, Christian J?nsson wrote:
>I did not set DEJAGNULIBS nor TCL_LIBRARY, I used the test releases
>dejagnu-20010117-1 and expect-20010117-1 and, magic, it flies...

Thanks for trying this.  I've been meaning to announce it for a while
but I wanted to check how it worked myself first.

This is just a dejagnu/expect built from sources.redhat.com, which is
what I have been exhorting people to use for a while.

cgf

--
Want to unsubscribe from this list?
Check out: http://cygwin.com/ml/#unsubscribe-simple

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

* Re: Results for 2.97 20010115 (experimental) testsuite on i686-pc-cygwin
  2001-01-23 23:38 ` Christian Jönsson
@ 2001-01-24  6:55   ` Christopher Faylor
  2001-01-24  8:09     ` Larry Hall (RFK Partners, Inc)
  0 siblings, 1 reply; 17+ messages in thread
From: Christopher Faylor @ 2001-01-24  6:55 UTC (permalink / raw)
  To: cygwin

On Wed, Jan 24, 2001 at 08:38:52AM +0100, Christian J?nsson wrote:
>Perhaps your patch is "the right thing", then I would like to see it in
>cygwin's dejagnu, OTOH, "-lm" is quite normal to have. Perhaps cygwin could
>handle "multiple" "-lm"  as "-lcygwin" in principle is "-lm" also...
>
>But, what the heck, I'm, just a user... :-)

Wow.  I think I'm going to look into being "just a user" so that
I can relax and just offer observations, too.

cgf

--
Want to unsubscribe from this list?
Check out: http://cygwin.com/ml/#unsubscribe-simple

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

* Re: Results for 2.97 20010115 (experimental) testsuite on i686-pc-cygwin
  2001-01-24  6:55   ` Christopher Faylor
@ 2001-01-24  8:09     ` Larry Hall (RFK Partners, Inc)
  2001-01-24  9:12       ` Christopher Faylor
  0 siblings, 1 reply; 17+ messages in thread
From: Larry Hall (RFK Partners, Inc) @ 2001-01-24  8:09 UTC (permalink / raw)
  To: cygwin

At 09:55 AM 1/24/2001, Christopher Faylor wrote:
>On Wed, Jan 24, 2001 at 08:38:52AM +0100, Christian J?nsson wrote:
> >Perhaps your patch is "the right thing", then I would like to see it in
> >cygwin's dejagnu, OTOH, "-lm" is quite normal to have. Perhaps cygwin could
> >handle "multiple" "-lm"  as "-lcygwin" in principle is "-lm" also...
> >
> >But, what the heck, I'm, just a user... :-)
>
>Wow.  I think I'm going to look into being "just a user" so that
>I can relax and just offer observations, too.
>
>cgf



Sorry Chris.  Once you're not "just a user", you can never go back to being
"just a user".  Its just one of those little ironies of life.  Its kind of 
like a tatoo.;-) 


Larry Hall                              lhall@rfk.com
RFK Partners, Inc.                      http://www.rfk.com
118 Washington Street                   (508) 893-9779 - RFK Office
Holliston, MA 01746                     (508) 893-9889 - FAX



--
Want to unsubscribe from this list?
Check out: http://cygwin.com/ml/#unsubscribe-simple

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

* Re: Results for 2.97 20010115 (experimental) testsuite on i686-pc-cygwin
  2001-01-24  8:09     ` Larry Hall (RFK Partners, Inc)
@ 2001-01-24  9:12       ` Christopher Faylor
  0 siblings, 0 replies; 17+ messages in thread
From: Christopher Faylor @ 2001-01-24  9:12 UTC (permalink / raw)
  To: cygwin

On Wed, Jan 24, 2001 at 11:05:04AM -0500, Larry Hall (RFK Partners, Inc) wrote:
>At 09:55 AM 1/24/2001, Christopher Faylor wrote:
>>On Wed, Jan 24, 2001 at 08:38:52AM +0100, Christian J?nsson wrote:
>> >Perhaps your patch is "the right thing", then I would like to see it in
>> >cygwin's dejagnu, OTOH, "-lm" is quite normal to have. Perhaps cygwin could
>> >handle "multiple" "-lm"  as "-lcygwin" in principle is "-lm" also...
>> >
>> >But, what the heck, I'm, just a user... :-)
>>
>>Wow.  I think I'm going to look into being "just a user" so that
>>I can relax and just offer observations, too.
>
>Sorry Chris.  Once you're not "just a user", you can never go back to being
>"just a user".  Its just one of those little ironies of life.  Its kind of 
>like a tatoo.;-) 

I knew I never should have gotten that "Cygwin inside a heart" tatoo...

cgf

--
Want to unsubscribe from this list?
Check out: http://cygwin.com/ml/#unsubscribe-simple

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

* Re: Results for 2.97 20010115 (experimental) testsuite on i686-pc -cygwin
  2001-01-23 16:39 Results for 2.97 20010115 (experimental) testsuite on i686-pc -cygwin Billinghurst, David (CRTS)
@ 2001-01-23 18:11 ` Christopher Faylor
  0 siblings, 0 replies; 17+ messages in thread
From: Christopher Faylor @ 2001-01-23 18:11 UTC (permalink / raw)
  To: 'cygwin@cygwin.com'

On Wed, Jan 24, 2001 at 12:38:56AM -0000, Billinghurst, David (CRTS) wrote:
>See http://sources.redhat.com/ml/cygwin/2001-01/msg00008.html

I guess I was vainly hoping that someone would actually debug the
problem or offer insight into the reason for the problem rather than
saying "Just remove -lm! Works for me!"

Sorry.  I forgot what group I was sending email to.

cgf

>> -----Original Message-----
>> From:	Christopher Faylor [SMTP:cgf@redhat.com]
>> Sent:	Wednesday, 24 January 2001 11:22
>> To:	'cygwin@cygwin.com'
>> Subject:	Re: Results for 2.97 20010115 (experimental) testsuite on
>> i686-pc -cygwin
>> 
>> On Tue, Jan 23, 2001 at 11:47:15PM -0000, Billinghurst, David (CRTS)
>> wrote:
>> >Your g77 failures are caused by linking with -lm.  Try the following
>> patch
>> >to usr/share/dejagnu/target.exp.  Crude, but it works.
>> 
>> Why does linking -lm cause problems?  It should have no effect.

--
Want to unsubscribe from this list?
Check out: http://cygwin.com/ml/#unsubscribe-simple

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

* RE: Results for 2.97 20010115 (experimental) testsuite on i686-pc -cygwin
@ 2001-01-23 16:39 Billinghurst, David (CRTS)
  2001-01-23 18:11 ` Christopher Faylor
  0 siblings, 1 reply; 17+ messages in thread
From: Billinghurst, David (CRTS) @ 2001-01-23 16:39 UTC (permalink / raw)
  To: 'cygwin@cygwin.com'

See http://sources.redhat.com/ml/cygwin/2001-01/msg00008.html

> -----Original Message-----
> From:	Christopher Faylor [SMTP:cgf@redhat.com]
> Sent:	Wednesday, 24 January 2001 11:22
> To:	'cygwin@cygwin.com'
> Subject:	Re: Results for 2.97 20010115 (experimental) testsuite on
> i686-pc -cygwin
> 
> On Tue, Jan 23, 2001 at 11:47:15PM -0000, Billinghurst, David (CRTS)
> wrote:
> >Your g77 failures are caused by linking with -lm.  Try the following
> patch
> >to usr/share/dejagnu/target.exp.  Crude, but it works.
> 
> Why does linking -lm cause problems?  It should have no effect.
> 
> cgf
> 
> --
> Want to unsubscribe from this list?
> Check out: http://cygwin.com/ml/#unsubscribe-simple

--
Want to unsubscribe from this list?
Check out: http://cygwin.com/ml/#unsubscribe-simple

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

end of thread, other threads:[~2001-01-24  9:12 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2001-01-23 15:47 Results for 2.97 20010115 (experimental) testsuite on i686-pc-cygwin Billinghurst, David (CRTS)
2001-01-23 16:18 ` Results for 2.97 20010115 (experimental) testsuite on i686-pc -cygwin Mumit Khan
2001-01-23 18:14   ` Earnie Boyd
2001-01-23 18:27     ` Tcl pathname isssues [Re: Results for 2.97 20010115 (experimental) testsuite on i686-pc -cygwin] Mumit Khan
2001-01-23 18:43       ` Earnie Boyd
2001-01-23 18:50         ` Christopher Faylor
2001-01-23 20:11         ` Mumit Khan
2001-01-23 23:26   ` Results for 2.97 20010115 (experimental) testsuite on i686-pc -cygwin Christian Jönsson
2001-01-24  6:52     ` Christopher Faylor
2001-01-23 16:22 ` Christopher Faylor
2001-01-23 23:23 ` Results for 2.97 20010115 (experimental) testsuite on i686-pc-cygwin Christian Jönsson
2001-01-23 23:38 ` Christian Jönsson
2001-01-24  6:55   ` Christopher Faylor
2001-01-24  8:09     ` Larry Hall (RFK Partners, Inc)
2001-01-24  9:12       ` Christopher Faylor
2001-01-23 16:39 Results for 2.97 20010115 (experimental) testsuite on i686-pc -cygwin Billinghurst, David (CRTS)
2001-01-23 18:11 ` Christopher Faylor

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).