this post was submitted on 13 Oct 2023
327 points (95.8% liked)
Programmer Humor
32410 readers
153 users here now
Post funny things about programming here! (Or just rant about your favourite programming language.)
Rules:
- Posts must be relevant to programming, programmers, or computer science.
- No NSFW content.
- Jokes must be in good taste. No hate speech, bigotry, etc.
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
laughs in golang
I would love to use golang for this but it’s standard library alone is bigger than the amount of available RAM.
Interesting, since golang only includes the parts of the stdlib that are used in the executable binary.
I just tested it and a simple hello world program still produces a 1.7MiB binary, while the device only has 512KiB of RAM.
Strip the debug info, should be a lot smaller. Also check out TinyGo, it's meant for embedded devices
BTW: what are you using instead to get small binaries/scripts?
I'm currently using C++
Likely your C++ implementation also doesn't ship the full standard library. And you may even turn off exceptions and RTTI.