[fpc-devel] Lazarus IDE / Packages - SetAlternativeCompile for Before and After

2018-09-09 Thread Mathias
Hello Lazarus team, i build an AVR package for the Lazarus IDE. It is absolutely necessary, that I can enter something with compiler commands, with "afterwards". There comes in an avrdude call. This works, I made the following changes in Lazarus. It would be nice who the Lazarus team could

Re: [fpc-devel] Soft Float for AVR

2018-07-18 Thread Mathias
not know. mfg Mathias Am 18.07.2018 um 14:33 schrieb Dimitrios Chr. Ioannidis via fpc-devel: Hi,   AFAIU, the AVR architecture doesn't support floating point variables.   I want to ask if soft float support ( like ARM ) is planned. Does anyone work or plan to work on this ? regards

[fpc-devel] OpenGL 3.3 Core

2017-05-21 Thread Mathias
Is there an option with Lazarus own board means to activate the OpenGL 3.3 core mode. Or is it enough for me to do the following? OpenGLControl.OpenGLMajorVersion := 3; OpenGLControl.OpenGLMinorVersion := 3; Mfg Mathias ___ fpc-devel maillist

Re: [fpc-devel] Program too long ?

2016-01-14 Thread Mathias
The code is machine generated. I wanted to test which compiler is faster, the. Of FPC or C ++ C ++ could compile the code without errors. int main(){ std::cout << 0 << std::endl; std::cout << 1 << std::endl; mfg Mathias Am 13.01.2016 um 23:19 schrieb Jonas M

Re: [fpc-devel] Program too long ?

2016-01-14 Thread Mathias
; procedure p2; begin WriteLn(4); WriteLn(5); WriteLn(6); end; begin p0; p1; p2; end. mfg Mathias Am 14.01.2016 um 19:07 schrieb Jonas Maebe: Whether or not it can be compiled is unrelated to the language of course, but to the compiler. We indeed only develop FPC for use

[fpc-devel] Program too long ?

2016-01-13 Thread Mathias
I wanted a test following compile 1'000'000x WriteLn. programProject1; begin WriteLn(1); WriteLn(2); // ... WriteLn(100); end. Then breaks the compiler from the following error. $ fpc pascaltest.pas Free Pascal Compiler version 3.1.1

[fpc-devel] Type Helper and Array

2016-01-03 Thread Mathias
Does "Type Helper" only with standard types? The class itself it compiles without errors. But when you call, there is an error message. See link, there the code and the problem is described. ("Illegal qualifier") http://www.lazarusforum.de/viewtopic.php?f=

Re: [fpc-devel] Type Helper and Array

2016-01-03 Thread Mathias
Hello, I have created a bug report. http://mantis.freepascal.org/view.php?id=29321 mfg Mathias Am 03.01.2016 um 14:46 schrieb Ondrej Pokorny: On 03.01.2016 14:13, Sven Barth wrote: Please report a bug with a simple example that should compile with the error message you get at http