Just start it and there is a sample program (project1 with form1). Compile and give me a lot of error message:
Error: -macosx_version_min has been renamed to -macos_version_min
This is key I assume out of many; as I write a simple program per this tutorial
https://youtu.be/7qv4zqyG9jw?si=ypG_FW5Dxn7valPa&t=569i.e. the following code:
program project2;
var
myname : string;
begin
Write('Enter your name: ');
Readln(myname);
Writeln('Hello, ', myname);
Readln;
end.
Compile Project, Target: /Users/xxxxxx/Documents/Github/yyyyyyyy/_lazarus_tp_test2/project2: Success, Errors: 1, Warnings: 1
Warning: ld: warning: -multiply_defined is obsolete
Error: -macosx_version_min has been renamed to -macos_version_min
The MacOS X to macOS is long time ago. I suspect I might have an easier version and hence at least delete all under ./lazarus and retype the code. Still error. Not sure how to proceed.
Is there some setting I need to change perhaps?