Re: Compiling problem

2009-08-15 Thread Bob Cowdery
David I run the other way around at the moment, Vista VM under Ubuntu. For production it's a definite possibility to do as you say but there is I/O involved that may not work too great on a VM so a lot of testing is required and timescales are as usual too short. Regards Bob David Christens

Re: Compiling problem

2009-08-15 Thread Bob Cowdery
Dave Thank you very much. I shall not forget -v now. It told me straight away that I had stupidly forgotten to install the cygwin gcc but did have MinGW gcc on the path which of course only understands Windows paths. Regards Bob Dave Korn wrote: Bob Cowdery wrote: Either I'm too impatie

RE: Compiling problem

2009-08-15 Thread David Christensen
Bob Cowdery wrote: > My end game was to install Cython and compile up some Python stuff > which was written on Linux but needs to run on Windows. There are lots > of shell scripts involved and the complete system does not lend itself > to running native, hence the short-term need to run under Cy

Re: Compiling problem

2009-08-15 Thread Dave Korn
Bob Cowdery wrote: > Either I'm too impatient, the question is too trivial for people to > bother with or too complex or lacking information to be answerable. As > I've not posted to this group before and have hardly used Cygwin I've no > idea which of the above is true. Anybody... please. Compl

Re: Compiling problem

2009-08-15 Thread Bob Cowdery
Either I'm too impatient, the question is too trivial for people to bother with or too complex or lacking information to be answerable. As I've not posted to this group before and have hardly used Cygwin I've no idea which of the above is true. Anybody... please. Bob Bob Cowdery wrote: Hi I

Compiling problem

2009-08-14 Thread Bob Cowdery
Hi I seem to be having some fairly fundamental problems which must be finger trouble. My end game was to install Cython and compile up some Python stuff which was written on Linux but needs to run on Windows. There are lots of shell scripts involved and the complete system does not lend itse

RE: g77 compiling problem

2003-12-18 Thread Charles D. Russell
The default directory is not in your path by default unless you put it there, for example in your .profile file. I put it in mine -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/doc

RE: g77 compiling problem

2003-12-18 Thread Larry Hall
age- >From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf >Of [EMAIL PROTECTED] >Sent: Thursday, December 18, 2003 1:11 PM >To: [EMAIL PROTECTED]; [EMAIL PROTECTED] >Subject: RE: g77 compiling problem > > >Perhaps it is not in your PATH > >try: > >./a.ex

RE: g77 compiling problem

