I am currently trying to figure out how to use Eclipse Juno with the CDT plugin for a Computer Science class. However, some errors I have encountered (and currently am trying to deal with) is getting an error in console saying Nothing to build for [Project]. This builds for another project in my workspace, but not the one I want to run at the moment. I went into the Run/Debug settings and changed the PATH variable to the location of the MinGW toolchain, as well as repeating the process for the Run configuration. I can build the debug executable still, but nothing runs. Adding the PATH variable has worked in the past, but not now.
Also, running on this machine (which is different from the one that I had the code running successfully on), gives me that Windows error message where you send the error report or don't send. After running it, it runs to a certain line and stops before a cin. In a typical "Hello World" program, it does show the "Hello World" but that is only a single cout, just like this one. Does anyone know why this occurs?
Here's my main() and add() subroutines.
int main()
{
struct stud *top = NULL;
srand(time(NULL));
top = add(top);
top = add(top);
return 0;
}
struct stud *add(struct stud *top)
{
struct stud *dum;
dum = (struct stud *)malloc(sizeof(struct stud));
cout << "What is the student's ID?" << endl; \\ This cout is all that I see. It seems to stop here
cin >> dum->id;
cout << "What is the their GPA?" << endl;
cin >> dum->gpa;
cout << "What is their class?" << endl;
cin >> dum->className;
if (top == NULL)
{
top = dum;
}
else
{
int x = 0;
while (x == 0)
{
if (dum->id < top->id)
{
cout << "Got here.";
struct stud *dum2 = top->next;
if (dum->id < dum2->id)
cout << "Got here.";
}
top = top->next;
}
}
return top;
}
Excuse any errors in my code. I'm just trying to make sure it runs at this point.
EDIT: I added this in:
cout << "What is the student's ID?" << endl;
cout << "Got here" << endl;
cin >> dum->id;
but it still stops after that first cout, so I know that the cin is not the problem.
EDIT: I'm starting to think this is because of MinGW. If I can use MinGW effectively, I will, but is there possibly some other tool chain I can use if this isn't fixable?