2001-07-27 11:19:35

by Frank Fiene

[permalink] [raw]
Subject: Graphical overview

Where can i find the graphical overview of the linux kernel source
tree? I saw a big jpg and a link to a homepage, but i lost the
informations.

Regards. Frank.
--
Frank Fiene, SYNTAGS GmbH, Im Defdahl 5-10, D-44141 Dortmund, Germany
Security, Cryptography, Networks, Software Development
http://www.syntags.de mailto:[email protected]


2001-07-27 11:28:22

by Jan-Benedict Glaw

[permalink] [raw]
Subject: Re: Graphical overview

On Fri, Jul 27, 2001 at 01:19:03PM +0200, Frank Fiene wrote:
> Where can i find the graphical overview of the linux kernel source
> tree? I saw a big jpg and a link to a homepage, but i lost the
> informations.

You probably mean the LGP (Linux Graph Project) by Rusty. It was
accessible through lgp.linuxcare.au, but it is no longer there. If
you wish, I'd send you a copy via private mail.

MfG, JBG

2001-07-27 12:18:25

by Gordon Fraser

[permalink] [raw]
Subject: Re: Graphical overview

Frank Fiene <[email protected]> [010727 13:19] wrote:
> Where can i find the graphical overview of the linux kernel source
> tree? I saw a big jpg and a link to a homepage, but i lost the
> informations.

This is what you're looking for:
http://fcgp.sourceforge.net/

Cheers,
Gordon

--
+---------------------------------------------------------------------+
| Gordon Fraser | Your mouse has moved. Windows NT must be |
| [email protected] | restarted for the change to take effect.|
| ICQ: 12413204 | Reboot now? [ OK ] |
| http://www.freakzone.net | |
+---------------------------------------------------------------------+


Attachments:
(No filename) (720.00 B)
(No filename) (232.00 B)
Download all attachments

2001-07-27 13:37:46

by Frank Fiene

[permalink] [raw]
Subject: Re: Graphical overview

On Friday, 27. July 2001 14:52, Gordon Fraser wrote:
> Frank Fiene <[email protected]> [010727 13:19] wrote:
> > Where can i find the graphical overview of the linux kernel
> > source tree? I saw a big jpg and a link to a homepage, but i lost
> > the informations.
>
> This is what you're looking for:
> http://fcgp.sourceforge.net/

Thanks, Gordon and Jan-Benedict.

lgp version 2.4.0a works fine but the latest 2.5.1 does not. Compile
error is
data2ps.o: In function `d2p_draw_line':
/home/ffiene/docs/lgp-2.5.1/data2ps.c:180: undefined reference to
`cos'
/home/ffiene/docs/lgp-2.5.1/data2ps.c:181: undefined reference to
`sin'

The files data2ps.c in both versions have not man different lines of
code, so i didn't find the error.

Regards. Frank
--
Frank Fiene, SYNTAGS GmbH, Im Defdahl 5-10, D-44141 Dortmund, Germany
Security, Cryptography, Networks, Software Development
http://www.syntags.de mailto:[email protected]

2001-07-27 13:52:08

by Frank Fiene

[permalink] [raw]
Subject: Re: Graphical overview (close)

On Friday, 27. July 2001 15:37, Frank Fiene wrote:
> On Friday, 27. July 2001 14:52, Gordon Fraser wrote:
> > Frank Fiene <[email protected]> [010727 13:19] wrote:
> > > Where can i find the graphical overview of the linux kernel
> > > source tree? I saw a big jpg and a link to a homepage, but i
> > > lost the informations.
> >
> > This is what you're looking for:
> > http://fcgp.sourceforge.net/
>
> Thanks, Gordon and Jan-Benedict.
>
> lgp version 2.4.0a works fine but the latest 2.5.1 does not.
> Compile error is
> data2ps.o: In function `d2p_draw_line':
> /home/ffiene/docs/lgp-2.5.1/data2ps.c:180: undefined reference to
> `cos'
> /home/ffiene/docs/lgp-2.5.1/data2ps.c:181: undefined reference to
> `sin'
>
> The files data2ps.c in both versions have not man different lines
> of code, so i didn't find the error.

OK, error in Makefile.
It doesn't link with the math library.

ff
--
Frank Fiene, SYNTAGS GmbH, Im Defdahl 5-10, D-44141 Dortmund, Germany
Security, Cryptography, Networks, Software Development
http://www.syntags.de mailto:[email protected]

2001-07-27 13:48:56

by Gordon Fraser

[permalink] [raw]
Subject: Re: Graphical overview

Frank Fiene <[email protected]> [010727 15:37] wrote:
> lgp version 2.4.0a works fine but the latest 2.5.1 does not. Compile
> error is
> data2ps.o: In function `d2p_draw_line':
> /home/ffiene/docs/lgp-2.5.1/data2ps.c:180: undefined reference to
> `cos'
> /home/ffiene/docs/lgp-2.5.1/data2ps.c:181: undefined reference to
> `sin'
>
> The files data2ps.c in both versions have not man different lines of
> code, so i didn't find the error.

Try adding -lm to the CFLAGS in the Makefile, this should do the trick.

Gordon

--
+---------------------------------------------------------------------+
| Gordon Fraser | * dpkg ponders: 'C++' should have been |
| [email protected] | called 'D' |
| ICQ: 12413204 | -- #Debian |
| http://www.freakzone.net | |
+---------------------------------------------------------------------+


Attachments:
(No filename) (959.00 B)
(No filename) (232.00 B)
Download all attachments

2001-07-27 14:04:56

by Jan-Benedict Glaw

[permalink] [raw]
Subject: Re: Graphical overview

On Fri, Jul 27, 2001 at 03:37:31PM +0200, Frank Fiene wrote:
> On Friday, 27. July 2001 14:52, Gordon Fraser wrote:
> > Frank Fiene <[email protected]> [010727 13:19] wrote:
> > > Where can i find the graphical overview of the linux kernel
> > > source tree? I saw a big jpg and a link to a homepage, but i lost
> > > the informations.
> >
> > This is what you're looking for:
> > http://fcgp.sourceforge.net/
>
> Thanks, Gordon and Jan-Benedict.
>
> lgp version 2.4.0a works fine but the latest 2.5.1 does not. Compile
> error is
> data2ps.o: In function `d2p_draw_line':
> /home/ffiene/docs/lgp-2.5.1/data2ps.c:180: undefined reference to
> `cos'
> /home/ffiene/docs/lgp-2.5.1/data2ps.c:181: undefined reference to
> `sin'

Add "-lm" somewhere to the compile call. It's missing to include
the mathematical library. So it's a bug in the makefile.

MfG, JBG