2003-12-18 Thread Kevin Ison
PROTECTED] Subject: RE: g77 compiling problem Perhaps it is not in your PATH try: ./a.exe -Original Message- From: Martin PLUS [mailto:[EMAIL PROTECTED] Sent: Thursday, December 18, 2003 1:04 PM To: [EMAIL PROTECTED] Subject: g77 compiling problem Dear cygwin-list, Sorry

RE: g77 compiling problem

2003-12-18 Thread SMore
Perhaps it is not in your PATH try: ./a.exe -Original Message- From: Martin PLUS [mailto:[EMAIL PROTECTED] Sent: Thursday, December 18, 2003 1:04 PM To: [EMAIL PROTECTED] Subject: g77 compiling problem Dear cygwin-list, Sorry if this question has been already sent, but I

g77 compiling problem

2003-12-18 Thread Martin PLUS
Dear cygwin-list, Sorry if this question has been already sent, but I am very new to the list ! I also went to the FAQ and did not find this one: I can't run a fortran-program that has been compiled with g77, even if the compilation was successfull: $ ls toto.f $ g77 toto.f $ ls toto.f a.exe $

Re: RE: win32api_NtQuerySystemInformation compiling problem

2003-06-07 Thread Alex Pyltsov
Hi, Chris! Fri, Jun 06, 2003 at 11:47:14PM +0100, chris wrote: > > Hi, I've just try to use native w32api function NtQuerySystemInformation, > > but linker fail with following. Is this something trivial I am missing? > > You forgot -lntdll It gives the same error :( -- Alex Pyltsov -- Un

RE: win32api_NtQuerySystemInformation compiling problem

2003-06-06 Thread Chris January
> Hi, I've just try to use native w32api function NtQuerySystemInformation, > but linker fail with following. Is this something trivial I am missing? You forgot -lntdll Chris -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.ht

win32api_NtQuerySystemInformation compiling problem

2003-06-06 Thread Alex Pyltsov
Hi, I've just try to use native w32api function NtQuerySystemInformation, but linker fail with following. Is this something trivial I am missing? Thanks for any help. > cat test.c #include #include int main(void) { char buf[65535]; int len; NtQuerySystemInformation(5,buf,65535,&len); re

Re: Re: Re: help for compiling problem!

2003-01-06 Thread Christopher Faylor
On Tue, Jan 07, 2003 at 02:08:14AM +0800, Irving Lee wrote: >r u sure? s i m. cgf -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug reporting: http://cygwin.com/bugs.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/

Re: Re: Re: help for compiling problem!

2003-01-06 Thread Irving Lee
r u sure? if cygwin does not suport setlinbuf, why i can find the definition in the header file as: \usr\include\stdio.h(239):int _EXFUN(setlinebuf, (FILE *)); anyway, thanks >On Sun, Jan 05, 2003 at 10:53:20PM -0800, Elfyn McBratney wrote: >>>next job is to produce the symbolic soft qepcad

Re: Re: help for compiling problem!

2003-01-06 Thread Dave Hooper
>>As a follow up to this, and the earlier thread regarding icmp (which >>presumably is resolved in the same way), would it not be "better" to add >>support for the icmp function and setlinebuf to cygwin? > > What are you suggesting? That there should be an eager team of > engineers standing by wai

Re: Re: help for compiling problem!

2003-01-06 Thread Christopher Faylor
On Mon, Jan 06, 2003 at 04:18:57PM -, Dave Hooper wrote: error: main.c: undefined reference to '_setlinebuf' >>> >> cygwin doesn't provide setlinebuf. >> In general what this means is that you have to actually "inspect" the >> code and "port it" > >As a follow up to this, and the earlier t

RE: Re: help for compiling problem!

2003-01-06 Thread Vince Hoffman
my 1.24 pence (approx 2 cents) vince > -Original Message- > From: Dave Hooper [mailto:[EMAIL PROTECTED]] > Sent: 06 January 2003 16:19 > To: [EMAIL PROTECTED] > Subject: Re: Re: help for compiling problem! > > > >>>error: main.c: undefined reference to &

Re: Re: help for compiling problem!

2003-01-06 Thread Dave Hooper
>>>error: main.c: undefined reference to '_setlinebuf' >> > cygwin doesn't provide setlinebuf. > In general what this means is that you have to actually "inspect" the > code and "port it" As a follow up to this, and the earlier thread regarding icmp (which presumably is resolved in the same way),

Re: Re: help for compiling problem!

2003-01-06 Thread Christopher Faylor
On Sun, Jan 05, 2003 at 10:53:20PM -0800, Elfyn McBratney wrote: >>next job is to produce the symbolic soft qepcad. but the undefined >>reference error comes up. any suggestions. >> >>error: main.c: undefined reference to '_setlinebuf' > >Does main.c include stdio.h? stdio.h (in /usr/include) is w

Re: Re: help for compiling problem!

2003-01-06 Thread hybin
sure. compileing passes and linking fails. i guess link cannot locate the proper lib. but how? >next job is to produce the symbolic soft qepcad. but the undefined >reference error comes up. any suggestions. > >error: main.c: undefined reference to '_setlinebuf' Does main.c include

Re: Re: help for compiling problem!

2003-01-05 Thread Elfyn McBratney
>next job is to produce the symbolic soft qepcad. but the undefined >reference error comes up. any suggestions. > >error: main.c: undefined reference to '_setlinebuf' Does main.c include stdio.h? stdio.h (in /usr/include) is where setlinebuf() is defined. Oh no, someone has chopped up Igor's jag

Re: Re: help for compiling problem!

2003-01-05 Thread hybin
hanks. after a sleepness night, i got the saclibo.a and saclibd.a. if u want it, i can send u asap. next job is to produce the symbolic soft qepcad. but the undefined reference error comes up. any suggestions. error: main.c: undefined reference to '_setlinebuf' >O

Re: help for compiling problem!

2003-01-05 Thread Igor Pechtchanski
On Sun, 5 Jan 2003, hybin wrote: > hi list > > im confused when compiling the software saclib v2.1 for unix following > the manual and got the messeage: > > cannot find the header file ucontext.h > > i copy one from the freeBSD, unfortunately it doesnot work. > > how can i do now? > > thanks!! No

help for compiling problem!

2003-01-05 Thread hybin
hi list im confused when compiling the software saclib v2.1 for unix following the manual and got the messeage: cannot find the header file ucontext.h i copy one from the freeBSD, unfortunately it doesnot work. how can i do now? thanks!! __

Compiling Problem under gcc version 2.95.3-5!!

2001-12-18 Thread JOSE (GRI)
Hi: I've installed cygwin 1.3.5 under w2k . I've installed them in a network shared drive. It's shared from a Samba server. I tried to compile some sources, and I get this error: 0 [main] c++ 544 proc_subproc: Couldn't duplicate my handle<0x30> for pid 320, Win32 error 6 What does it me