Click here to Skip to main content
15,914,419 members
Everything / Cygwin

Cygwin

Cygwin

Great Reads

by Thiru Thirunavukarasu
How to use WinMerge to view diffs with Git under Cygwin
by Alex J Lennon
A refreshed article on how to build the current release of Mono on Windows
by Ryan Krage, Binfeng Yuan
Display Infobright/MySQL Database Statistics in C++
by Alex J Lennon
A refreshed article on how to build the older releases of Mono on Windows

Latest Articles

by Robert Crockett
Use safe Destructive Editing techniques to load a SQLITE table
by Alex J Lennon
A refreshed article on how to build the current release of Mono on Windows
by Alex J Lennon
A refreshed article on how to build the older releases of Mono on Windows
by RizviHasan
A comparison

All Articles

Sort by Score

Cygwin 

10 Apr 2013 by CPallini
Quote:std::shared_ptr p(new Person("Scott", 25));It should bestd::shared_ptr p(new Person("Scott", 25));shouldn't it?The following code compiles (and runs) fine (Visual C++ Express 2010):#include #include class Person{ int age; const char *...
10 Apr 2013 by Orjan Westin
std::shared_ptr is a C++11 addition. (It was in Technical Report 1, published in 2007. VC++ 2010 included it in since it was well known it would become part of the standard, but strictly speaking it should have been left in the tr1 namespace.)If your compiler doesn't support C++11,...
1 Jul 2010 by Thiru Thirunavukarasu
How to use WinMerge to view diffs with Git under Cygwin
28 Aug 2010 by LloydA111
Tried just installing it and seeing what happens?
8 Dec 2010 by tanujm
I have installed Cygwin on my system and tried to install one module called GMP libs using my cygwin. So while installing using cygwin I got the following error message:$ ./configurechecking build system type... i686-pc-cygwinchecking host system type... i686-pc-cygwinchecking for a...
14 Dec 2010 by Curtis Schlak.
Try How to Install GCC 4.3.0[^]. It worked for me back when I used Windows as a primary development platform.
16 Feb 2011 by tanujm
so while installing Cygwin , u can include the packages which you want , at that time i used default options so GCC was not there in that package .while installing cygwin , don't forget to include the gcc compiler package. :) :)
12 May 2011 by Member 7919447
Hi,I am building ACE 6.0.1 using cl.exe from visual studio 9.0 usingcygwin and I get the following error:rc -I.. -fo .shobj/ace.rc.obj ace.rcrc: bad option: -.make[2]: *** [.shobj/ace.rc.obj] Error 1I have RC 1.7.1-1 installed on my cygwinanybody got a clue?Thanks
16 May 2011 by Richard MacCutchan
I think you need a file similar to the following with the same name as your project and the extension .manifest: type="win32" name="your project name" processorArchitecture="x86" version="1.0.0.0" /> your description here.
21 Jun 2011 by mshamsuddeen2
I have two programs, a simple notepad application that i made using vb 2008, and (moses) which is an open source statistical machine translation program that i have compiled in windows using cygwin. How can i send commands from my vb application to the moses which runs using cygwin? P.S The...
24 Jun 2011 by Graham Shanks
Use Inter-Process Communications (IPC) - this article[^] specifies the standard Windows IPC mechanisms and gives C++ implementations.I think that named pipes would be a good bet - they are available in VB[^] as well.
25 Dec 2011 by Chuck O'Toole
You did not show the definition of buffer but I assuming it is an array of char or a char *. In either event, your name field of the struct is an int. You cannot use strcmp() to compare these two dissimilar types.Either store the data from your file as chars or convert the incoming buffer...
10 Apr 2013 by AsthaS
I am trying my hands on the smart pointers in c++. I have included header file in my code but my code is giving me error saying "unable to resolve identifier" on the line std::shared_ptr p(new Person("Scott", 25));Where Person is a class that i have created in my code.Please can...
4 Jun 2013 by Paul Hayman
Hi there,I'm using Cygwin to sort a csv file, but I can't get it to ignore the header any ideas?sort -t',' -k5,2 c:\tmp\CI-tosplit.csv > c:\tmp\CI-DEN-sorted.csv-t"," - seperator-k5 column ,2 I thought meant start at line 2 but I guess i'm wrong.
4 Jun 2013 by CHill60
Try tail -n 2 c:\tmp\CI-tosplit.csv | sort -t',' -k5 c:\tmp\CI-tosplit.csv > c:\tmp\CI-DEN-sorted.csv to start from line 2{Edit - took out the ,2 ... too cut&paste keen!]
2 Aug 2013 by Pavan Patle
It give a Message that, "The requested resource is not available" But I have Integrated already solr with Tomcat6.0
1 Oct 2013 by Alimjan Yasin
I want to debug a automake c project. and I am doing it with Cygwin in windows.I can compile it correctly, by doing aclocalautomake --add-missingautoreconf./configuremakefor use gdb debugger, I want to generate debug , so I did like..../configure CFALGS=-g3 (or...
2 Oct 2013 by Alimjan Yasin
I found the problem,gbd .lib/slim.exeworked. The debug version is there.
2 Oct 2013 by Alimjan Yasin
I am using gdb for debugging c project source code.I compile as shown: ./configure --enable-debug CFLAGS="-g -o0" make --debug=aI want to debugging stop at specific file. so when I set break point by using (gdb) break main.c:672it says : No source file...
20 Nov 2013 by Member 10416297
I also download GNU Make package but my cygwin terminal could not found makewhat is the wrong point?p.s. sorry for bad English
15 Jan 2014 by Member 10428649
I installed "cygwin X11" and found "X11R6" ..but the bin does not contain "startxwin.bat " .. I installed some files that support cygwin to work with X11... please let me know how to setup this so that i can work with Hadoop
18 Mar 2014 by bling
Like Jochen says - your question is very sparse. The termios code looks legit.Here are some suggestions:1. make the device name a command line parameter eg. use argv[1] instead of a literal.2. don't print anything when the read returns zero bytes.3. don't print a string that...
9 Dec 2014 by Henri Aghaei
I have a folder includes many c++, c, h, object files as well as a MakeFile. So, I used Cygwin as well as MinGW to create an executable file namely calibrator.exe.So, I address the target folder and type in "make all". On both MinGW and CygWin got the following errors.CygWin:g++ -O3...
26 Mar 2015 by anug1
I have set the variables like export GTK_BASEPATH=/cygdrive/c/gtkexport LIB=$GTK_BASEPATH/libexport PKG_CONFIG_PATH=$GTK_BASEPATH/lib/pkgconfigto use GTK for GUI interface . Please let me know if i am doing wrong...
27 Mar 2015 by KarstenK
Looks like you should reading Cygwin User's Guide.Tip: work trough the samples ;-)
15 May 2015 by Member 11694565
I am trying to set hadoop in single-cluster node. And I need to create tables in hive and hbase inorder to handle the tables using c#.I have cygwin,hadoop-1.2.1 and hive-1.1.0 on windows 7 32bit.Running hadoop, it gives "Warning: $HADOOP_HOME is deprecated." still it works!!But when...
8 Mar 2016 by Shivangi_K
I have recently downloaded netbeans 8.1 for my 64bit computer, I plan to use it for c/c++ projects. I also downloaded cygwin64 tool for compilation. I followed every step for the tutorial and changed the env variable path to the bin of cygwin, however, my Netbeans cannot recognize standard...
20 Nov 2017 by forest-321
Hi, friends. I'm going to call the dll compiled with cygwin at MFC application. I could not find the correct way. What I have tried: For example, My dll's header file is following: #ifndef _MYDLL_H_ #ifdef __cplusplus extern "C" { #endif extern int(* fn_err_msg)(const char*, int type); ...
12 Sep 2017 by forest-321
Hi, all! There are 2 applications on windows: a application compiled with cygwin, a MFC application. How to communicate between two processes? Here, main process is MFC application, sub process is the application compiled with cygwin. Thanks. What I have tried: I can't use PostMessage, pipe,...
20 Nov 2017 by KarstenK
As I understand your code the problem is in the fn_init_engine() function and it will be in thread start of handle_alarm_management startup. Write some output. Normally you should debug it when both binaries are a debug build. In my "little knowing" about cygwin I only know that MFC and...
15 Aug 2018 by KeyurKelkar
Hello I am running a Rhel 7 host, and Wine. I need to open an interactive bash shell from inside Wine, the aim being to open a R executable from the Rhel host. Wine seems to be forking commands and closing immediately and so unable to keep an interactive window open. Cheers, What I have...
15 Aug 2018 by KeyurKelkar
Hello, I am trying to open an interactive session of R from Wine. I need to run R from the Rhel7 host as I have recompiled it specifically for my purpose. I am having trouble with (1) Opening R in the host from Wine, by way of commands, and (2) ensuring that R from the Rhel7 host is kept open...
15 Aug 2018 by Richard MacCutchan
Please do not repost the same question, you already asked this at How to open an interactive bash shell from wine (in RHEL7)[^]
17 Oct 2014 by Alex J Lennon
A refreshed article on how to build the current release of Mono on Windows
24 Jul 2012 by Ryan Krage, Binfeng Yuan
Display Infobright/MySQL Database Statistics in C++
8 Sep 2014 by Alex J Lennon
A refreshed article on how to build the older releases of Mono on Windows
16 May 2011 by Member 7919447
Hi,I am building ACE + TAO 6.0.1 for windows using cygwin and the ACE makefiles with visual studio 2008 compiler.Everything is fine and dandy except for the debug versions - first the linker couldn't find msvcr90d so I added is to the path, but now the error is that is can't find the...
11 Mar 2014 by Member 10387773
Hi Everyone,I have a an asp.net application which uses cygwin to execute shell scripts in Windows environment.sqlcmd utility is used in these shell scripts.The sqlcmd utility works fine when directly invoked from the .net application or when the script is directly executed at the Cygwin...
9 Oct 2012 by RizviHasan
A comparison
18 Jul 2018 by Robert Crockett
Use safe Destructive Editing techniques to load a SQLITE table
28 Aug 2010 by cordwell
How do I install CygWin on Windows 7 64 bit computer?Is there any installation guide for CygWin on windows 7?is there any special configuration to run CygWin on Windows 7?HELP!!!!!!!!
28 Aug 2010 by cordwell
I'm running Windows 7 on my 64bit system. The problem is that i'm trying to setup cygwin on my system, in order to build up some projects. But it does work on my system and whenever i try to run it, it only stay still with the command line on the Window. Can any body tell me why i'm not able to...
25 Dec 2011 by malemar
hi how can I do this condition between client and serverin data.txt I have these username1122in server.cI write this before maintypedef struct{ int name;}client;client inputQ[30]; then I receive username from clientnow I want check if this username in data.txt...