|
Let's say I have an application which I compiled under cygwin, and I want to distribute that application without having the user to install cygwin. Would it be enough to package the executable and the cygwin DLL?
Started by Robby Jones on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Does your application actually need any Cygwin provided Posix emulation....
Be sure to install the Cygwin DLL in a public location though (Windows\System32 an all platforms if cygwin would need a different or newer dll.
Normally, yes.
|
|
For my Programming 102 class we are asked to deliver C code that compiles and runs under Linux. I don't have enough spare space on my hard drive to install Linux alongside Windows, and so I use cygwin to compile my programs.
The most recent program I ...
Started by bob esponja on
, 12 posts
by 12 people.
Answer Snippets (Read the full thread at stackoverflow):
Cygwin's version of gcc may have other default flags and tweaked settings (wchar_t being 2 bytes reasons why you might have appeared to be ....
I haven't heard of anything specific about GCC weirdness under Cygwin but in your case it would.
|
|
I am new to cygwin..what are the normal steps that are followed while setting classpath and all for running programs in cygwin?
Started by Anakha on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
If I'm not mistaken, Cygwin inherits the Classpath settings Windows and Cygwin should be....
Here is a guide to convert between Unix and Windows paths in Cygwin , using the cygpath util.
Windows paths, your Cygwin talks UNIX).
|
Ask your Facebook Friends
|
I have installed cygwin on window to start crawling. It work well. Now i want to run cygwin and run a crawl program at starting of cygwin using java program code.
If you provide some code for it ,it will be great help for me.
Started by prakash.panjwani on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Does....
I mean, I like Cygwin a lot in is a link to a Related question 'How can I run cygwin from Java?'
Who's putting the cart before the horse? I don't know.
It seems like a world of trouble awaits you down this path .
At adatapost's link.
|
|
I use the VS2008 command prompt for builds, TFS access etc. and the cygwin prompt for grep, vi and unix-like tools. Is there any way I can 'import' the vcvars32.bat functionality into the cygwin environment so I can call "tfs checkout" from cygwin itself...
Started by Agnel Kurian on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You can speed:\cygwin\bin @REM bash --login....
Note you have to compile from a cygwin bash shell, to use vcvars32, first run a DOS shell, then run vcvars32.bat, then run cygwin.bat from the directory where you installed cygwin.
For you.
|
|
I want to start nutch from Java. How can I start cygwin from a Java program?
Started by Sunil on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Take a look at the Cygwin....
Rather than use Java to start Cygwin in order to invoke nutch you should probably look API."
You can use any Cygwin program without passing thru Cygwin, just like any regular Windows Console Application.
|
|
How do you compile java progrmas in cygwin?
Started by Anakha on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
When ....
Cygwin & mintty combo rocks compared to windows cmd.
With javac , as normal - alternatively using something like Ant which works under cygwin, with some what you've tried and what went wrong?
Maven works also right out of the box.
|
|
Is it possible to compile and run OpenGL programs from under Cygwin? If yes, how?
Started by Ashwin on
, 5 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
To compile and run....
If not, visit cygwin.com and install it.
I assume you have Cygwin installed.
It is mandatory reading for OpenGL anyway.
I illustrate the basic steps here ).
It is possible to compile and run OpenGL programs under Cygwin.
|
|
I have a process I spawn with a Cygwin shell script, and I am unable to kill it with the kill command. Even with the Cygwin kill with the -f option, I get this message:
kill: couldn't open pid 1234
I would like to try to kill it with PsKill , but I cannot...
Started by Jazz on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Have you tried running the cygwin kill instead of the bash builtin? If it is a Windows PID then type:
/bin/kill -f 1234
or if it is a Cygwin PID then type:
/bin/kill -9 1234
As far as I know there is no API to Cygwin that you could....
|
|
I have at least one cygwin shell open all the time, when on windows machine. Any msys users out there? Why would anyone use msys over cygwin (except for building win executables)?
Started by luntain on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
The main difference between mingw and cygwin is that mingw builds win32 binaries....
From what I can tell, MSYS subsystem" like cygwin (including a package manager!).
Great stuff.
No answer, but I don't think I could live without cygwin.
|