Re: [fpc-pascal] building source package with fpcmake without installing

2007-08-01 Thread Jonas Maebe
On 31 Jul 2007, at 21:54, Marc Santhoff wrote: Where is setting the prefix value based on the OS running on done? In the part of the Makefile which gets automatically added by fpcmake. Just search for PREFIX or INSTALL_PREFIX in the Makefile, and then go backwards to see from where the va

Re: [fpc-pascal] Warning: gc-sections option ignored

2007-08-01 Thread Carsten Bager
> > On 31 Jul 2007, at 14:13, Carsten Bager wrote: > > > I get this warning when compiling a project. > > It compiles fine with the 213 compiler > > > > Could this be a problem with the new compiler? > > You probably simply need a newer version of ld. I am using the one that came with the 214 ar

[fpc-pascal] cprt0

2007-08-01 Thread Carsten Bager
Is there anyboddy how knows where to find a startup file (cprt0.as) for uclibc (Arm on linux). Carsten ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] cprt0

2007-08-01 Thread Henry Vermaak
On 01/08/07, Carsten Bager <[EMAIL PROTECTED]> wrote: > Is there anyboddy how knows where to find a startup file (cprt0.as) for > uclibc (Arm on linux). > look at crt1.s in this directory: http://uclibc.org/cgi-bin/viewcvs.cgi/trunk/uClibc/libc/sysdeps/linux/arm/ i have no idea how this ties int

Re: [fpc-pascal] Free Pascal port of ffmpeg API example

2007-08-01 Thread BlueCat
Hello folks again, I have revised my ffmpeg API example. Your suggestions or improvements are still very welcome. http://www.nabble.com/file/p11948056/mpegpas02.zip mpegpas02.zip BlueCat wrote: > > Hi, FPC forks. > > I have ported apiexample.c of ffmpeg to Free Pascal on Mac OS X. I owed >

Re: [fpc-pascal] Free Pascal port of ffmpeg API example

2007-08-01 Thread Luca Olivetti
En/na BlueCat ha escrit: Hello folks again, I have revised my ffmpeg API example. Your suggestions or improvements are still very welcome. http://www.nabble.com/file/p11948056/mpegpas02.zip mpegpas02.zip Hello, to get it to compile under linux (with fpc 2.0.4) I had to change the name of MA

[fpc-pascal] command and variable substitution in fpcmake

2007-08-01 Thread Marc Santhoff
Hi, when using Makefiles something like this is executed at runtime, so a variable can be set by a command: PWD=`pwd` or PDW=$(pwd) sets the Varaible $PWD to the current path. If one of both forms is used in a fpcmake-file that doesn't work. [dist] destdir=`p

Re: [fpc-pascal] building source package with fpcmake without installing

2007-08-01 Thread Marc Santhoff
Am Mittwoch, den 01.08.2007, 09:47 +0200 schrieb Jonas Maebe: > On 31 Jul 2007, at 21:54, Marc Santhoff wrote: > > > Where is setting the prefix value based on the OS running on done? > > In the part of the Makefile which gets automatically added by > fpcmake. Just search for PREFIX or INSTALL_

Re: [fpc-pascal] command and variable substitution in fpcmake

2007-08-01 Thread Peter Vreman
At 22:03 1-8-2007, you wrote: Hi, when using Makefiles something like this is executed at runtime, so a variable can be set by a command: PWD=`pwd` or PDW=$(pwd) sets the Varaible $PWD to the current path. If one of both forms is used in a fpcmake-file that doesn't work.

Re: [fpc-pascal] command and variable substitution in fpcmake

2007-08-01 Thread Marc Santhoff
Am Mittwoch, den 01.08.2007, 22:21 +0200 schrieb Peter Vreman: > >How can I make command execution work? ... > See the info page of make which functions are available. For shell > execution: > > PWD=$(shell pwd) Ah yes, that does it. Maybe the day will come when I like fpcmake. ;) With "info pag

[fpc-pascal] cprt0

2007-08-01 Thread Carsten Bager
In the cprt0.as file (used when linking with libc in Arm/Linux) line 74 says /* load argv mov a3, sp I think it should be /* load argv */ mov a3, sp Now the "mov a3, sp" instruction is included. Maybe this parameter is only used when starting C programs, but ...