Thread overview
Re: Some questions about the Ubuntu gdc
Nov 16, 2007
Arthur Loiret
Nov 19, 2007
Jan Claeys
Nov 24, 2007
Arthur Loiret
November 16, 2007
Hi Martin,


On 2007/11/16, Martin Hess <martinhess@mac.com> wrote:
> I have a few questions about the gdc that comes with the latest Ubuntu installer:
> 
> 1) Where are the stress results for this version of the compiler
> (prerelease gdc 0.25)?
> http://dstress.kuehne.cn/www/dstress.html

Don't know, why don't you run tests yourself? :-)


> 2) What version of Phobos does it include?

1.0, from gdc's SVN.


> 3) Where are the docs for Phobos and D installed?

/usr/include/d/(4.1)
/usr/share/doc/gdc-4.1/


> 4) Where is Phobos installed?

/usr/lib/libgphobos.a


You might want to run
aptitude download gdc-4.1 && dpkg -c gdc-4.1_*.deb | less
or something next time.


Arthur.



November 19, 2007
Op Fri, 16 Nov 2007 20:53:23 +0100, schreef Arthur Loiret:

> On 2007/11/16, Martin Hess <martinhess@mac.com> wrote:
>> I have a few questions about the gdc that comes with the latest Ubuntu installer:
[...]
>> 3) Where are the docs for Phobos and D installed?
> 
> /usr/include/d/(4.1)
> /usr/share/doc/gdc-4.1/

On most linux distributions, documentation can be found in '/usr/share/ doc/<packagename>' or sometimes '/usr/doc/<packagename>'.


Arthur: maybe it would also be useful to add the GDC docs to 'devhelp'? That way they can be included in all IDEs supporting the "devhelp API".


>> 4) Where is Phobos installed?
> 
> /usr/lib/libgphobos.a
> 
> 
> You might want to run
> aptitude download gdc-4.1 && dpkg -c gdc-4.1_*.deb | less or something
> next time.

or:

$ dpkg -L gdc-4.1 | grep phobos
/usr/lib/libgphobos.a
/usr/include/d/4.1/x86_64-linux-gnu/phobos-ver-syms

or:

$ dpkg -S phobos
gdc-4.1: /usr/include/d/4.1/x86_64-linux-gnu/phobos-ver-syms
stellarium-data: /usr/share/stellarium/textures/phobos.png
gdc-4.1: /usr/lib/libgphobos.a


No need to download it again after installing it...  :-)


-- 
JanC
November 24, 2007
Hi,


On Mon, Nov 19, 2007 at 04:40:25AM +0000, Jan Claeys wrote:
> Arthur: maybe it would also be useful to add the GDC docs to 'devhelp'? That way they can be included in all IDEs supporting the "devhelp API".

I suppose it would, but I'm not a gnome user and I've never used it before. If you want to do so, please go on. ;-)


> >> 4) Where is Phobos installed?
> > 
> > /usr/lib/libgphobos.a
> > 
> > 
> > You might want to run
> > aptitude download gdc-4.1 && dpkg -c gdc-4.1_*.deb | less or something
> > next time.
> 
> or:
> 
> $ dpkg -L gdc-4.1 | grep phobos
> /usr/lib/libgphobos.a
> /usr/include/d/4.1/x86_64-linux-gnu/phobos-ver-syms
> 
> or:
> 
> $ dpkg -S phobos
> gdc-4.1: /usr/include/d/4.1/x86_64-linux-gnu/phobos-ver-syms
> stellarium-data: /usr/share/stellarium/textures/phobos.png
> gdc-4.1: /usr/lib/libgphobos.a
> 
> 
> No need to download it again after installing it...  :-)

Right... shame on me. :-)


Have a nice day,

Arthur.