0
votes
1answer
11 views

Importing a makefile inside Eclipse - symbols could not be resolved

I'm trying to import an existing project into Eclipse. I did the following steps: - I downloaded the source from a repository. - I ran ./autogen.sh - I ran ./configure - I selected Makefile Project ...
0
votes
1answer
53 views

c with eclipse, make: *** Error 1

i´m making a proyect with eclipse in c languaje and i met with this error that i don´t know how to solve. I would thank any help. 11:04:11 ** Incremental Build of configuration Debug for project ...
0
votes
0answers
73 views

How to add additional cpp/h files to build configuration in Eclipse

I'd like to know how to add additional files which I've created to build configuration of my CDT project. What I have is: CDT Managed project In that project there's a file called with the name of ...
0
votes
2answers
126 views

Basics on java makefile

I am new to java and makefile, and I'd like some introductory information about a makefile. The information that's typically found online are mostly examples and high level. Here's some specific/naive ...
1
vote
1answer
55 views

What is wrong with this Makefile?

I'm trying to learn how to use makefiles in Ubuntu with C (I'm a beginner as you might guess). There is a chapter about this subject in "A Book on C" and they gave a simple example of 3 files: main.c, ...
0
votes
0answers
138 views

Compilation Error with make file

I've developed a C++ project using eclipse. When I launch the Run command from within the IDE everything will work fine and programs exits with success. This is the build output obtained with ...
1
vote
1answer
38 views

Where does Eclipse store make targets?

Does anyone know where Eclipse store the make targets for C makefile projects?
0
votes
0answers
29 views

How to configure auto-clean for Makefile project in Eclipse 3.8?

First of all, I've seen this question: Force Eclipse CDT makefile to clean file before compiling But bobbogo's answer is not working in version 3.8. I wasn't able to find something similar in Eclipse ...
0
votes
1answer
100 views

Eclipse C++ project - Running external make file with different targets

I have searched for a long while but couldn't find the answer. I use Eclipse C++, and created a Makefile based project, where all the source code and make file I downloaded from some source. I could ...
2
votes
1answer
109 views

Understanding folders and files generated by Eclipse

Short version of the question: What are objects.mk, sources.mk, makefile, subdir.mk, *.o and *.d files generated by Eclipse? Long Version of the question: In my home directory I have the ...
1
vote
2answers
230 views

How to compile WindRiver/Eclipse C++ projects from the command line?

I'm currently running a variant of Eclipse known as WindRiver, which is designed for embedded systems programming using C++ (specifically, I'm part of my high school's FIRST Robotics team). I'm able ...
0
votes
1answer
53 views

use library build CMakefile to build application [closed]

I've just installed an open source library from source e.g. using cmake -> make -> install. and I believed it was successful since all examples can run. Now I'll have to pull out some of my ...
4
votes
1answer
134 views

Build C++ shared object when building Android project in Eclipse

I'm trying to setup Eclipse to build a C++ library as a shared object before building my Android project. I looked into how to do this through Android.mk but it seems I'd need to modify the C++ ...
0
votes
2answers
74 views

how do I generate the .bin (executable) when creating a C++ Makefile project in eclipse (ubuntu)?

I've seen answers near the problem I have but anyone actually useful. I've just created a C++ Makefile project in eclipse. I've added just a main.cpp file with some little code inside and created by ...
1
vote
0answers
297 views

Android.mk How to use wildcard to include all .cpp files?

This is my directory structure... > Classes [dir] > ---subdir1 > ------ some .cpp and .h files > ---subdir2 > ------ some .cpp and .h files > ---more .cpp and .h files > ...
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 ...
0
votes
1answer
48 views

Eclipse CDT shows some errors, but the project is successfully built

