Re: setup-x86.exe default view

2017-05-18 Thread Ted To
Hi Andrey, Unfortunately it defaults to "Pending" and does not remember when I set it to "Category." The next question is: If it did remember, where would that be? I.e., what file do I edit to make it default to "Category"? Thanks, Ted On 05/18/201

setup-x86.exe default view

2017-05-18 Thread Ted To
Hi, It used to be the case that the default view for setup-x86.exe was "Category". How does one restore this behavior? My first guess was an option in /etc/setup/setup.rc but there seems to be no documentation on this. Thanks, Ted To -- Problem reports: http://

Xemacs 21.5.28-3 No Longer Available

2015-04-12 Thread Ted Elkind
I've been using Xemacs 21.5 because it fixes several problems in version 21.4. I recently had to reinstall Cygwin and found that Xemacs 21.5 is no longer listed. It used to be available in the 32-bit version of Cygwin after clicking on the "Exp" option in the upper right. The exact version was 2

Re: error while loading shared libraries: ?: cannot open shared object file: No such file or directory

2012-03-13 Thread Ted
Ted gmail.com> writes: Problem solved. It turned out that my anti-virus software updated itself and they added a sandbox feature that malfunctioned in a way that all my cygwin programs, and only those, failed in the way I described. -- Problem reports: http://cygwin.com/problems.h

Re: error while loading shared libraries: ?: cannot open shared object file: No such file or directory

2012-03-13 Thread Ted
marco atzeri gmail.com> writes: > Hi Marco, Thanks. > On 3/13/2012 11:10 PM, Ted wrote: > > I see this error in 3 different products either so I can use them, or > > develop > > them. > > [big snip] > > you forgot this point: > > Problem report

Re: How do I run a program compiled in cygwin from a program that is running in a Windows CMD shell?

2011-09-15 Thread Ted Byers
d be identified as something the cross compilers depend on. I do know that that dll is not to ne found on any of my machines. I guess I may have to live with the cygwin/bin directory being added at the end of the PATH environmental variable. Thanks Ted -- Problem reports: ht

Re: How do I run a program compiled in cygwin from a program that is running in a Windows CMD shell?

2011-09-15 Thread Ted Byers
Larry Hall (Cygwin cygwin.com> writes: > > On 9/15/2011 1:28 PM, Ted Byers wrote: > > LMH molconn.com> writes: > > > > > What, exactly, does '-mno-cygwin' do? > > > > BTW: With gcc v 4.5.3, using 'G++ -mno-cygwin' followed by

Re: How do I run a program compiled in cygwin from a program that is running in a Windows CMD shell?

2011-09-15 Thread Ted Byers
couldn't figure out how to use bash to launch my program so that is knows about that change (i.e. so the child program sees an environment that it would see if executed within a bash session I'd launched. But if the program can be compiled so that it doesn't need tha

Re: How do I run a program compiled in cygwin from a program that is running in a Windows CMD shell?

2011-09-15 Thread Ted Byers
ng MSVC++, then it runs fine and produces the following output: Compilation started at Thu Sep 15 08:38:28 C:/Perl64/bin\perl.exe -w c:/cygwin/home/Ted/Work/test.cygwin.perl.pl Valuation date =February 6th, 2011 Option type = Put

How do I run a program compiled in cygwin from a program that is running in a Windows CMD shell?

2011-09-14 Thread Ted Byers
the program so it doesn't need to run within cygwin's bash. I have other tools that let me do that if I must. Rather, I want to make a child process that has the cygwin environemt even though the parent process does not. Thanks Ted -- Problem reports:

function exported from DLL compiled under Cygwin

2004-05-17 Thread Yu, Ted
I exported the following function from DLL produced by Cygwin: extern "C" int ted( float *data, int rows, int cols ) { return cols; } When I called this function from MSVC, I got exception. When I tried to initialize _impure_ptr in entry function, ld complained: djbfft2d.o

Re: Calling g77 FORTRAN code from MSVC 7?

2004-05-16 Thread Ted Yu
Hi, My DLL produced by Cygwin calls malloc (in cygwin1.dll). This DLL is used by MSVC project. Is this allowed ? What do I need to do to initialize Cygwin heap ? __ Do you Yahoo!? SBC Yahoo! - Internet access at a great low price. http://p

Cygwin runtime

2004-05-05 Thread Ted Yu
Hi, This is related to Cygwin DLL posts. If I stick to Cygwin runtime, I should be able to call DLL generated by Cygwin from MSVC project. For the moment, I encounter exception calling into this DLL: 000f77d0() fft_general_0(float * 0x02e60040, int 256, int 512, int 1) line 163 + 17 bytes bpcorr(co

RE: DLL generation under Cygwin

2004-05-05 Thread Ted Yu
Hi, Igor: > . This is what you invoke when > you give the > -mno-cygwin flag to gcc. Incidentally, once you Does this mean I need to install MinGW runtime ? > That's because you use "ld" instead of "gcc". "gcc" > (with appropriate > flags, i.e., "-mno-cygwin") should do the

RE: DLL generation under Cygwin

2004-05-05 Thread Ted Yu
Hi, Igor: > So does MSVCRT.dll, which is what MinGW uses for its > runtime. I am not familiar with MinGW. What is it ? > Why are you linking in libc.a explicitly? The > appropriate version should > be automatically linked in by the compiler. If I omit libc.a, I get this: ld: warning: cannot find

RE: DLL generation under Cygwin

2004-05-05 Thread Ted Yu
Hi, I deleted .o files and compiled with -mno-cygwin. cygwin1.dll is still needed because it contains malloc() and free() which are used in my DLL. Here is my Makefile: OBJS = \ 8d0.o 8d1.o 8d2.o \ 8c0.o 8c1.o 8c2.o \ 8r0.o 8r1.o 8r2.o \ 8u0.o 8u1.o 8u2.o \ 8

Re: DLL generation under Cygwin

2004-05-04 Thread Ted Yu
Hi, Larry: If I use your flag, I got the following: ld: warning: cannot find entry symbol [EMAIL PROTECTED]; defaulting to 10001000 djbfft2d.o(.text+0x4d3):djbfft2d.cpp: undefined reference to `_imp___iob' djbfft2d.o(.text+0x50a):djbfft2d.cpp: undefined reference to `_imp___iob' BTW, I have this f

DLL generation under Cygwin

2004-05-04 Thread Ted Yu
Hi, Here is some information on exception: if (!hFFT) { hFFT = LoadLibrary("djbfft.dll"); status = GetLastError();// 998 invalid memory access rfour2d = (RFOUR2D) GetProcAddress(hFFT, "rfft2d_djb");