惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

腾讯CDC
N
Netflix TechBlog - Medium
aimingoo的专栏
aimingoo的专栏
P
Proofpoint News Feed
F
Fortinet All Blogs
大猫的无限游戏
大猫的无限游戏
I
InfoQ
V
V2EX
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
有赞技术团队
有赞技术团队
G
Google Developers Blog
L
LangChain Blog
博客园_首页
M
MIT News - Artificial intelligence
H
Hackread – Cybersecurity News, Data Breaches, AI and More
月光博客
月光博客
IT之家
IT之家
量子位
宝玉的分享
宝玉的分享
S
SegmentFault 最新的问题
Stack Overflow Blog
Stack Overflow Blog
V
Visual Studio Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
雷峰网
雷峰网

AUR Newest Packages

AUR (en) - papagaia AUR (en) - linuxqq-clipsync-git AUR (en) - libtslitex-git AUR (en) - libtslitex-git AUR (en) - carton-appimage AUR (en) - veila-git AUR (en) - veila-bin AUR (en) - vigil-baseline AUR (en) - byedroid AUR (en) - neovim-base16-git AUR (en) - pirata AUR (en) - rpi-imager-git-non-root AUR (en) - python-fastapi-sso AUR (en) - zeed-bin AUR (en) - bclone-bin AUR (en) - dwl-git-azerty AUR (en) - auggie-bin AUR (en) - libspatialaudio-git AUR (en) - libspatialaudio AUR (en) - miniupnpd-iptables-legacy AUR (en) - miniupnpd-nft AUR (en) - jeeves-bin AUR (en) - opennow AUR (en) - rotki AUR (en) - kapi-bin AUR (en) - classfi-bin AUR (en) - classfi-git AUR (en) - classfi AUR (en) - giff-git AUR (en) - budget-tracker-bin
AUR (en) - serial-studio
2026-06-18 · via AUR Newest Packages

Latest Comments

taotieren commented on 2025-10-22 07:56 (UTC) (edited on 2025-10-22 08:00 (UTC) by taotieren)

mjkl commented on 2025-10-22 07:31 (UTC)

@taotieren

That's unfortunate serial-studio-bin uses Appimage, which I was trying to avoid.

For now I've taken the plunge and upgraded to Qt 6.10 after compiling against 6.9.2. Qt is not guaranteed to be ABI compatible, so it might break at some point. But as long as I don't use the multi-plot I should be good until a fix is released.

Also I noticed that this package does not install a .desktop entry (unlike serial-studio-bin)?

taotieren commented on 2025-10-22 01:30 (UTC)

mjkl commented on 2025-10-21 21:17 (UTC)

Build is currently broken, arch automatically updates qt6 to version 6.10.0.

However the latest release does not build against 6.10.0 due to a build flag enabling a non-existing function when building against > 6.10.0

See https://github.com/Serial-Studio/Serial-Studio/issues/321

This is already fixed in a later commit, but not released yet.

Could this package be downgraded to version 3.1.7, which seems to be the last version that is able to build against QT 6.10.0. For know i've downgraded qt to 6.9.2, however this make me unable to update my system, unfortunately.

uffe commented on 2024-12-20 12:10 (UTC)

@taotieren Thanks for your change - I just tested it - it works great

PS: I just had a look at your build - and just want to clarify a little detail. Even with my suggested change you can still have ninja as the selected "builder" (-G Ninja). As long as you invoke the builder through cmake it can be resource limited as I suggested. But there can be lots of other reasons for the removal of '-G Ninja' - I just wanted to give you some feedback on the change :-)

taotieren commented on 2024-12-20 08:43 (UTC)

@uffe Thanks, I've committed the changes to cmake, if local compilation is slow, you can add my repositories to download the pre-compiled packages.

uffe commented on 2024-12-11 08:11 (UTC)

Could you please do a little change to your PKGBUILD ?

Specificly change ninja -C build into cmake --build build

Reasoning:

With ninja it is unfortunately not possible to control its number of parallel builders with environment variables.

That is a feature that both make and cmake have.

The ninja folks refuse to make such feature.

When I aur-build serial-studio on my old laptop - ninja will spawn so many parallel builders that it runs out of memory during compile pass...

Normally you can do resource control of aur builds via makepkg.conf - that does unfortunately not work when invoking ninja directly - so every time I have to edit PKGBUILD - to prevent from running out of memory.

with the above suggested change the end result is the same - instead of invoking ninja directly - you just use cmake to invoke the (ninja) builder - but with cmake as the invoking frontend you (I) can just put limitations into my local makepkg.conf:

CMAKE_BUILD_PARALLEL_LEVEL=2 MAKEFLAGS="-j2"

The above will work for any aur build that use make and cmake (but not if you invoke ninja directly)

Thanks in advance :-)