0
votes
0answers
15 views

using cygwin to compile allegro 5.0.11

I tried to compiled the example code from allegro's website but i got this: /tmp/ccrugjPn.o:ctesting.c:(.text+0x3b): undefined reference to `_al_install_system' I searched up on the internet and ...
0
votes
2answers
33 views

Cygwin shadow.h not found

I am trying to compile a program in Cygwin and it requires shadow.h in one of the source files, which is missing in the /usr/include path. How do I add shadow support in Cygwin ? any packages to ...
1
vote
1answer
32 views

Compiling C Project error for “-std=gnu90”

I'm trying to cross compile from Windows 7 using Cywin, GCC, Eclipse, and OpenOCD to load the program onto an ARM microcontroller. I keep getting issues though, when trying to build my project, ...
0
votes
0answers
62 views

#include <Python.h> doesn't work under Cygwin

Tried compiling the example from the beginning of this Python documentation article with gcc in Cygwin. My code: #include <Python.h> static PyObject * spam_system(PyObject *self, PyObject ...
1
vote
1answer
66 views

bash: cannot execute binary file

I am trying to get compile some C code from within Cygwin on 64-bit Windows and call the executable using some parameters. The compilation goes through fine (the Makefile is below). But when I run the ...
1
vote
1answer
31 views

make error: Building 64-bit GSL in Cygwin

Continuing from here, I am trying to build 64-bit GSL using GCC in Cygwin. The call to ./configure (CC=x86_64-w64-mingw32-gcc CFLAGS=-m64 ./configure) goes through fine, but the call to make ...
0
votes
1answer
52 views

Compiling 64-bit GSL on Cygwin using 64-bit GCC

I am trying to compile 64-bit GSL on a Windows 7 machine. Here are the steps I took: Downloaded and untarred the GSL 1.15 source found here. Tested that I have a 64-bit version of GCC available in ...
2
votes
3answers
77 views

printf not printing to screen

If I try to run the following simple code under Cygwin on Windows 7, #include <stdio.h> int main() { int i1, i2, sums; printf( "Enter first integer\n" ); scanf( "%d", &i1 ); printf( ...
0
votes
1answer
28 views

Removed Windows service is still running

I installed a windows service with cygwin cygrunsrv. That service is writing something to a file every 5 seconds. After I tried it, I removed service with "cygrunserv -R service_name". Now, service is ...
0
votes
1answer
35 views

Is it possible to compile a windows service with cygwin?

I tried to compile my C++ daemon code from linux, with cygwin. It worked but not as a windows service. It's in processes list. How can I run it as a service? Or can I compile a windows service with ...
0
votes
2answers
62 views

fmod function from math.h library in C not working correctly?

Ok, so hopefully I do not look like an idiot from asking this question...as it is quite basic, but my brain is either on vacation or something is indeed wrong. So -4 % 5 or -4 mod 5 should equal 1 ...
0
votes
3answers
69 views

Socket doesn't receive complete data on HPUX

I really don't understand what is going wrong here, so I hope somebody may spot something I missed. I'm writing a user daemon which is accepting a client that I develop in java. For now this client ...
1
vote
1answer
66 views

How can I stop gcc under Cygwin from adding “.exe” to compiled executables?

I would like to know how I can prevent gcc under Cygwin from automatically adding the .exe extension to compiled files, because I just caused myself a lot of confusion with "missing files". For ...
1
vote
0answers
46 views

Scan hexadecimal floating points in Windows with Linux code

I am trying to compile Wapiti 1.3.0 (a NLP tagging tool) in a Windows 8 based machine. The C source code is intended for Linux (and similar) systems. I have managed to compile it using Cygwin gcc. ...
0
votes
0answers
69 views

Marvell Helloworld Compilation issue

I am working on the project based on Marvel wmsdk development kit. I am working on Windows 7 under /cygwin. I have downloaded and installed the toolchain arm-2012.09-63-arm-none-eabi.exe as mentioned ...
0
votes
1answer
47 views

“Bad system call” error while working with shared memory

I'm new to shared memory and ive come up with the following code: int main() { int perm=S_IRWXU|S_IRWXG|S_IRWXO; int fd=shmget(IPC_PRIVATE,1024,IPC_CREAT|perm); if(fd<0) { ...
-1
votes
1answer
39 views

C/C++ Eclipse CDT + Cygwin [closed]

