333
-Wall ain't all (lemmy.world)
submitted 2 years ago by [email protected] to c/[email protected]
you are viewing a single comment's thread
view the rest of the comments
[-] [email protected] 9 points 2 years ago
[-] [email protected] 8 points 2 years ago

I would love to use golang for this but it’s standard library alone is bigger than the amount of available RAM.

[-] [email protected] 2 points 2 years ago

Interesting, since golang only includes the parts of the stdlib that are used in the executable binary.

[-] [email protected] 4 points 2 years ago

I just tested it and a simple hello world program still produces a 1.7MiB binary, while the device only has 512KiB of RAM.

package main

import "fmt"

func main() {
    fmt.Println("hello world")
}
[-] [email protected] 3 points 2 years ago

Strip the debug info, should be a lot smaller. Also check out TinyGo, it's meant for embedded devices

[-] [email protected] 1 points 2 years ago

BTW: what are you using instead to get small binaries/scripts?

[-] [email protected] 3 points 2 years ago
[-] [email protected] 2 points 2 years ago

Likely your C++ implementation also doesn't ship the full standard library. And you may even turn off exceptions and RTTI.

this post was submitted on 13 Oct 2023
333 points (95.9% liked)

Programmer Humor

36950 readers
206 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS