Re: [fpc-pascal] Object Pascal operating system

2008-12-11 Thread Florian Klaempfl
Skybuck Flying schrieb: > > Does free pascal compiler actually implement and support the entire x86 > instruction set/registers ? > > Since "application space" is different from "kernel space". > > For example: > > asm >// full instruction set support possible ? > > end; It is supposed to

RE: [fpc-pascal] Cannot find GTK

2008-12-11 Thread Andres Linares
It still doesn't work. Is there any other path? or maybe, is there other unset thing? > Date: Thu, 11 Dec 2008 03:43:39 -0800 > From: leledumbo_c...@yahoo.co.id > To: fpc-pascal@lists.freepascal.org > Subject: RE: [fpc-pascal] Cannot find GTK > > > I guess you didn't fully understand what I me

Re: [fpc-pascal] Object Pascal operating system

2008-12-11 Thread leledumbo
I'd be more interested in implementing something new (and useful) using OP features. Something like what A2 (formerly Bluebottle) OS do using Active Oberon: - Kernel level garbage collector - It's FAST (a good prove that object orientation and garbage collection don't have to result in a slow syst

Re: Re[fpc-pascal] cursive data structures using FP generics

2008-12-11 Thread leledumbo
> Is there a bug report about it? Err... no, because I thought it was just due to its incompleteness. -- View this message in context: http://www.nabble.com/Recursive-data-structures-using-FP-generics-tp20954180p20969321.html Sent from the Free Pascal - General mailing list archive at Nabble.co

[fpc-pascal] Re: How to build .so with FPC and use it in C program?

2008-12-11 Thread Seth Grover
I do it all the time. It works fine in Linux as of 2.2.2. There was a problem in 2.2.0 where initialization and finalization code of units in your uses section wouldn't get called, but they do now. --- test.lpr --- library test; {$mode objfpc}{$H+} uses Classes,

[fpc-pascal] Problems With IDE

2008-12-11 Thread Robert Wolfe
Hi all! New to the list so please bear with me :) I am having an issue where the fp.exe program fails to start under Windows Vista 32 and 64 bit. I get the same problem under Windows 7 as well. Has anyone else had a similar problem and if so, what was the fix if any? __

Re: [fpc-pascal] How Much of the FP/LCL is there in Indy 9/10 of Lazarus?

2008-12-11 Thread Prince Riley
Hello Has anyone used or attempted to use Indy with FPC... and if so how did you incorporate the Indy components. On Thu, Dec 11, 2008 at 12:24 PM, Mattias Gaertner < nc-gaert...@netcologne.de> wrote: > On Thu, 11 Dec 2008 18:39:18 +0100 > Jürgen Hestermann wrote: > > > Hi, > > > > hopefully

Re: [fpc-pascal] Object Pascal operating system

2008-12-11 Thread Prince Riley
I think others to this list may have seen my prior post on how this 'challenge' of writing a OS kernel in Object Pascal could be met using the Unix/Linux history as a guide. It probably wouldn't be worth the additional effort needed to write the entire kernel in Object Pascal in much the same way

Re: [fpc-pascal] Porting linux to pascal, would it be, possible ?

2008-12-11 Thread Graeme Geldenhuys
On Wed, Dec 10, 2008 at 11:46 AM, Prince Riley wrote: > > I just took this snapshot of the www.eclipse.org kanding page .. you say you > weren't able to find a clear download link lol .. ok well it appears > directly in the center of the page ... hehehe... Yes it seems funny now, but like I

Re: [fpc-pascal] Porting linux to pascal, would it be, possible ?

2008-12-11 Thread Graeme Geldenhuys
On Wed, Dec 10, 2008 at 11:25 AM, Prince Riley wrote: > > I find that very interesting. The Eclipse group has redesigned the web site > and it now has a much cleaner and easier to navigate 'front door' that leads > most visitors directly to the major Java or Rich Client IDE. OK, I just went to th

Re: [fpc-pascal] Porting linux to pascal, would it be, possible ?

2008-12-11 Thread Florian Klaempfl
Prince Riley schrieb: > Graeme > > I just took this snapshot of the www.eclipse.org > kanding page .. you say you weren't able to > find a clear download link lol .. ok well it appears directly in > the center of the page ... > > Let me know what you think after you

Re: [fpc-pascal] Porting linux to pascal, would it be, possible ?

2008-12-11 Thread Florian Klaempfl
Gerard N/A schrieb: > www.eclipse.org > On the upper menu, 5th item, "downloads". > Then choose whatever you wnat to download, and choose the mirror, and > the download starts. > lazarus.freepascal.org on the other way seldom works lately and when > it does it's so slow it can't be used. Well, thi

Re: [fpc-pascal] Porting linux to pascal, would it be, possible ?

2008-12-11 Thread Jonas Maebe
Hello, Please also move this Eclipse discussion to fpc-other (unless it's specifically on how to set up Eclipse for use with FPC or so). Thanks, Jonas FPC lists moderator ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.fre

Re: [fpc-pascal] Object Pascal operating system

2008-12-11 Thread Skybuck Flying
I'd say if whoever has enough drive to try something like this, simply start by implementing the kernel. Something relatively simple so that your PC can boot using a Object Pascal written kernel. No matter if there is no user interaction, shell or user level programs. Just show that you CAN write

Re: [fpc-pascal] TListBox bug in LCL of Lazarus?

2008-12-11 Thread Mattias Gaertner
On Thu, 11 Dec 2008 18:39:18 +0100 Jürgen Hestermann wrote: > Hi, > > hopefully someone can help me with my first steps at migrating my > Delphi programs to Lazarus. > > I have a TListBox which I modify in the following way: > --- > with Form1.ListBoxAusg

[fpc-pascal] TListBox bug in LCL of Lazarus?

2008-12-11 Thread Jürgen Hestermann
Hi, hopefully someone can help me with my first steps at migrating my Delphi programs to Lazarus. I have a TListBox which I modify in the following way: --- with Form1.ListBoxAusgaben do begin Items.Add('aaa'); Items.Strings[Count-1] :=

Re: Re[fpc-pascal] cursive data structures using FP generics

2008-12-11 Thread Florian Klaempfl
leledumbo schrieb: > Last time I try (about a semester ago) the compiler cannot do specialization > based on another. For instance, if we have: > > type > generic TTree = class > type > TChild = specialize TTree; <-- the compiler chokes on this > TChildren = array of TChild; > ... >

Re: [fpc-pascal] How to build .so with FPC and use it in C program?

2008-12-11 Thread Jonas Maebe
On 11 Dec 2008, at 15:03, Marco van de Voort wrote: In our previous episode, Jonas Maebe said: FPC cannot build dynamic libraries on FreeBSD at this time (well, at least none that work properly with C programs). Can this be done for other platforms? eg: Linux 32/64bit and Windows 32/64bi

Re: [fpc-pascal] How to build .so with FPC and use it in C program?

2008-12-11 Thread Marco van de Voort
In our previous episode, Jonas Maebe said: > >> FPC cannot build dynamic libraries on FreeBSD at this time (well, > >> at least > >> none that work properly with C programs). > > > > Can this be done for other platforms? eg: Linux 32/64bit and Windows > > 32/64bit etc... > > I'm mostly intereste

Re: [fpc-pascal] How to build .so with FPC and use it in C program?

2008-12-11 Thread Graeme Geldenhuys
On Thu, Dec 11, 2008 at 2:17 PM, Jonas Maebe <[EMAIL PROTECTED]> wrote: > > Only the FreeBSD port is broken in that respect as far as I know. Thanks, that's good to know... Regards, - Graeme - ___ fpGUI - a cross-platform Free Pascal GUI toolkit ht

Re: [fpc-pascal] How to build .so with FPC and use it in C program?

2008-12-11 Thread Felipe Monteiro de Carvalho
I have managed to convert part of the LCL into a library usable in C: http://wiki.lazarus.freepascal.org/LCL_Bindings I don't remember which OS I was using, likely Windows. And the Apache modules are also libraries, which work and connect to a C software (apache) =) -- Felipe Monteiro de Carva

Re: [fpc-pascal] How to build .so with FPC and use it in C program?

2008-12-11 Thread Jonas Maebe
On 11 Dec 2008, at 13:14, Graeme Geldenhuys wrote: On Thu, Dec 11, 2008 at 1:46 PM, Jonas Maebe <[EMAIL PROTECTED] > wrote: How to build .so with FPC and use it in C program on FreeBSD platform? FPC cannot build dynamic libraries on FreeBSD at this time (well, at least none that work p

Re: [fpc-pascal] How to build .so with FPC and use it in C program?

2008-12-11 Thread Graeme Geldenhuys
On Thu, Dec 11, 2008 at 1:46 PM, Jonas Maebe <[EMAIL PROTECTED]> wrote: > >> How to build .so with FPC and use it in C program on FreeBSD platform? > > FPC cannot build dynamic libraries on FreeBSD at this time (well, at least > none that work properly with C programs). Hi Jonas, Can this be done

Re[fpc-pascal] cursive data structures using FP generics

2008-12-11 Thread leledumbo
Last time I try (about a semester ago) the compiler cannot do specialization based on another. For instance, if we have: type generic TTree = class type TChild = specialize TTree; <-- the compiler chokes on this TChildren = array of TChild; ... end; What's the status now? -- Vie

Re: [fpc-pascal] How to build .so with FPC and use it in C program?

2008-12-11 Thread Jonas Maebe
On 11 Dec 2008, at 12:31, KES wrote: How to build .so with FPC and use it in C program on FreeBSD platform? FPC cannot build dynamic libraries on FreeBSD at this time (well, at least none that work properly with C programs). Jonas ___ fpc-pasca

RE: [fpc-pascal] Cannot find GTK

2008-12-11 Thread leledumbo
I guess you didn't fully understand what I mean. The path should point to directories containing .ppu and .o files. What you wrote is just one level above the right path, so the correct one should be: /usr/lib/fpc/$FPCVERSION/rtl/$FPCTARGET /usr/lib/fpc/$FPCVERSION/packages/*/$FPCTARGET PS: Usin

[fpc-pascal] How to build .so with FPC and use it in C program?

2008-12-11 Thread KES
Hello, FPC-Pascal. How to build .so with FPC and use it in C program on FreeBSD platform? -- KES mailto:[EMAIL PROTECTED] ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinf

Re: [fpc-pascal] Porting linux to pascal, would it be, possible ?

2008-12-11 Thread Prince Riley
Graeme, I find that very interesting. The Eclipse group has redesigned the web site and it now has a much cleaner and easier to navigate 'front door' that leads most visitors directly to the major Java or Rich Client IDE. Prince On Tue, Dec 9, 2008 at 3:56 AM, Graeme Geldenhuys <[EMAIL PROTECTED

Re: [fpc-pascal] Porting linux to pascal, would it be, possible ?

2008-12-11 Thread Neil Graham
On Tue, 2008-12-09 at 11:56 +0200, Graeme Geldenhuys wrote: > That project is such a mess (my personal opinion). Just the other day > I wanted to download the Eclipse IDE, to see what has changed over the > last few years since I looked at it. Well, after browsing their > website for 30 minutes,

Re: [fpc-pascal] Porting linux to pascal, would it be, possible ?

2008-12-11 Thread Marco Ciampa
On Mon, Dec 08, 2008 at 12:07:31PM -0600, Prince Riley wrote: > Thank you for your reply. > > Eclipse was first released as a Java development IDE several years ago, but > if you take a look at the Eclipse web site www.eclipse.org you'll see that > since then Eclipse has evolved and been extended

Re: [fpc-pascal] Porting linux to pascal, would it be, possible ?

2008-12-11 Thread Gerard N/A
Hi Graeme, On Tue, Dec 9, 2008 at 10:56 AM, Graeme Geldenhuys <[EMAIL PROTECTED]> wrote: > On Mon, Dec 8, 2008 at 8:07 PM, Prince Riley <[EMAIL PROTECTED]> wrote: > > That project is such a mess (my personal opinion). Just the other day > I wanted to download the Eclipse IDE, to see what has chan

RE: [fpc-pascal] Cannot find GTK

2008-12-11 Thread Tomas Hajny
On Thu, December 11, 2008 07:08, Andres Linares wrote: > > I wrote that and it still doesn't work. > > What I put : > > /usr/lib/fpc/2.2.0/units/i386-linux/rtl > /usr/lib/fpc/2.2.0/units/i386-linux/packages/* > /usr/lib/fpc/2.0.0/units/i386-linux/rtl > /usr/lib/fpc/2.0.0/units/i386-linux/pa