I have installed cygwin (full installation) on my computer, i'm using eclipse as my editor. everything works just fine, but when I try to run the executables that were built by eclipse (using MingW ...
0
votes
0answers
26 views

Installing PortMidi for Cygwin in Windows 7

I'm having some difficulty getting PortMidi for work on Windows. More accurately, I'm having difficulty finding any documentation on how to get PortMidi to work in Windows, since I'm not using ...
0
votes
2answers
61 views

POSIX to DOS and DOS to POSIX path conversion in C

I was playing with the Cygwin GCC, where I wanted to print the current directory path using glib's g_get_current_dir in Windows and as well as in Linux. The problem is that the app is printing the ...
0
votes
0answers
50 views

Linking to create a PE32 executable with Cygwin

In past, I have made a basic kernel in Visual Studio. This makes a PE format executable, which my bootloader has no problems loading. My boot loader loads the kernel to 0x100000, then reads the PE ...
1
vote
2answers
27 views

Possible memory management issue or a cygwin issue

I have the following code that prints as intended in ubuntu linux but prints nothing in cygwin in windows. However, if I get rid of free(t) in is_rotation function then it works ok. I want to know if ...
0
votes
0answers
21 views

c netbeans file permission cygwin

I'm developing a C-program in the NetBeans IDE with the Cygwin Gcc compiler. I'm trying write some values to a file with fp = fopen("results.dat", "w"); if (fp == NULL) { printf("I couldn't open ...
2
votes
1answer
54 views

Compiling libjpeg on Windows using cygwin?

Which is the best way to compile libjpeg on a Windows machine? Should I use Microsoft Visual Studio or can I use something else like Cygwin? Note: when I use Cygwin and copy makefile.vc to Makefile, ...
0
votes
0answers
75 views

Permission issues while trying to compile native code

While trying to build a application using android-ndk-r8d I am getting the following error message: $ /cygdrive/d/Android_NDK/android-ndk-r8-windows/android-ndk-r8/ndk-build Prebuilt : libffmpeg.so ...
0
votes
1answer
60 views

How to generate swc from swf or abc files

How can i generate swc files from swf or abs been made with avm2 assembly adobe alchemy compiler. this code generated the swf and the abc files : java -Xms16M -Xmx4096M -jar D:/alchemy/bin/asc.jar ...
2
votes
1answer
59 views

Why does read not work yet fgets work fine in my program?

So the specific part of my program looks like this: printf("Please input command:\n>"); While 1 { if ((int c = read(STDIN_FILENO, input, Buffer_size) == 0) { break; } rest of ...
2
votes
2answers
62 views

Is `__value` a gcc extension, and if so, what does it do? Does it have a VC++ equivalent?

Title says it all. I am trying to use some of the libraries from cygwin's gcc with visual studio's C++ compiler but the following code from C:\cygwin\usr\include\sys\_types.h does not compile: ...
0
votes
0answers
82 views

Following Linux installation, Cygwin creates ELF executables

Programming with UNIX system calls has never really given me trouble, as I have been able to use Cygwin for both compilation and execution of my C++ programs that contained them. Recently, however, I ...
0
votes
1answer
72 views

Windows get Unix like path from cygwin root

I want to get the path to my current directory ( pwd ) in unix-style from cygwin root, but when I use GetCurrentDirectory it prints the path from C in windows path style. What other function does the ...
0
votes
1answer
56 views

How to compile cli-clock on cygwin using Makefile?

I wrote ggc clock.c -o clock assuming that it would compile to the file "clock" but apparently not. I do see it comes with a Makefile except I'm not quite sure on how you use that. Here's the link to ...
0
votes
0answers
53 views

Cygwin - Getting and Setting Console Curser Position - Without Ncurses

I am creating the cross platform console app through cygwin + gcc + mingw. I tried to get the console cursor position through this code: CONSOLE_SCREEN_BUFFER_INFO coord; GetConsoleScreenBufferInfo ...
0
votes
2answers
113 views

C language — Fermat's theory validator not working properly

I have everything working properly. code- #include <stdio.h> #include <math.h> int quadtest(unsigned long long int a, unsigned long long int b, unsigned long long int c, unsigned int ...
0
votes
1answer
65 views

Installing PortAudio for use with Cygwin on Windows 7

I'm trying to get PortAudio to work on my computer. I've been using Cygwin and gcc to make applications in C, but I'm completely clueless as to how I might go about getting PortAudio to compile and ...
-1
votes
1answer
166 views

C - Fclose -> Aborted (core dumped)

I am getting an error of Aborted on fclose want to know where I am doing wrong. Core Duped: Stack trace: Frame Function Args 0022A698 7C802542 (00000758, 0000EA60, 000000A4, 0022A794) 0022A7B8 ...
0
votes
1answer
87 views

MPICH2 compilation issue using Cygwin

Attempting to compile MPICH2 on a Windows machine using Cygwin. A bit of relevant information $ uname -> CYGWIN_NT-6.1 $ gcc --version -> gcc (GCC) 3.4.4 (cygming special, gdc 0.12, using dmd ...
1
vote
1answer
473 views

Compile command-line C application with Android NDK

I am trying to compile Frotz to run in a terminal emulator so it will execute on my Android Ice Cream Sandwich smartphone. Frotz is an open source Z-Machine interpreter for playing interactive fiction ...
0
votes
1answer
74 views

#error command invoke error

I am trying to run and debug C code in Tux Racer source code for Android. Most of a code is written in C, so I converted Android project into C Project (Adds C/C++ Nature). I used Cygwin toolchain. ...
0
votes
1answer
43 views

How to get Cilk working with Cygwin?

I have downloaded both programs, but I see no instructions on google for getting Cilk to work on Cygwin. Is there a Cygwin package that would work? I'm programming in C and have gcc installed.
0
votes
0answers
37 views

Program Using Cygwin GSL Hangs Upon Completion

I am attempting to use Cygwin's version of GSL with Windows Visual C (vanilla C, not C++, 2008). The compiled executable is run directly from a DOS window. The problem is that after the program ...
1
vote
3answers
86 views

C Programming with Cygwin and gdbtui

my question is regarding to the use of Cygwin and gdb. I was working on a school project but they want me to practice without the use of Visual Studio or similar compilers. My questions is.. How ...
0
votes
1answer
184 views

C- Using exec() in windows

I've seen many many results for unix systems. I am using cygwin so I am using unistd.h library. I am trying to run this command but It does not run. What could I be missing here? ...
0
votes
1answer
43 views

Open URL from Cygwin/POSIX?

I'm writing a cygwin program that should open a web link. This code doesn't work: system("cygstart \"http://www.mysite.com\""); Cygstart works from the command line but not inside the ...
0
votes
1answer
159 views

Cygwin- Trying to run DOS command in C language

I have tried both system() and popen(). When I run the program on cygwin terminal it works perfectly fine but when I try to run it on windows platform by double clicking on .exe file I get this error: ...
1
vote
2answers
116 views

Compile time Error in C

I am tring to compile an C code (davinci_spi.c). the corresponding header file is as follow: davinci_spi.h: #ifndef _DAVINCI_SPI_H_ #define _DAVINCI_SPI_H_ struct davinci_spi_regs { ...
2
votes
1answer
193 views

Varnish Daemon does not start: Resource temporarily unavailable

I try to setup varnish on my local development system but it terminates seconds after the start with these messages: varnishd -s malloc,1G -T 127.0.0.1:2000 -a 0.0.0.0:81 -F -f /etc/default.vcl 0 ...
1
vote
1answer
156 views

cygwin cannot find my compiler from /cygdrive

I have a makefile which invokes my compiler from /cygdrive/c/path/to/compiler when I'm in a cygwin shell, I can invoke it correctly, but from inside a makefile, the absolute path returns "The system ...
0
votes
2answers
412 views

Multiple reader/writer on FIFO (named pipe)

I've created a named pipe using mkfifo and opened a reader and writer on it. I then went on to open a second reader/writer on the same fifo but open returns ENXIO instead. std::string n = ...
2
votes
1answer
159 views

Running linked C object files(compiled from C and x86-64 assembly) on Cygwin shell, no output?

Trying to deal with my assignment of Assembly Language... There are two files, hello.c and world.asm, the professor ask us to compile the two file using gcc and nasm and link the object code ...
0
votes
1answer
75 views

Why can I build this package (aspectC) in Ubuntu, but not Cygwin?

I'm trying to get started with this library and following the directions on that page, Cygwin returns this, despite the project's page claiming to support Cygwin. The Makefile works just fine in a ...
3
votes
4answers
707 views

How to access my 9-data bit serial port on a PC?

I have developed an embedded solution which communicates over a Multi Drop Bus and now I would like to develop a PC based application which monitors traffic on the bus. MDB supports true 9 data bits ...

1 2 3 4 5