Re: [fpc-pascal] Assembler output

2015-09-11 Thread Florian Klämpfl
Am 11.09.2015 um 19:05 schrieb José Mejuto: > Hello, > > Can anybody enlight me in how to: > > - Compile a program outputting assembler in intel format. > - Assemble the .s files in a final .exe > > I can get assembler in AT format using "-a" but if I add "-Anasmwin32" the > program is not

Re: [fpc-pascal] Assembler output

2015-09-11 Thread José Mejuto
El 11/09/2015 a las 20:18, Florian Klämpfl escribió: FPC dependents on a lot of tools like cross binutils which are not provided by FPC itself. So install nasm separately. Hello, Thank you, so the presence of nasm should make the compiler finish the compilation ? I was thinking that to

[fpc-pascal] got SIGSEGV with objfpc dialect

2015-09-11 Thread che fou
Hi the compiler ( fpc 3.1.1 ) crashs when compiling this . // {$mode objfpc} type generic pnode = object data : T; link : ^pnode; end; begin end. //

Re: [fpc-pascal] got SIGSEGV with objfpc dialect

2015-09-11 Thread leledumbo
> the compiler ( fpc 3.1.1 ) crashs when compiling this compiler bug, please report -- View this message in context: http://free-pascal-general.1045716.n5.nabble.com/got-SIGSEGV-with-objfpc-dialect-tp5722570p5722571.html Sent from the Free Pascal - General mailing list archive at Nabble.com.

[fpc-pascal] PostgreSQL notifications broken

2015-09-11 Thread Mark Morgan Lloyd
PostgreSQL has a useful feature where application programs can send notifications to each other, this tends to be much "cheaper" than periodically polling a table for changes. I've had this working on various CPUs and OSes in a number of programs since at least 2.2.4, but it appears to have

Re: [fpc-pascal] Assembler output

2015-09-11 Thread Sven Barth
Am 11.09.2015 19:06 schrieb "José Mejuto" : > > Hello, > > Can anybody enlight me in how to: > > - Compile a program outputting assembler in intel format. > - Assemble the .s files in a final .exe > > I can get assembler in AT format using "-a" but if I add "-Anasmwin32" the

Re: [fpc-pascal] Assembler output

2015-09-11 Thread José Mejuto
El 11/09/2015 a las 21:18, Sven Barth escribió: What is the reason you're trying to do this? Maybe we can help you a bit more if we know your motivation to pursue this. Hello, There are two motivations, the first one is to learn how to do it manually, take a .pas, get the .s and assemble

Re: [fpc-pascal] PostgreSQL notifications broken

2015-09-11 Thread Mark Morgan Lloyd
Michael Van Canneyt wrote: On Fri, 11 Sep 2015, Mark Morgan Lloyd wrote: PostgreSQL has a useful feature where application programs can send notifications to each other, this tends to be much "cheaper" than periodically polling a table for changes. I've had this working on various CPUs and

Re: [fpc-pascal] PostgreSQL notifications broken

2015-09-11 Thread Michael Van Canneyt
On Fri, 11 Sep 2015, Mark Morgan Lloyd wrote: PostgreSQL has a useful feature where application programs can send notifications to each other, this tends to be much "cheaper" than periodically polling a table for changes. I've had this working on various CPUs and OSes in a number of

[fpc-pascal] Assembler output

2015-09-11 Thread José Mejuto
Hello, Can anybody enlight me in how to: - Compile a program outputting assembler in intel format. - Assemble the .s files in a final .exe I can get assembler in AT format using "-a" but if I add "-Anasmwin32" the program is not compiled as "nasm is not found", only main.lpr is compiled,