I have a project of multiple source and header files and I wrote my own Makefile by specifying the required external libraries and headers (the directory containing the OpenCV header files and the ...
0
votes
2answers
208 views

Makefile Error after adding C mysql libs Eclipse CDT

I'm using Eclipse Juno CDT. I added the following to my project: the mysql/includes path to the includes path setting the libmysql.lib and zlib.lib to libraries setting the mysql library path to ...
0
votes
0answers
59 views

CDT Makefile Project with Virtual File System

I'm using premake to generate (gmake) makefiles I later build with Eclipse CDT. I manually set up the makefile projects by importing the file system using virtual folders and links. The problem I'm ...
4
votes
1answer
545 views

Error check in Eclipse CDT using Makefiles

I'm using eclipse to develop my project, which bases on my custom makefile system. I have to use custom Makefile project because I want to tevelop LLVM porject pased on the LLVM makefile system, see: ...
3
votes
1answer
45 views

makefile-working with envirnoment variables

I have written a makefile. This makefile is to be checked into svn. I used environment variables for my project directory path so that different computers can run the makefile without having to make ...
3
votes
1answer
303 views

Android NDK: custom pre-build step?

NDK 8b, Eclipse / Cygwin I'm trying to add custom pre-build steps to Android.mk: 1) for every *.xyz file in the source tree, run a custom tool which generates corresponding .h and .cpp files 2) add ...
0
votes
0answers
30 views

Eclipse - Makefile builder without CDT?

If I'm using a Makefile to build a project, but it is not a C/C++ project... does it make sense for me to install the CDT for eclipse to have a Makefile project? It feels somehow icky to use the ...
0
votes
0answers
99 views

How to convert an hierarchy of projects to a makefile in Eclipse CDT?

I have an Eclipse CDT workspace containing multiple projects. One project is a master project which is not much more than a makefile that post-processes the executables generated by the other ...
2
votes
2answers
718 views

Android NDK - Force library rebuild on configuration change

Is there a way to force the Android NDK to rebuild a particular library when changing build configurations in Eclipse? I am building building an Android Project using the Android NDK to build C++ ...
0
votes
0answers
165 views

When I add a new source folder to c++ eclipse project how do I get the makefile updated?

I am new to using makefiles with C++. I tried creating an eclipse(Juno) C++ exe project that had the option enable to auto-generate makefiles. It seems to work fine as long as I only add files to ...
0
votes
1answer
73 views

Correct syntax checkin with external makefile

I've made a Makefile project (New -> C Project -> Makefile project). And it's correctly compiles. But syntax checker is not working properly because of Eclipse doesn't import some important options ...
1
vote
1answer
666 views

Basic Tutorial? Makefiles in Eclipse CDT

Does anyone know where a good tutorial exists for making an Eclipse CDT C project? I've seen a couple on C++, but none of them describe what I need to know as an absolute beginner of the plug-in and ...
1
vote
1answer
293 views

Force Eclipse CDT makefile to clean file before compiling

I'm using Eclipse + CDT for a project. I'm using the "generate Makefiles automatically" option from my build settings. I have in one file the date and some values that must be actualized every time ...
2
votes
1answer
335 views

A short c++ file and makefile: I can make in the shell, but get lots of error while building it in the Eclipse

I'm compiling a very short c++ file using makefile.The c++ file using a external libary named ClanLib, but that's not the point, because I can use "make" command to compile it in the shell, so the ...
0
votes
1answer
28 views

Configuration value passing from Eclipse

I have Eclipse project, that build binaries from other projects in one. In existing makefile have hard code for build from Debug version. Can I get the current configuration (Release/Debug) from the ...
2
votes
2answers
504 views

Makefile for creating a library in Linux doesn't compile

I have 3 files , my_pipe.h , my_pipe.c , and main.c , where my_pipe is supposed to be a library . When I compile it in Eclipse , it compiles great , with no errors , but when I run the following ...
2
votes
2answers
1k views

Linking libpng to android native project

I am having problems trying to load libpng in my native android project. It seems, that the compiler doesn't recognize libpng functions, but does recognize types (like png_byte). It compiles normally ...
0
votes
1answer
635 views

eclipse cannot generate makefiles automatically

My OS is Ubuntu12.04 64bit,and I download eclipse for c/c++ from this site: ...
0
votes
1answer
2k views

Eclipse Arduino make: *** error 1

Below is the error that I get when I try to build my project. I am unsure what file or directory it is talking about. All the files and directories are within the project directory. I followed the ...
0
votes
0answers
72 views

importing c code into eclipse build

I'm trying to import some C code into eclipse. It should be easy, I've done it before, but I've run into two odd issues. first let me describe the program though. The program is a bit ...
2
votes
1answer
374 views

Eclipse makefile build is slow… What gives?

We are avid Eclipse fans -- it is fantastic! But we have about 40 c++ projects (and growing), and building all of these projects, when all projects are up-to-date, takes about half a minute (total). ...
0
votes
2answers
1k views

qt gui project error at makefile

I've just installed qt sdk and qt eclipse plugin on Windows 7,and afterwards when i created a new gui project, i got this 2 errors at building: ***make missing separator.Stop. and ...
0
votes
2answers
322 views

What is MakeFile in Eclipse?

What is MakeFile in Eclipse? From the documentation: A makefile is a text file that is referenced by the make command that describes the building of targets, and contains information such as ...
0
votes
4answers
787 views

math.h linkage with file

I have a small problem, and I have tried everything to test this function, could you please help me? I need to write a C file that is called "mutual_info.c", and it needs a mathematical function. I ...
1
vote
2answers
107 views

Makefiles in eclipse and their path

I'm trying to build a project with a specific compiler in Eclipse, and I'm using a Makefile to do the dirty work -- only problem is that it seems as if Eclipse doesn't share the same paths as my bash ...
1
vote
1answer
788 views

How can I parameterize an Eclipse generated make file

I have an Eclipse CDT project that is configured to generate make files. I am developing on windows at the moment, and my build server is running Linux. The make files build well on my local ...
1
vote
2answers
5k views

How to import C makefile project into eclipse or put in under eclipse

I have standard source code package under Linux which requires to run ./configure make to compile it (and it works ok). Mostly these files are C/C++ Is it possible to put this project under ...
0
votes
0answers
2k views

Build Android NDK Project in Windows

I know, it sounds crazy, but I want do it. Also I want possible running and debugging my project in Eclipse!!! (I know, I completely mad man) I install Android NDK, Cygwin (with "make"), add to path ...
2
votes
1answer
816 views

How to make Eclipse use an existing makefile that is not in root of project

I am trying to use Eclipse with an existing codebase. This code has the Makefile buried several directories deep from the root of the project sources. If I tell eclipse this buried directory is the ...
0
votes
1answer
168 views

Can't include header in cpp file

I wish to include this in my cpp file: #include <boost/lambda/lambda.hpp> For my Makefile Project I have selected Properties>Path and Symbols>GNU C++>Include Directories> and added: ...
2
votes
1answer
2k views

Eclipse C++ issue: No binary (but no compiler error), no classes (but no entry in the class hierarchy)

This issue is probably easily-solvable, but I have no idea how to do it. Anyway, I'm using Eclipse 3.5.2 in Ubuntu 11.04. I'm writing a game in C++ (not Java), and I'm writing several classes for ...
1
vote
2answers
191 views

C programming using eclipse

I am new to eclipse using for C programming in Ubuntu. When I run a c program it is displaying Launch failed binary not found even after installing g++. I installed g++ using following command ...
0
votes
2answers
311 views

Can Eclipse debug my Windows exe built with makefile?

I have built a C++ exe using my own makefiles. I have Eclipse CDT. I don't want to use Eclipse to "manage" my project. Can it be used simply as a debugger? If so I need explicit instructions.
4
votes
3answers
4k views

Setting environment variables in Eclipse to use with Android NDK

I use Android NDK with cygwin with Eclipse on Windows. In my makefile I want to set path of prebuild library using environment variable in eclipse. So I do the following: And in makefile: ...

1 2