Skip to main content



      Home
Home » Language IDEs » C / C++ IDE (CDT) » CDT 1.1 Release Candidate posted
CDT 1.1 Release Candidate posted [message #70002] Tue, 13 May 2003 21:16 Go to next message
Eclipse UserFriend
Hi all,

We've just posted the CDT 1.1 release candidate. You can find it on the CDT
download page under the nightly and stable builds. As mentionned before,
this
works with Eclipse 2.1. Please give it a try, if no major issues are
reported over
the next few days, this will become the CDT 1.1 GA release.

Thanks,

Sebastien
Re: CDT 1.1 Release Candidate posted [message #70042 is a reply to message #70002] Wed, 14 May 2003 04:18 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: liks.dkpower.com

Hi~*

I wonder mean of GA release.
What is GA?

Have a nice day..

--
------------------------------------------------------------ -
http://doit.ajou.ac.kr :: Dream of Internetworking TEAM!
written by Jou sung-shik liks@doit.ajou.ac.kr
http://doit.ajou.ac.kr/~liks
------------------------------------------------------------

<sebastien@qnx.com> wrote in message news:b9s5dn$uv4$1@rogue.oti.com...
> Hi all,
>
> We've just posted the CDT 1.1 release candidate. You can find it on the
CDT
> download page under the nightly and stable builds. As mentionned before,
> this
> works with Eclipse 2.1. Please give it a try, if no major issues are
> reported over
> the next few days, this will become the CDT 1.1 GA release.
>
> Thanks,
>
> Sebastien
>
>
Re: CDT 1.1 Release Candidate posted [message #70079 is a reply to message #70002] Wed, 14 May 2003 14:43 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: jerome_baumgarten.yahoo.fr

Hi,

I just installed it but I'm having trouble with it. I can add a make target
but how do you specify what it does ? How can you remove it ?

Also, I created by hand a makefile but CDT just ignores it.

Regards,
Jerome

<sebastien@qnx.com> wrote in message news:b9s5dn$uv4$1@rogue.oti.com...
> Hi all,
>
> We've just posted the CDT 1.1 release candidate. You can find it on the
CDT
> download page under the nightly and stable builds. As mentionned before,
> this
> works with Eclipse 2.1. Please give it a try, if no major issues are
> reported over
> the next few days, this will become the CDT 1.1 GA release.
>
> Thanks,
>
> Sebastien
>
>
Re: CDT 1.1 Release Candidate posted [message #70099 is a reply to message #70042] Wed, 14 May 2003 18:15 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: chris.javadisciple.com

"General Availability." That signifies the release that would be made
the primary release. Until then it is expected to be used only by people
who know they are testing it (i.e., alpha and beta testers, and those
willing to trust a release candidate.)

Jou sung-shik wrote:
> Hi~*
>
> I wonder mean of GA release.
> What is GA?
>
> Have a nice day..

--
Chris Rehm
chris@javadisciple.com

Thou shalt not avenge, nor bear any grudge against the children of thy
people, but shalt love thy neighbour as thyself. [Lev. 19:18]
Re: CDT 1.1 Release Candidate posted [message #70119 is a reply to message #70099] Wed, 14 May 2003 20:13 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: liks.dkpower.com

Oh... I see.

Thank you for your comment Chris.

Have a nice day.
--
------------------------------------------------------------ -
http://doit.ajou.ac.kr :: Dream of Internetworking TEAM!
written by Jou sung-shik liks@doit.ajou.ac.kr
http://doit.ajou.ac.kr/~liks
------------------------------------------------------------

"Chris Rehm" <chris@javadisciple.com> wrote in message
news:3EC2BFFD.1040803@javadisciple.com...
> "General Availability." That signifies the release that would be made
> the primary release. Until then it is expected to be used only by people
> who know they are testing it (i.e., alpha and beta testers, and those
> willing to trust a release candidate.)
>
> Jou sung-shik wrote:
> > Hi~*
> >
> > I wonder mean of GA release.
> > What is GA?
> >
> > Have a nice day..
>
> --
> Chris Rehm
> chris@javadisciple.com
>
> Thou shalt not avenge, nor bear any grudge against the children of thy
> people, but shalt love thy neighbour as thyself. [Lev. 19:18]
>
Re: CDT 1.1 Release Candidate posted [message #70138 is a reply to message #70079] Wed, 14 May 2003 20:09 Go to previous messageGo to next message
Eclipse UserFriend
Jerome Baumgarten schrieb:
> Hi,
>
> I just installed it but I'm having trouble with it. I can add a make target
> but how do you specify what it does ? How can you remove it ?

Assuming following structure:

[-] MyProject
| [+] lib_a <- Library A for Project
| | [+] include <- Include (Header) for Library A
| | [+] src <- Sources for Library A
| | Makefile <- Makefile for Library A
| |
| [+] lib_b <- Library B for Project
| | [+] include <- Include (Header) for Library B
| | [+] src <- Sources for Library B
| | Makefile <- Makefile for Library B
| |
| [+] include <- Includes (Header) for Project
| [+] src <- Sources for Project
| | Makefile <- Makefile for Project


There are two Libraries ( A & B ) for this Project, and the main
programs Source is held in the bottom part of the structure.

Put in each Makefile the following main rules:
##### Makefile for Library A Start ######
PROGRAMS = lib_a.a
# add necessary objects here
OBJECTS =

..PHONY: all debug clean
# check if we want to build debug stuff
ifeq ($(MAKECMDGOALS),debug)
CFLAGS += -g
endif

all: $(PROGRAMS)

debug: $(PROGRAMS)

clean:
-$(RM) $(PROGRAMS) $(OBJECTS) core

# this only in Makefile for Library A
lib_a.a: $(OBJECTS)
ar cr $@ $<

%.o: %.c
$(CC) $(CFLAGS) -o $@ -c $^

##### Makefile for Library A End ######

##### Makefile for Library B Start ######
PROGRAMS = lib_b.a
# add necessary objects here
OBJECTS =

..PHONY: all debug clean
# check if we want to build debug stuff
ifeq ($(MAKECMDGOALS),debug)
CFLAGS += -g
endif

all: $(PROGRAMS)

debug: $(PROGRAMS)

clean:
-$(RM) $(PROGRAMS) $(OBJECTS) core

%.o: %.c
$(CC) $(CFLAGS) -o $@ -c $^

##### Makefile for Library B End ######

##### Makefile for Main Program start ######
PROGRAMS = myprog
# add necessary objects here
OBJECTS =

..PHONY: all debug clean
# check if we want to build debug stuff
ifeq ($(MAKECMDGOALS),debug)
CFLAGS += -g
endif

all: $(PROGRAMS)

debug: $(PROGRAMS)

clean:
-$(RM) $(PROGRAMS) $(OBJECTS) core

# this only in Makefile for Library A
myprog: $(OBJECTS)
$(CC) -o $@ $< $(LDFLAGS)

%.o: %.c
$(CC) $(CFLAGS) -o $@ -c $^

##### Makefile for Main Program End ######

Now you can for each folder containing the Makefile add each

all
debug
clean all
clean debug

and you can now select the folder to rebuild and choose from
the target submenu one of the above.

So, i.e. for Library A to be rebuild with debug symbols compiled in
and an prior clean of stale object files you will do:

* select the folder lib_a
* right click on that folder
* select "Make"->"clean debug"

The lib_a.a will now being rebuild.

As you can see, the 'clean debug' will be added to the call of the make
program.

NOTE that you must be in the C/C++ Project View to do this, NOT in the
Navigator View! Make sure, you have the all, debug and clean rules. They
are actually a defacto standard in using Makefiles.

>
> Also, I created by hand a makefile but CDT just ignores it.

Don't know, what you did.
Re: CDT 1.1 Release Candidate posted [message #70158 is a reply to message #70002] Thu, 15 May 2003 03:05 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: thodak.heio.net

how can use the help system?when I click the items on the welcome page,my
browser show that "send requst to 127.0.0.1".what does it mean? Is the
help not availabe,or I can't link to the server?I link to the internet
using a proxcy in a LAN.should I setup my network?

thanks
Thomas
Re: CDT 1.1 Release Candidate posted [message #70235 is a reply to message #70158] Thu, 15 May 2003 13:45 Go to previous messageGo to next message
Eclipse UserFriend
The help system in Eclipse is implemented using a built-in web server, along
with the native browser. You did not mention what host platform you are
using,
but from your message below it looks like at least the browser part is
working.

What happens if you go into "Help->Help contents"?

Sebastien

"thomas" <thodak@heio.net> wrote in message
news:b9ve7h$i9t$1@rogue.oti.com...
> how can use the help system?when I click the items on the welcome page,my
> browser show that "send requst to 127.0.0.1".what does it mean? Is the
> help not availabe,or I can't link to the server?I link to the internet
> using a proxcy in a LAN.should I setup my network?
>
> thanks
> Thomas
>
>
Re: CDT 1.1 Release Candidate posted [message #70297 is a reply to message #70235] Thu, 15 May 2003 21:28 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: thodak.heio.net

I work in the redhat 8.0 and the browser is Mozilla 1.0.1 .when i try to
go into
"help->help content",it show me "the document contains no data".should i
download a serperated help system?

<sebastien@qnx.com> wrote:

> The help system in Eclipse is implemented using a built-in web server, along
> with the native browser. You did not mention what host platform you are
> using,
> but from your message below it looks like at least the browser part is
> working.

> What happens if you go into "Help->Help contents"?

> Sebastien
Re: CDT 1.1 Release Candidate posted [message #70452 is a reply to message #70297] Fri, 16 May 2003 19:21 Go to previous messageGo to next message
Eclipse UserFriend
Hmmm... it looks like help just plain does not work with your eclipse
install.
I have to admit I don't know the answer; you might want to post this in
the general eclipse newsgroup as a "help under Linux" question.

Sebastien

"thomas" <thodak@heio.net> wrote in message
news:ba1erg$c7l$1@rogue.oti.com...
> I work in the redhat 8.0 and the browser is Mozilla 1.0.1 .when i try to
> go into
> "help->help content",it show me "the document contains no data".should i
> download a serperated help system?
>
> <sebastien@qnx.com> wrote:
>
> > The help system in Eclipse is implemented using a built-in web server,
along
> > with the native browser. You did not mention what host platform you are
> > using,
> > but from your message below it looks like at least the browser part is
> > working.
>
> > What happens if you go into "Help->Help contents"?
>
> > Sebastien
>
>
>
Re: CDT 1.1 Release Candidate posted [message #70609 is a reply to message #70452] Sun, 18 May 2003 21:02 Go to previous message
Eclipse UserFriend
Originally posted by: thodak.heio.net

ok.thanks for your help!

<sebastien@qnx.com> wrote:

> Hmmm... it looks like help just plain does not work with your eclipse
> install.
> I have to admit I don't know the answer; you might want to post this in
> the general eclipse newsgroup as a "help under Linux" question.
Previous Topic:Tutorial for c++ development
Next Topic:CDT 1.1 on HPUX 11i
Goto Forum:
  


Current Time: Thu Jul 24 18:41:11 EDT 2025

Powered by FUDForum. Page generated in 0.04216 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top