论坛


   修正EMB源调整导致采集失败的问题;删除2个失效的源
2026年4月23日     


2026年7月14日 星期二

fpc aarch64-win64版编译应用时遇到一个奇怪的bug - 秋·风

秋·风| 博客园 - 秋·风 |07:01:00

【摘要】fpc aarch64-win64版(fpc trunk)编译应用时遇到一个奇怪的bug。当使用{$codepage utf8}时:字符变量+'、'时执行到这行会SIGSEGV其中字符变量+单引号之间只有一个中文符号时就会出错,只有这2个条件同时成立才会出错。当不使用{$codepage ut...

在windows 11 on arm64系统编译lazarus出错的处理方法 - 秋·风

秋·风| 博客园 - 秋·风 |06:51:00

【摘要】在windows 11 on arm64系统编译lazarus时有2个问题需要处理:1、aarch64不支持fpdebug,编译时会报错2、控件virtualtreeview在aarch64 windows编译出错修复后使用Windows arm64版的gdb作为ide的调试器fpc trunk:  <a href="https://www.cnblogs....

2026年7月10日 星期五

修复TDBMemo只读不能使用Ctrl+C复制文字的Bug - 秋·风

秋·风| 博客园 - 秋·风 |11:15:00

【摘要】TDBMemo只读时不能使用Ctrl+C复制文字,只需按下面修改就可以。打开lazarus\lcl\include\dbmemo.inc找到: procedure TDBMemo.KeyDown(var Key: Word; Shift: TShiftState); begin inherited <a href="https://www.cnblogs.com/qiufeng2014/p/21344461" ...

2026年7月7日 星期二

freepascal打补丁后已支持windows 11 on arm64(lazarus aarch64 windows版也可以运行了) - 秋·风

秋·风| 博客园 - 秋·风 |00:58:00

【摘要】前几天在论坛看到老外解决了fpc不支持windows on arm64的问题,经测试,在x86_64的windows交叉编译的程序在arm64的windows 24H2运行正常。详细请看原帖:https://gitlab.com/freepascal.org/fpc/source/-/merge_r <a href="https://www.cnblogs.com/qiufe...

2026年7月5日 星期日

International Pascal Congress 2026: A Week of Innovation, Learning, and Community in Salamanca

Marco Cantu| Embarcadero Delphi Blogs |02:06:40

Last week, developers, researchers, educators, and software companies from around the world gathered in the historic city of Salamanca, Spain, for the International Pascal Congress (IPC) 2026. Hosted at the University of Salamanca, the event...

2026年7月1日 星期三

Kai 1.0.1 is Now Available

Marco Cantu| Embarcadero Delphi Blogs |17:25:36

Today Embarcadero released Kai 1.0.1, an update focused on quality, stability, and usability improvements for the first release of the company’s agentic AI engine. The Kai 1.0.1 version includes a set of quality improvements and...

I received an email about Appercept’s new blog series….

David Intersimone| Embarcadero Delphi Blogs |13:48:37

I received an new email (4:05?AM 2 hours ago) about Appercept’s new new blog series “Getting started with AWS in Delphi”. I have been a fan and user of the AWS SDK since I first...

2026年6月30日 星期二

MCP Beyond the Chat Window: Build Diagnostics in CI

Jan Krivanek, Yuliia Kovalova| ASP.NET Blog |17:00:00

A practical tour of the Model Context Protocol tools for .NET build diagnostics - the full Binlog MCP toolset, how those tools run inside a GitHub Actions workflow, and what the evaluation data says about the efficiency gains.The postMCP Beyond th...

2026年6月29日 星期一

.NET 8 and .NET 9 will reach End of Support on November 10, 2026

Rahul Bhandari (MSFT)| ASP.NET Blog |21:33:20

.NET 8 and .NET 9 will both reach end of support on November 10, 2026. Learn what this means and how to upgrade to .NET 10 (LTS).The post.NET 8 and .NET 9 will reach End of Support on November 10, 2026appeared first on.NET Blog.

SkiaSharp 4.0 is here: announcing the first stable release

Matthew Leibowitz| ASP.NET Blog |21:00:00

SkiaSharp 4.148.0 is the first stable release of SkiaSharp v4. Learn what is new, why you should be excited, and join the SkiaSharp live event on June 30.The postSkiaSharp 4.0 is here: announcing the first stable releaseappeared first on.NET Blog.

Packaging and Package Identity for .NET apps with WinApp CLI on Windows

Zachary Teutsch| ASP.NET Blog |17:00:00

Use the WinApp CLI to add identity to and package .NET desktop applications, enabling deeper integration to Windows and easier distribution.The postPackaging and Package Identity for .NET apps with WinApp CLI on Windowsappeared first on.NET Blog.

CnWizards_1.8.0.1361_Nightly.exe

Cnpack| Cnpack.org |08:15:00

+ [编码工具集] 增加书签跳转工具。 * [AI 辅助编码] 修正一处 Boolean 属性保存的问题。

2026年6月26日 星期五

查看libc.so.6的版本号 - 秋·风

秋·风| 博客园 - 秋·风 |12:10:00

【摘要】在终端执行: /lib/x86_64-linux-gnu/libc.so.6 --version 我这个libc.so.6版本是2.27。 GNU C Library (Ubuntu GLIBC 2.27-3ubuntu1.6) stable release version 2.27. Copyri <a href="https://www.cnblogs.com/qiufeng2014/p/20849419" target="_blank"...

2026年6月25日 星期四

14 Questions About Kai: What You Need to Know About The New Agentic AI Premium Add-on For RAD Studio

Hagop Panosian| Embarcadero Delphi Blogs |19:04:45

Kai is here, and it’s transforming RAD Studio into an agentic development environment, pairing best-in-class code suggestions with an AI agent that can generate, build, fix, and evolve your applications. Here are the answers to...

如何解析一个复杂的串

红鱼儿| 博客园_红鱼儿 |19:00:00

unit EarTagParser; interface uses System.SysUtils, System.Types, System.Generics.Collections; type TEarTagList = TList<string>; TEarTagParser = class