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 Alain,

I'll do that as long as you don't mind waiting until tomorrow morning.
:^)

m!
 


--
----
Martin Imrisek <mimrisek@xxxxxx>
Software Systems Designer
Software Development Systems
Texas Instruments 
416-340-2096

-----Original Message-----
From: cdt-dev-admin@xxxxxxxxxxx [mailto:cdt-dev-admin@xxxxxxxxxxx] On
Behalf Of Alain Magloire
Sent: November 19, 2004 11:34 AM
To: cdt-dev@xxxxxxxxxxx
Subject: 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 ?

_______________________________________________
cdt-dev mailing list
cdt-dev@xxxxxxxxxxx
http://dev.eclipse.org/mailman/listinfo/cdt-dev


Back to the top