Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [cdt-dev] 2.1 Update

> 
> Hi Doug,
> 
> The bugzilla number is 79066.  Let me know if there is anything else I
> can do.
> 

8-)
How about a little testing.

Most of the code is base from our experience in Unix.
Is the PTY code actually working ?

(1)
For example create a simple C project:

simple.c:
#include <stdio.h>

int main(int argc, char **argv) {
	char buffer[32] = { };
	fprintf(stdout, "Hello form CDT[stdout]\n");
	fprintf(stderr, "Hello form CDT[stderr]\n");
	fgets(buffer, sizeof buffer, stdin);
	fprintf(stdout, "Hello form CDT[%s]\n", buffer);
	return 0;
}

Makefile:
all: simple
simple: simple.c
	$(CC) -g -o simple simple.c
clean:
	$(RM) simple

compile, debug
Is the output in the console ?



Back to the top