News:

Download Pelles C here: http://www.pellesc.se

Main Menu

Recent posts

#31
Announcements / Re: Release Candidate #2 for v...
Last post by Pelle - April 01, 2026, 05:33:34 PM
Quote from: Marco on April 01, 2026, 12:06:04 PMI have tested PellesC 14 RC2 with WinContig, as well as with other projects that are currently under development. They all compile correctly and run without any issues.
Thanks, good to know!

Quote from: Marco on April 01, 2026, 12:06:04 PMI really appreciate the new warnings that have been introduced (or perhaps this new version is better at identifying potential errors during compilation).
I sometimes add new warnings. It could also be that the analyzer gets better at predicting things like "value ranges", now triggering a warning that was previously skipped because of "unknown" range.
#32
Beginner questions / Re: Unresolved external symbo...
Last post by Vortex - April 01, 2026, 03:30:21 PM
Hi wineggdrop,

Here is a stack allocation function based on chkstk from Pelles C. You can use it with your C project too.

https://forum.pellesc.de/index.php?topic=7282.0
#33
Announcements / Re: Release Candidate #2 for v...
Last post by TimoVJL - April 01, 2026, 12:54:35 PM
Same here, only some a define hell make testing hard.
#34
Announcements / Re: Release Candidate #2 for v...
Last post by Marco - April 01, 2026, 12:06:04 PM
I have tested PellesC 14 RC2 with WinContig, as well as with other projects that are currently under development. They all compile correctly and run without any issues.

I really appreciate the new warnings that have been introduced (or perhaps this new version is better at identifying potential errors during compilation).
#35
Beginner questions / Re: Unresolved external symbo...
Last post by Pelle - April 01, 2026, 08:47:44 AM
Raymond Chen at Microsoft recently blogged about this (in multiple posts).
I think it starts here: https://devblogs.microsoft.com/oldnewthing/20260311-00/?p=112134
#36
Beginner questions / Re: Unresolved external symbo...
Last post by TimoVJL - April 01, 2026, 07:17:23 AM
https://forum.pellesc.de/index.php?topic=7264.0

Compiler still needs support routines for bigger variables, SEH ...
#37
Beginner questions / Unresolved external symbol '_...
Last post by wineggdrop - April 01, 2026, 05:41:23 AM
when I try to build a windows application without CRT(Ignore Standard places Set), "Unresolved external symbol '__chkstk'" error will pop up.When I add a dummy __chkstk,error #3119: [asm] Redefinition of symbol '__chkstk'. will show up.any option to avoid that error?I am new to Pelles C.
#38
ARM64 discussions / Re: Not frustrated enough? Too...
Last post by Vortex - March 31, 2026, 11:05:27 PM
Hi John,

Another source to obtain Qemu for Windows :

https://qemu.weilnetz.de/w64/
#39
ARM64 discussions / Re: Not frustrated enough? Too...
Last post by John Z - March 31, 2026, 10:46:19 PM
Thanks Vortex!

Nice find - https://www.qemu.org/docs/master/system/target-arm.html

"QEMU can emulate both 32-bit and 64-bit Arm CPUs. Use the qemu-system-aarch64 executable to simulate a 64-bit Arm machine. You can use either qemu-system-arm or qemu-system-aarch64 to simulate a 32-bit Arm machine: in general, command lines that work for qemu-system-arm will behave the same when used with qemu-system-aarch64."

Guess Google AI not so much I  ;D

Not sure how hard to set up, but I'll be reading more.  Won't be windows on ARM but command line capability I'm supposing, unless a ARM Windows ISO can be involved.

John Z
#40
ARM64 discussions / Re: Not frustrated enough? Too...
Last post by Vortex - March 31, 2026, 09:37:36 PM
Qemu for Windows can emulate ARM64, ChatGPT says :

qemu-system-aarch64 \
  -machine virt \
  -cpu cortex-a72 \
  -m 4G \
  -bios QEMU_EFI.fd \
  -drive file=windows_arm.qcow2,if=virtio \
  -device virtio-net-device \
  -netdev user,id=n1

QuoteBut expect trial-and-error with:

Storage drivers
Display (often -device ramfb or virtio-gpu)