2
votes
1answer
43 views

Eclipse “crossGCC”

I just downloaded the Eclipse IDE for C/C++ (on Window 7) and trying to create a simple new project. In the tool chains there are "Cross GCC", "Cygwin GCC" and "Microsoft Visual C++". I never heard ...
0
votes
1answer
95 views

Tutorial needed for GNU blackfin toolchain with Eclipse

Any body knows of a good tutorial on using the GNU blackfin toolchain with eclipse on Windows? I'm trying to start with developing bare metal application on blackfin and I've installed the toolchain ...
0
votes
1answer
147 views

GCC - Symbol could not resolved in C

I have a source file 'foo.c' which includes 'foo1.h' and 'foo2.c'. foo1.h #include "pthread.h" #define MACROFOO() PTHREAD_MUTEX_INITIALIZER // Few other macros foo2.h #include "pthread.h" ...
1
vote
0answers
162 views

eclipse cross gcc toolchain wrapper plugin

I currently have Eclipse CDT working with a managed Cross GCC toolchain just fine. The only down side is any time I create a new project, I need to manually add all the special gcc flags for my cross ...
0
votes
0answers
47 views

Eclipse coloring code from a file or makefile?

I am developing a c code for embedded application using makefile and Eclipse and I want to add some external global symbols or preprocessor to Eclipse indexer, because I want to use the coloring ...
0
votes
3answers
255 views

C: Undefined reference to floor

I am using Eclipse on Ubuntu to write/compile/run C code. I am trying to build my project. Following is the output in the Eclipse console. 22:18:31 **** Build of configuration Debug for project ...
0
votes
0answers
82 views

gcc include path for nested directories

I'm resurrecting legacy code. Below is a simple example of the file structure and code I am working with. It would appear the compiler is looking for 'class/class/class2.h'. If I enter g++ -I. ...
4
votes
1answer
104 views

C++ GNU designated structure initialization not recognized in Eclipse

