0
votes
0answers
89 views

(Cygwin - make) file not recognized: File format not recognized collect2: ld returned 1 exit status

I'm using Cygwin (in windows 7) to emulate Linux terminal, however, when I execute "make" to one of the files, I get the following error, (please note that this worked in Linux terminal) cd ...
1
vote
1answer
89 views

Installing GMP on Windows with cygwin

I am totally new to C++. I need to deal with very large integers, so I have to install GMP. I am using Cygwin (on Windows, of course). Any documentation I can find on installing this already assumes ...
0
votes
1answer
81 views

Cygwin make error

I was compiling a source code, and it always fails at make command, below is the error message. gcc: unrecognized option '-rdynamic' ...
0
votes
0answers
34 views

How can I set GNU make variable to a valid name in windows

I am working on cocos2dx in windows using eclipse. I try to compile via cygwin terminal and i get the following error. ERROR: Your GNUMAKE variable is defined to an invalid name: E:\cygwin\bin ...
0
votes
0answers
229 views

GCC arm-elf linker error: undefined reference to “strlen”, “malloc”, “strcpy”

I'm using GCC (CygWin) cross-compiling targeting an Arm7 processor. the problem is none of the standard library functions are available for my program. as I understand it, libc.a is the library i ...
0
votes
0answers
56 views

Cygwin make dependencies fail

I'm using Windows 7, and the command make dependencies fails in CYGWIN. 'make' works and shows the complete list of available targets. make clean works without generating an error message. All the ...
0
votes
0answers
121 views

Error while loading shared libraries g++-4.exe

I am having some problems running a make file on cygwin with windows. Below is the error message: $ make g++ -fPIC -Wall -shared -I/usr/include/python2.7/ -lpython2.7 -o alignment.so alignment.cpp ...
0
votes
1answer
130 views

Cygwin 'make' command

I'm trying to compile a library using a Unix shell. I'm running Cygwin on Windows. The install instructions for the library state: cd' to the directory containing the package's source code and ...
0
votes
1answer
336 views

Make: *** multiple target patterns. Stop

I'm currently working on an introductory C++ project, using Eclipse Juno, with CDT and Cygwin C++. I'm using an MVC architecture and have just gotten the code to a point where I can run the ...
1
vote
1answer
146 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
1answer
73 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 ...
1
vote
1answer
171 views

Cygwin, how to run “make” for all makefiles found in the root directory and any subdirectories?

I have a directory composed of various subdirectories. In each of these subdirectories is a makefile. In the root directory, there is also a make file. I need to perform a make instruction in cygwin ...
2
votes
2answers
74 views

Cygwin not recognizing command

I downloaded a "directory".tar.gz, extracted and unzipped the file to obtain "directory". The installation files for this directory, were to run the make command in cygwin, to compile and pull out ...
1
vote
0answers
674 views

GCC-4.7.2 installation on Cygwin fails

Because default GCC in Cygwin is 4.5.3, I tried to install GCC 4.7.2. I have dowloaded tar.bz archive from here, put it to cygwin\usr\gcc-4.7.2 and proceed the following sequence: tar xvf ...
0
votes
3answers
504 views

makefile, missing separator error

I written a very simple makefile for a c++ program, but it returns makefile:2: *** missing separator. Stop. error. What's wrong with it? makefile: all: [tab]g++ function.cpp -o out I compile the ...
2
votes
0answers
191 views

custom makefile works in cmd with Cygwin make, but not in Eclipse CDT

I have a simple makefile works OK under CMD prompt using Cygwin make. But have problem by invoking through Make Target in Eclipse CDT. The content of my makefile is as below: all: aaa aaa: bbb.o ...
4
votes
1answer
786 views

cmake cygwin make.exe error

I have got a problem with CMake 2.8.9. I use the GUI. I try to make a makefile (ogre 1.8).As I have Windows 7 x64, I use CygWin with gcc.exe and g++.exe and make.exe (located in the bin directory). ...
2
votes
3answers
2k views

Installing/compiling in Cygwin/MinGW - How to set the include “path”? (symbolic link?)

I have been trying to install/compile C libraries in Windows 7 using Cygwin and MinGW. However, I am getting errors like these during make: sys/resource.h: No such file or directory sys/times.h: No ...
0
votes
1answer
191 views

