Test, please ignore .
regards,
--
Dimitrios Chr. Ioannidis
___
fpc-pascal maillist - fpc-pascal@lists.freepascal.org
https://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal
On 2022-09-12 21:12, Terry A. Haimann via fpc-pascal wrote:
Hello Terry,
I personally think it can't find the assembler. I did test this on my
desktop and it compiled w/o error.
No, but the installed assembler doesn't know the "softvfp" FPU type
apparently specified in the compilation opti
I personally think it can't find the assembler. I did test this on my
desktop and it compiled w/o error.
Below you will see the output of the compile as you suggested. Sorry
it is so long.
Terry H.
terry@libre-computer:~/Documents/fpc/Silly$ fpc -va Sqrt.pas
[0.000] Macro defined: LINUX
[0.000
On Mon, 12 Sep 2022, 02:59 Terry A. Haimann via fpc-pascal, <
fpc-pascal@lists.freepascal.org> wrote:
> Trying to compile a small test pascal program on a arm cpu. I beleive
> it is an a53. Libre Le Potato
>
> I am getting the following error:
>
> Error: Error while assembling exitcode 1
>
> Tha
Trying to compile a small test pascal program on a arm cpu. I beleive
it is an a53. Libre Le Potato
I am getting the following error:
Error: Error while assembling exitcode 1
Thanks in advance,
Terry H.
___
fpc-pascal maillist - fpc-pascal@lists
test plz ignore
___
fpc-pascal maillist - fpc-pascal@lists.freepascal.org
https://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal
On 10/25/16, Rolf Grunsky wrote:
> If (SFile.Mode = fmClosed) Then Rewrite(SFile);
Maybe cast SFile to TextRec(SFile)?
Bart
___
fpc-pascal maillist - fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal
I am trying to put together a short program to build a script file.
I declare the file as:
Uses sysutils;
{$H+I-}
Var
SFile : Text;
I then assign a name to the file :
Assign(SFile, SName);
Now, I only want to create the file if some conditions are met. Since
this is in a loop I thought I cou
plz ignore
--
Dimitrios Chr Ioannidis
___
fpc-pascal maillist - fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal
Op 28-07-16 om 10:38 schreef Christo:
The in_addr IP address type is a packed record of byte, so if an IP
address part larger than 255 is encountered in a string it will be
truncated when copied to the byte record using StrToHostAddr. This
probably means you have to use some other means of dete
Am Donnerstag, 28. Juli 2016, 10:26:32 schrieb Jonas Maebe:
> On 28/07/16 10:14, Koenraad Lelong wrote:
> > I need a way to test if an string containing an ipv4-address is really
> > an ipv4-address.
> > I tried
> > tmpAddress:=HostAddrToStr(StrToHostAddr(IPAddressStr));
> > writeln(tmpAddress);
>
On Thu, 2016-07-28 at 10:14 +0200, Koenraad Lelong wrote:
> When I enter 192.168.185.297 (i.e. not a valid ipv4 address) in
> IPAddressStr I get
> 192.168.185.41
> not the expected error-message.
>
> According to the rtl-manual :
>
> function StrToHostAddr(IP: AnsiString) : in_addr
> Description
On Thu, 28 Jul 2016 10:26:32 +0200
Jonas Maebe wrote:
> On 28/07/16 10:14, Koenraad Lelong wrote:
> > I need a way to test if an string containing an ipv4-address is really
> > an ipv4-address.
> > I tried
> > tmpAddress:=HostAddrToStr(StrToHostAddr(IPAddressStr));
> > writeln(tmpAddress);
> > i
The IP-Adress is a dword, but you can change, that it fits for you.
function str_getval( str : shortstring ) : longint;
var cod : longint;
begin
val( str , result , cod );
end;
function ip_from_string( ipstr : shortstring ; out error : boolean ) : dword;
var
c : char;
ipn , pointanz : longint
On 28/07/16 10:14, Koenraad Lelong wrote:
I need a way to test if an string containing an ipv4-address is really
an ipv4-address.
I tried
tmpAddress:=HostAddrToStr(StrToHostAddr(IPAddressStr));
writeln(tmpAddress);
if (tmpAddress='0.0.0.0') then
begin
writeln('Error in IP-address');
IPAd
Hi,
I need a way to test if an string containing an ipv4-address is really
an ipv4-address.
I tried
tmpAddress:=HostAddrToStr(StrToHostAddr(IPAddressStr));
writeln(tmpAddress);
if (tmpAddress='0.0.0.0') then
begin
writeln('Error in IP-address');
IPAddressStr:=tmpAddress;
end;
When I
test - ignore
___
fpc-pascal maillist - fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal
___
fpc-pascal maillist - fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal
pls ignore
___
fpc-pascal maillist - fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal
Please, ignore.
___
fpc-pascal maillist - fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal
___
fpc-pascal maillist - fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal
___
fpc-pascal maillist - fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal
___
fpc-pascal maillist - fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal
just test, ignore it
___
fpc-pascal maillist - fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal
Hello,
I could not pass the test suite option TEST_REMOTEOPT to the makefile. I
tried TEST_REMOTEOPT=xxx and "TEST_REMOTEOPT=xxx" both did not work on
Win32. I changed the makefile a bit and it works now for me. Don't know,
if this is a proper patch:
Index: tests/Makefile
===
___
fpc-pascal maillist - fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal
test
___
fpc-pascal maillist - fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal
___
fpc-pascal maillist - fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal
___
fpc-pascal maillist - fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal
___
fpc-pascal maillist - fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal
___
fpc-pascal maillist - fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal
___
fpc-pascal maillist - fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal
___
fpc-pascal maillist - fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal
test
___
fpc-pascal maillist - fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal
04-05-03 13.48, skrev Jonas Maebe följande:
>
> On 3 mei 2004, at 13:43, Olle Raab wrote:
>
>> But this means you need to have the MacOS X development tools
>> installed to
>> install fpc ?
>
> Yes, otherwise make and the gnu assembler are not available.
>
>> Can you use fpc from within any of
On 3 mei 2004, at 13:43, Olle Raab wrote:
But this means you need to have the MacOS X development tools
installed to
install fpc ?
Yes, otherwise make and the gnu assembler are not available.
Can you use fpc from within any of Apples development tools, e g from
ProjectBuilder
If someone writes a
04-05-03 09.51, skrev Jonas Maebe följande:
>
> On 3 mei 2004, at 02:03, Olle Raab wrote:
>
>>> I've created an install package for the Mac OS X version of FPC (of
>>> basically a snapshot of today, but it includes the docs).
>>
>> There is documentation ? If so where is it installed ?
>
> /De
On 3 mei 2004, at 02:03, Olle Raab wrote:
I've created an install package for the Mac OS X version of FPC (of
basically a snapshot of today, but it includes the docs).
There is documentation ? If so where is it installed ?
/Developer/Documentation/Free Pascal Compiler
Jonas
_
04-05-01 22.09, skrev Jonas Maebe följande:
> Hello,
>
> I've created an install package for the Mac OS X version of FPC (of
> basically a snapshot of today, but it includes the docs).
There is documentation ? If so where is it installed ?
> You can find
> it on the ftp site in the directory /
Hello,
I've created an install package for the Mac OS X version of FPC (of
basically a snapshot of today, but it includes the docs). You can find
it on the ftp site in the directory /fpc/beta/macosx-powerpc-1.9.3 (and
tomorrow on the mirrors as well). I would like to ask people using Mac
OS X
sorry list
just a test
___
fpc-pascal maillist - [EMAIL PROTECTED]
http://lists.freepascal.org/mailman/listinfo/fpc-pascal
Apologies for this little test (I got no mails from the 14th)
___
fpc-pascal maillist - [EMAIL PROTECTED]
http://lists.freepascal.org/mailman/listinfo/fpc-pascal
42 matches
Mail list logo