Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
Bug 311898 - An Internal error occured during Launching
Summary: An Internal error occured during Launching
Status: RESOLVED INVALID
Alias: None
Product: CDT
Classification: Tools
Component: cdt-build-managed (show other bugs)
Version: 0 DD 1.1   Edit
Hardware: PC Linux
: P3 normal (vote)
Target Milestone: ---   Edit
Assignee: Project Inbox CLA
QA Contact: Chris Recoskie CLA
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2010-05-06 10:42 EDT by alibaba CLA
Modified: 2010-05-06 13:25 EDT (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description alibaba CLA 2010-05-06 10:42:15 EDT
Build Identifier: 3.2.2

Hi,
I am very novie C++ progrmmer trying to compile a simple  programe below-

#include<iostream>
using std::cout;
using std::endl;

#include<iomanip>
using std::setw;


int main ()
{
	int a[10];
	
	for(int i=0; i<10; i++)
	a[i]=0;
	
	cout<<"Element"<<setw(13)<<"Value"<<endl;
	
	for(int j=0; j<10; j++)
	cout<<j<<setw(13)<<a[j]<<endl;
	
	return 0;	
}

I can compile this easily in GCC but everytime im trying to compile this in eclipse i get a error message"An Internal error occured during Launching "

I tried to compile other hello.cpp they work fine.

It happens to me before as well GCC works fine and Ecilipse giving me trouble.

Any one has any idea please..i really like ecilipse IDE.

I am using ubuntu 8.04.

Thanks in advance.

Reproducible: Always
Comment 1 Elena Laskavaia CLA 2010-05-06 10:58:59 EDT
What type of project did you create. Does your error has details.
Comment 2 alibaba CLA 2010-05-06 11:06:29 EDT
(In reply to comment #1)
> What type of project did you create. Does your error has details.

It should reply:

Element        Value
0            0
1            0
2            0
3            0
4            0
5            0
6            0
7            0
8            0
9            0

I get it using gcc but when i try to run ecilipse,i get a warning window-
An internal error occured during launching.

Thanks in advance
Comment 3 alibaba CLA 2010-05-06 11:48:34 EDT
Apology.I sort it out my self.I had to select executable under Debug in C/C++ Application.

Thanks again.