• @gredo
    link
    91 year ago

    laughs in golang

    • qazOP
      link
      81 year ago

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

      • @gredo
        link
        21 year ago

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

        • qazOP
          link
          41 year 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]
            link
            fedilink
            31 year ago

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

      • @gredo
        link
        11 year ago

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

        • qazOP
          link
          31 year ago

          I’m currently using C++

          • @mkwt
            link
            211 months ago

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