Recent

Recent Posts

Pages: 1 [2] 3 4 ... 10
11
macOS / Mac OS X / Re: Debugger crashes with Apple Silicon code
« Last post by trev on Today at 05:37:55 am »
Same issue with a new install of Lazarus 3.2.
12
Other / Re: Copyrights Q
« Last post by domasz on Today at 04:56:59 am »
You might want to ask yourself a question- if you paid for the real thing just misplaced it, would it really be such a bad thing to download "backup" from the net? And then visit "amazon" and other "ebays".
13
macOS / Mac OS X / Re: Debugger crashes with Apple Silicon code
« Last post by trev on Today at 04:44:57 am »
Same issue with new install of Lazarus 2.2.2:

Code: [Select]
>> target create /Users/trev/Documents/laz_lnet_smtp/project1.app
(lldb) target create /Users/trev/Documents/laz_lnet_smtp/project1.app
Current executable set to '/Users/trev/Documents/laz_lnet_smtp/project1.app' (arm64).
>> settings clear target.run-args
(lldb) settings clear target.run-args
>> breakpoint set --func fpc_break_error -K false
(lldb) breakpoint set --func fpc_break_error -K false
Breakpoint 1: no locations (pending).
>> breakpoint set --func fpc_runerror -K false
WARNING:  Unable to resolve breakpoint to any actual locations.
(lldb) breakpoint set --func fpc_runerror -K false
Breakpoint 2: no locations (pending).
>> breakpoint set --func fpc_raiseexception -K false
WARNING:  Unable to resolve breakpoint to any actual locations.
(lldb) breakpoint set --func fpc_raiseexception -K false
Breakpoint 3: where = project1`FPC_RAISEEXCEPTION, address = 0x000000010001ae30
>> breakpoint command add 3
>> p/x $x0
>> p/x $x2
>> p ((char ***)$x0)[0][3]
>> p ((char **)$x0)[1]
>> DONE
>> version
(lldb) breakpoint command add 3
(lldb) version
>> breakpoint command add 2
>> p/x $x0
>> DONE
>> version
lldb-1500.0.404.7
Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4)
(lldb) breakpoint command add 2
(lldb) version
>> breakpoint command add 1
>> p/x $x0
>> DONE
>> version
lldb-1500.0.404.7
Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4)
(lldb) breakpoint command add 1
(lldb) version
>> process launch -n
lldb-1500.0.404.7
Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4)
(lldb) process launch -n
error: the platform is not currently connected
>> process kill
>> quit

Also using lldb on the command line works for the Lazarus 2.2.2 program - just a default form1 project1.app.

Curiously, a just compiled Lazarus main branch works without issue as below:

Code: [Select]
>> target create /Users/trev/tmp/project1.app
(lldb) target create /Users/trev/tmp/project1.app
Current executable set to '/Users/trev/tmp/project1.app' (arm64).
>> settings clear target.run-args
(lldb) settings clear target.run-args
>> breakpoint set --func fpc_break_error -K false
(lldb) breakpoint set --func fpc_break_error -K false
Breakpoint 1: no locations (pending).
>> breakpoint set --func fpc_runerror -K false
WARNING:  Unable to resolve breakpoint to any actual locations.
(lldb) breakpoint set --func fpc_runerror -K false
Breakpoint 2: no locations (pending).
>> breakpoint set --func fpc_raiseexception -K false
WARNING:  Unable to resolve breakpoint to any actual locations.
(lldb) breakpoint set --func fpc_raiseexception -K false
Breakpoint 3: where = project1`FPC_RAISEEXCEPTION, address = 0x000000010001b4d0
>> breakpoint command add 3
>> p/x $x0
>> p/x $x2
>> p ((char ***)$x0)[0][3]
>> p ((char **)$x0)[1]
>> DONE
>> version
(lldb) breakpoint command add 3
(lldb) version
>> breakpoint command add 2
>> p/x $x0
>> DONE
>> version
lldb-1500.0.404.7
Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4)
(lldb) breakpoint command add 2
(lldb) version
>> breakpoint command add 1
>> p/x $x0
>> DONE
>> version
lldb-1500.0.404.7
Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4)
(lldb) breakpoint command add 1
(lldb) version
>> process launch -n
lldb-1500.0.404.7
Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4)
(lldb) process launch -n
Process 56020 launched: '/Users/trev/tmp/project1.app/Contents/MacOS/project1' (arm64)
Process 56020 exited with status = 0 (0x00000000)
>> process kill
>> quit

Prof Googly was unhelpful.
14
General / web development using pascal
« Last post by Nate897 on Today at 02:04:05 am »
Good evening gentlemen,  8-)

I love the FPC. I recently found this interesting video on the Internet, regarding web development using the Pascal language.
Some historical background is discussed in there.
I found it really thought-provoking.

What are your thoughts on the subject?

Sorry if this is not the right place to post this, please move if it's not.
Please discuss.
15
General / Re: questionable function definition display.
« Last post by 440bx on Today at 01:35:28 am »
The font is BorlandTE, filename: BORTE.FON

It's proprietary to Borland and, I think they stopped distributing it long ago.  There is a very similar but not the same font called "Raize" which is available for free on the net.  BORTE.FON was distributed with Delphi 2 (and possibly some of the later versions.)

This place has some interesting fonts as well as comments and screenshots along with an easy to read article about programming fonts https://darinhiggins.com/2012/05/18/best-programming-font/

HTH.

ETA:

@dseligo provided you a link to a reply I gave recently to the same question from someone else.

17
General / Re: questionable function definition display.
« Last post by Nate897 on Today at 01:23:51 am »
You're welcome.

Thanks my man. What is that font you're using called? 

Thanks my dudes
18
General / Re: questionable function definition display.
« Last post by 440bx on Today at 12:58:42 am »
Put it on https://wiki.freepascal.org/UserSuppliedSchemeSettings ?
I just added it there.  Called it "Eclipse".

I couldn't find how to make a screenshot like the other ones that show more options. 
20
General / Re: questionable function definition display.
« Last post by 440bx on Today at 12:25:05 am »
that editor colour theme looks good. Did you make it yourself? Would you mind sharing it?

Sorry about this being unrelated to your topic.
 
Thank you.
Yes, I made that theme decades ago in my normal editor then I applied it to Delphi (v1) then to Lazarus (v1.8 ).  It's got a lot of miles on it.  My pleasure to share it, it's attached to this post.  I renamed it from "ExportedColors" to a bit of megalomania.

You're welcome.
Pages: 1 [2] 3 4 ... 10

TinyPortal © 2005-2018