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

推荐订阅源

Microsoft Security Blog
Microsoft Security Blog
J
Java Code Geeks
GbyAI
GbyAI
aimingoo的专栏
aimingoo的专栏
L
LangChain Blog
I
InfoQ
D
Docker
F
Fortinet All Blogs
Y
Y Combinator Blog
Martin Fowler
Martin Fowler
月光博客
月光博客
B
Blog
Engineering at Meta
Engineering at Meta
T
Tailwind CSS Blog
罗磊的独立博客
博客园_首页
G
Google Developers Blog
Stack Overflow Blog
Stack Overflow Blog
Recent Announcements
Recent Announcements
D
DataBreaches.Net
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
B
Blog RSS Feed
IT之家
IT之家
V
V2EX

AUR Newest Packages

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) - tmux-ai-titles 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) - orca-slicer
2026-06-24 · via AUR Newest Packages

lod commented on 2026-06-24 10:42 (UTC)

@gerliczkowalczuk if you interested, I also work on a build against system deps. Right now I got everything working except OpenSSL, CURl and wxWidgets. Upstream switched to the wxWidgets dev branch. wxWidgets should fix itself, when they move to the 3.4 stable later this year. I haven't really checked why Orca still depends on OpenSSL 1.1.1 yet.

I'll clean up the build today or tomorrow and if you want to, I will send you a mail for tests, feedback and help.

gerliczkowalczuk commented on 2026-06-24 10:33 (UTC)

@lod Thanks for working on the update. If you need any help with testing or packaging, feel free to let me know.

lod commented on 2026-06-24 10:10 (UTC) (edited on 2026-06-24 10:11 (UTC) by lod)

@gerliczkowalczuk I'm on it, I just waited if c2h5oh wants to do anything. No harm in waiting a couple of days ;)

gerliczkowalczuk commented on 2026-06-24 10:02 (UTC)

@c2h5oh, if you no longer have time to maintain this package (which I completely understand), I would be happy to be added as a co-maintainer so that I can help keep the package up to date.

lod commented on 2026-06-22 17:25 (UTC) (edited on 2026-06-22 18:28 (UTC) by lod)

@c2h5oh are you already cooking a 2.4 build?

keyres commented on 2026-06-22 17:11 (UTC)

The current script limits the number of threads (CMAKE_BUILD_PARALLEL_LEVEL) to free memory in gigabytes. With a longer running machine (at least my machine) this evaluates to 0 even though there were 12 GB of available memory, which causes the build to fail (as, somewhere down the line, some dependency complained that CMAKE_BUILD_PARALLEL_LEVEL must be a positive integer). I would suggest switching to looking at MemAvailable instead of MemFree. See also https://www.linuxatemyram.com/.

snailman153624 commented on 2026-06-08 02:32 (UTC)

So I've attempted to build this 3x on my machine, and it ends up killing the build, as well as pretty much every other non-critical process on my machine, due to "Out of memory."

The machine specs are:

Ryzen 5800h 16GB system RAM RTX3070 8GB GPU

I have two modifications in my makepkg.conf from stock/baseline: MAKEFLAGS="-j2" => "-j4" CFLAGS="-march=x86-64 -mtune=generic ..." => "-march=native ..."

I tried turning them off, and it still happens. In addition, it bogs the machine way down within about 5 seconds of starting the build.

zebulon commented on 2026-05-20 14:03 (UTC)

c2h5oh commented on 2026-04-17 23:26 (UTC)

@projectgus done, but quick test of both versions yields roughly the same CPU load and memory use for both versions. Not very scientific testing mind you, just checking htop every now and then during the build.

projectgus commented on 2026-04-17 22:31 (UTC) (edited on 2026-04-17 23:38 (UTC) by projectgus)

@c2h5oh Sorry to be a pain, but I think you have to apply one more change before CMAKE_BUILD_PARALLEL_LEVEL will work for the main orca-slicer build:

diff --git i/PKGBUILD w/PKGBUILD
index 4c8681b..3a05794 100644
--- i/PKGBUILD
+++ w/PKGBUILD
@@ -64,7 +64,7 @@ build() {
     -DBBL_INTERNAL_TESTING=0 \
     -DCMAKE_BUILD_TYPE=Release \
     -DCOLORED_OUTPUT=ON
-  ninja -C build
+  cmake --build build

   # add localizations
   ./scripts//run_gettext.sh --full

(Recommend also changing the same line for the deps build, for consistency. But this one is necessary as CMAKE_BUILD_PARALLEL_LEVEL causes CMake to generate a -j value for ninja internally - ninja doesn't know about this environment variable otherwise.)