NO

Author Topic: Memory usage  (Read 2156 times)

Offline CandCPlusPlus

  • Member
  • *
  • Posts: 57
Memory usage
« on: August 11, 2022, 05:03:06 PM »
Looking at the task manager, Pelles C only uses 20MB to 25MB of my computer's memory. What a lightweight IDE and that's even with a basic program compiled for debugging. That's tiny for an era where modern desktops have anywhere from 8GB to 64GB of RAM.

Offline frankie

  • Global Moderator
  • Member
  • *****
  • Posts: 2096
Re: Memory usage
« Reply #1 on: August 12, 2022, 11:50:59 AM »
PellesC IDE is coded using directly windows API, so there is no bloating code due to glue logic in large runtime libraries (C#, C++, etc.).
Most part of GUI and other functionalities are inside system DLL's (i.e. kernel32.lib, advapi32.lib, user32.lib, etc.) that are already loaded and shared with all programs (even those in C++ or C#, or any other HLL which always depends on the base API). They are simply linked with your C code.
It is better to be hated for what you are than to be loved for what you are not. - Andre Gide