Jump to content
Lars Fosdal

Your RAD Studio 10.4 Sydney issues

Recommended Posts

Yesterday, I got a new one: "The LSP is not running...Attempting to launch it again" or something like this.

 

LSP never came back. I had to restart the IDE

Share this post


Link to post

One more issue: memory leak using inline variables (just arc types, like strings, arrays and interfaces) + anonymous method. Ex:

procedure TForm1.FormCreate(Sender: TObject);
begin
  var S: string := 'Test leak';
  TThread.Queue(nil,
    procedure()
    begin
      Showmessage(S);
    end);
end;

The report:

image.png.e6bd00b2aed2cef3b0c18ad39dc5b00d.png

Edited by vfbb

Share this post


Link to post

10.4 does not appear to be recognising the Browsing Path.

For instance, in 10.4 I have to add units within $(BDS)\SOURCE\RTL\SYS to the uses clause, whereas in previous versions (coming from 10.2) that was not required.

Is this a known issue?

Share this post


Link to post
2 hours ago, Fintan said:

10.4 does not appear to be recognising the Browsing Path.

For instance, in 10.4 I have to add units within $(BDS)\SOURCE\RTL\SYS to the uses clause, whereas in previous versions (coming from 10.2) that was not required.

Is this a known issue?

The browsing path works fine. It just not work when the Code Insight is completing in background, then the Ctrl + Click may not work. But while this, you can simple click in the unit name in uses, and press Ctrl + Enter.

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×