The CDT parser reports a syntax error for the structure initialization: typedef struct MyStruct { int a; float b; }; int main( void ) { // GNU C extension format MyStruct s = {a : 1, ...
0
votes
1answer
112 views

Eclipse not recognizing my GCC

I believe Eclipse is not recognizing my gcc compiler, as I'm getting errors for things that are definitely not errors, such as Symbol cout could not be resolved ...
0
votes
0answers
136 views

Cross-compiler options in Eclipse CDT

I have project build with Makefile. I'd like to build it under Eclipse. During the build with Makefile I see some cross-compiler options which I'd like to use also in IDE. Most of them was easy to ...
0
votes
0answers
124 views

cygwin gcc 4.7+ in Eclipse CDT updating from 3.4

I've followed the steps on the Cygwin wiki for updating my version of gcc. Now I have two installations of gcc in Cygwin: 3.4 in /bin and 4.7 in /usr/local/bin. Now, in Eclipse the only way to use it ...
3
votes
2answers
464 views

Inferring include paths and make targets from existing Makefile in Eclipse

I am trying to use Eclipse on an existing collection of folders with C++ and recursive Makefile files in Linux. The make files use gcc and ar, and the user specifies the path to the gcc he wants to ...
3
votes
2answers
5k views

Program “gcc” not found in PATH with Eclipse CDT

I cannot seem to figure out how to use Eclipse CDT. I am on Mac OS X, and am trying to print "Hello World" in C but I get an error: Program "gcc" not found in PATH. What can I do to use C ...
0
votes
0answers
180 views

Undefined reference to `WinMain@16' in Eclipse HELIOS CDT

I'm trying to compile and run a SHA256.c implementation in Eclipse CDT. I installed the plugin from this website: http://svn.codespot.com/a/eclipselabs.org/wascana/repo Below is the main method from ...
0
votes
2answers
89 views

Why is there a size difference in the executable file when i compile the code using gcc and eclipse cdt

There is a difference of size in the executable file when i compile the code with gcc (using the terminal) and eclipse cdt.gcc 8kb and eclispse 27 kb.why does it happen? Isn't the eclipse using the ...
8
votes
1answer
4k views

Unresolved <iostream> in Eclipse, Ubuntu

Yes, it's this question again... Somehow, I cannot get this issue resolved. Believe it or not, I have experience with Eclipse but only for Java development. I have programmed in C++ using vi but ...
1
vote
1answer
80 views

Is there a predefined macro for Configuration type in Eclise CDT?

I am using CDT for building a system comprised of many projects. Some of the system elements are dependent on the Configuration type - Debug or Release. I am aware that there is nothing utterly ...
1
vote
1answer
2k views

Ubuntu 12.04 C++11 code not working [closed]

This had been bending my mind in the last few days. I also wasn't sure whether to post this in ask ubuntu or here. I chose here to get a wider programmer-based audience. I am brand new to Ubuntu and ...
1
vote
2answers
603 views

ERROR: “Cygwin GCC” that is unsupported on this system

I am trying to create my first C++ exeecutable using Eclipse IDE (using Windows 7). I am getting the following error while building. How to correct it? ERROR:: couldn't get context of main ...
2
votes
1answer
873 views

Eclipse does not recognize types from stdint.h for ARM Windows GCC toolchain

I have Eclipse Juno for C/C++ developers installed together with GNU ARM C/C++ Development Support plug-in from http://sourceforge.net/projects/gnuarmeclipse. In my project I am using types like ...
1
vote
1answer
234 views

Eclipse CDT on OS X complaining about gcc built-in function: “Function '__builtin_bzero' could not be resolved”

I am working on some c++ network code in Eclipse CDT as a makefile project but eclipse is complaining about FD_ZERO. Compiling is working fine. Minimal example: #include <arpa/inet.h> void ...
0
votes
0answers
251 views

Eclipse CDT, debugging error, no source available

I am trying to use Eclipse CDT Indigo with cygwin gcc and gdb. I got gcc to work by setting the path to %cygwin%bin and etc. Now I am trying to use gdb, but I get No source available for "dll_crt0() ...
1
vote
1answer
366 views

How to view and modify static and global variables in Eclipse CDT

OK this question appears many times across many context on the web. However, I am yet to find a sufficient answer. It seems like there is no way of displaying globals in the Debug/Variables view. A ...
1
vote
1answer
321 views

Eclipse CDT and LLVM with clang

I installed llvm4eclipsecdt on my Macbook. Every time I create a new C++-Projekt with LLVM (clang) as build environment, I get an error message from gcc(?). llvm-ld -v -native -o test main.bc Linking ...
0
votes
1answer
902 views

Eclipse CDT C++ semantic errors wxWidgets

I am using wxWidgets to build a GUI application using Eclipse CDT (GNU C++) under Fedora Linux. The program compiles and runs fine, but in the Eclipse "problems" tab, there are so many "semantic ...
2
votes
1answer
2k views

Eclipse C/C++ (CDT) add -l option (linking math module) gcc -lm

I am trying to have eclipse on linux (Ubuntu) link the math module. Normally I would link with gcc -lm. How do I get eclipse to add this? Is it in library paths under Project->Properties? Where does ...
3
votes
2answers
6k views

Eclipse C/C++ (CDT) import files into project - header file not found - include path

I am trying to import files into an Eclipse C project and compile it. The build process cannot find the local header files. The header files are located in the src directory. How can I edit the ...
7
votes
5answers
7k views

Eclipse CDT shows semantic errors, but compilation is ok

I have installed Eclipse Indigo for C/C++ Linux developers on Ubuntu 10.04 x86. When I use common predefined macro __BASE_FILE__ Eclipse says Symbol '__BASE_FILE__' could not be resolved, but ...
0
votes
3answers
478 views

Eclipse CDT syntax error on __attribute__ keyword

I would like to know if there is a way to get rid of CDT syntax error warnings when using gcc's "__attribute__" keyword. It goes without saying that I would not like to switch off CDT syntax check. ...
0
votes
1answer
507 views

problem building cpp project in eclipse

I have installed minGW and msys. In eclipse CDT I created c++ project that uses cross gcc toolchain. Eclipse created make file which I can use through command line, so if I run make all project is ...
1
vote
1answer
2k views

Adding GCC compiler to Eclipse IDE

How can I add GCC compiler to the Eclipse IDE? Thanks.
1
vote
1answer
413 views

Custom Eclipse debug configuration

I have a custom build of gcc/gdb that I'm trying to integrate with an Eclipse CDT plugin. I've created a custom Eclipse toolchain and can successfully build with it. What I'm trying to do now is ...
0
votes
2answers
593 views

explicit instantiation of function template fails (g++)

I am experiencing some problems (i.e, linkage errors) with explicit instantiation of a function template. Under Visual Studio the project links ok, only under g++/Unix, using Eclipse-CDT, the linkage ...
2
votes
1answer
8k views

Having trouble building project on eclipse cdt? G++ no found!

I installed Eclipse CDT C/C++ and MinGW. But I cant build hello world program. The following message appears in the console. Build of configuration Debug for project 51 ** Internal Builder ...
0
votes
1answer
216 views

How to setup personal build in CDT eclipse over linux?

I started using eclipse CDT over Linux for some college exercises. I want the build function to compile without linking? Can i have the build to be as simple as: gcc -c -Wall ? Thanks
0
votes
1answer
5k views

Eclipse > CDT + Cygwin > How to configure a C++ compiler?

So, I've been looking all over. I can't find anywhere that talks about specifically how to configure Eclipse + CDT to run the gcc / gcc++ compiler. I am running Eclipse on a windows box, but I've ...
1
vote
5answers
7k views

Default flags for gcc compiler in Eclipse

I want all my C programs to be compiled with the options -Wall -pedantic -ansi by default. Is there a way to have Eclipse add these flags to the compiler command by default for all projects?
3
votes
1answer
2k views

Using a .lib built with Visual Studio in Eclipse/CDT/gcc

I am having some trouble compiling a programm with gcc on windows which was initially developed with Visual Studio. So far I was able to resolve almost all problems like missing header files and such, ...
0
votes
2answers
552 views

make error occured in gcc c++ compiler with mingw linker

Build of configuration Release for project testcase make all Building file: ../atest.cpp Invoking: GCC C++ Compiler g++ -I"C:\cppunit\include" -I"C:\cppunit\include\cppunit\extensions" ...
3
votes
4answers
3k views

Eclipse CDT on Snow Leopard cannot find binaries

After upgraded to Snow Leopard, I can no longer run Eclipse CDT project on my computer. While the build process completes without any error, Eclipse does not recognize the binary file it created. When ...
2
votes
3answers
2k views

Difference Betwen Visual C++ 2008 And g++

I'm learning C++ and when I was testing the Microsoft Visual C++ 2008 Express and Eclipse Ganymede, but with the g++ compiler as default, I've noted that a same code in VC++ get some errors and in g++ ...