Win executable runs but calling command stalls on Cygwin command line

I'm rebuilding a flash loader utility for a TI chip and am facing a minor issue that's affecting my workflow. I'm using a 64-bit Win7 PC and rebuilding the utility using make on cygwin bash shell. ...
1
vote
1answer
1k views

make cannot work in Cygwin [closed]

I met a problem with c code compilation in Cygwin. my environment is Cygwin in Window Xp, $ which make /cygdrive/c/MinGW/bin/make $ which cc /usr/bin/cc.exe My makefile looks like: CC=cc CFLAGS= ...
0
votes
1answer
299 views

Simple netbeans C++ project doesn't compile

I installed Netbeans and as C++ compiler I installed cygwin. I made a simple project to test out my installation, this is the code: #include <cstdlib> #include <iostream> using namespace ...
2
votes
1answer
986 views

Logging into Cygwin and executing commands using bat file in windows

I am using windows XP operating system and cygwin is installed in my C drive. I need to login to cygwin directly to my directory path which contains a makefile and also a bash script called build.sh ...
4
votes
2answers
951 views

How to run Mocha tests on windows node.js ( Error: Cannot find module 'C:\cygdrive\c\Users )

I'm trying to run an app in windows and this app has some mocha tests. I need make. I read this Mocha requires make. Can't find a make.exe that works on Windows and this Node.js cannot find ...
2
votes
2answers
434 views

makefile missing separator on cygwin

I can't figure out why I'm getting the error library.mak:95: *** missing separator. Stop. When I use make on cygwin. The code at that specific spot is $(eval $(RULES)) $(EXAMPLES) $(TESTPROGS) ...
0
votes
0answers
169 views

Makefile shell command under cygwin

I'm trying to assign a variable that contains parts of the path to the current directory in a Makefile like this: PROBLEMDIR=$(shell basename `dirname \`pwd\``)"/"$(shell basename `pwd`) This works ...
2
votes
1answer
452 views

PETSc example not working

I have Windows 7 OS. I have followed the instructions from the PETSc web page; in the command prompt of VS 2005 I have opened cygwin and installed PETSc with the command: ./configure ...
3
votes
1answer
302 views

How to install Cufflinks on Cygwin

I'm attempting to install cufflinks 2.0.1 on my Windows 7 system using Cygwin. I have done all of the installation steps up to the Make command, but that make command keeps on failing for some reason. ...
0
votes
1answer
469 views

Building Erlang OTP R15B from source in cygwin using jdk javac & jar, cygwin make, install, gcc and ld

Does anyone know how to get Erlang built in cygwin? I downloaded the Erlang OTP R15B source in my cygwin installation. Gunzipped and untarred the source. Then I did a ./configure --prefix=/usr and ...
2
votes
2answers
357 views

install python and make in cygwin

I have installed Cygwin Terminal in OS Windows. But I need to install also python and make in cygwin.All of these programs are needed to run petsc library. Does Someone know how to install these ...
0
votes
0answers
95 views

Intermittent failures under Cygwin, possibly related to candle and/or make

I have a large project built using a makefile. It all works fine under Linux, and it also works fine under Cygwin if I do the buildsteps by hand, possibly redoing any that failed. It previously worked ...
2
votes
1answer
350 views

Android ndk - set maximum number of simultainous jobs?

I have the same problem as this one: Android ndk build mysteriously failing under cygwin with "Error 126" Occassionaly I get that error too. The solution suggests adding "-j 1" when you do ...
4
votes
3answers
2k views

Make include in makefiles be relative to the file's location

Directly related to this question. How can I make the include directive in makefiles behave relatively to the location of the current script? Assume that the current path is arbitrary and you have no ...
0
votes
1answer
334 views

make within ndk-gdb chokes on include in Android.mk

I have an Android NDK project. Windows 7, Cygwin, NDK r6b. The Android.mk references another mk file in another directory: include ../../MyApp/jni/Src.mk When I try to run ndk-gdb in the jni ...
-1
votes
1answer
147 views

Cygwin displays error messages in Hebrew and garbled

I have been using Cygwin to build my Android library using the NDK's ndk-build script and Cygwin's make tool. It started giving me errors with a bunch of Latin non-English characters. When copying the ...
1
vote
1answer
140 views

Cygwin make problems

i trying to cross-compile using cygwin make, but this rule doesn't work, $(HDIR)/%F.h: $(SDIR)/%F.ice $(SLICE2CPP) $(SLICEPARSERLIB) , i get Make * No rule to make target ...
1
vote
3answers
793 views

Finding an absolute path to a folder in Cygwin

I am running a Eclipse for C/C++ using cygwin GCC. I need to get the library path of "libws2_32.a", which is in C:\cygwin\lib\w32api for me in windows. However I do not understand how this is ...
1
vote
1answer
589 views

Ruby DevKit in cygwin not working

Im trying to install gems that require the ruby DevKit to be installed. E.g: gem install sqlite3 This is the output: Temporarily enhancing PATH to include DevKit... Building native extensions. ...
0
votes
0answers
57 views

pthreads in cywgin

can anyone tell me how to create a thread i've written a code but its aint working. its executing the whole function and then executing the main function but its not doing it parallelly. my code is ...
2
votes
1answer
259 views

Cygwin and makefiles

I'm new to makefiles, and I'm using Cygwin to make my files. I have source files in three different directories and I compiled them using the VPATH technique, but the object files are generated in the ...
0
votes
3answers
2k views

Android ndk build mysteriously failing under cygwin with “Error 126”

I have a JNI application built by ndk-build (using Android NDK r5b and cygwin make 3.81). The build usually works, by occasionally fails with: ... Compile++ thumb : components <= Component.cpp ...
1
vote
2answers
4k views

make: c: command not found

I am attempting to run my make file however i am getting the following two errors: make: c: command not found and make: o: command not found I am attempting to do this inside of cygwin. I have g++ ...
0
votes
2answers
261 views

GTK+ Make Cygwin Error

ive just done so much research and tried so much but nothing works. I am trying to compile a simple hello world program in GTK in Cygwin using make. It gives me error: "lab0.c:1:21: error: gtk/gtk.h: ...
6
votes
3answers
11k views

Cygwin Make bash command not found

I installed cygwin with all the packages on windows 7 64 bit. For some reason the make command is giving me an error: bash make: command not found. I checked and in my bin folder, there is no ...
0
votes
2answers
1k views

CYGWIN Make help

Hey guys I installed cygwin on my windows 7 just now With ALL THE PACKAGES (including make). But once i try to use the make command in cygwin it gives me error message: "bash: make: command not ...
7
votes
5answers
11k views

How to set GNUMAKE variable for ndk-build to work

I am trying to make ndk-build to work within Cygwin on windows. As per the NDK documentation (specifically INSTALL.htm), "The NDK requires GNU Make 3.81 or later being available on your development." ...
3
votes
1answer
3k views

Convert Cygwin path to Windows path in a makefile

How can I convert a Cygwin style path ( /cygdrive/c/foo/bar ) to Windows style ( C:/foo/bar ) (yes, with / going forward) in a GNU makefile? I have the situation of using Cygwin's make with a GCC that ...
3
votes
2answers
3k views

Eclipse + CDT + Cygwin: How do you fix the “Multiple targets” bug?

UPDATE 1: My original post was too long and obscured the real problem. I have discovered exactly what is causing the "Multiple targets" bug when Make is called. UPDATE 2: I found out that this ...
2
votes
1answer
2k views

How to get Qt-Creator to build using cygwin make?

Does anyone know how to configure Qt-Creator to use cygwin's make to build a project? Maybe this is a simple cygwin-mangled Windows path problem, but I can't get Qt-Creator to find/run cygwin's make. ...
0
votes
2answers
866 views

Header file not found when building under cygwin

I am trying to build a certain library under cygwin (OpenEXR), and I get the following error: b44ExpLogTable.cpp:52:18: error: half.h: No such file or directory half.h is referenced using #include ...
1
vote
1answer
1k views

Cygwin make can't find cygwin commands

While trying to install a build server I've run into a funny problem where all cygwin commands can be run from a DOS box but sometimes do not work when called from make. What's even more weird is ...

1 2