...

Text file src/debug/buildinfo/testdata/notgo/README.md

Documentation: debug/buildinfo/testdata/notgo

     1notgo.base64 is a base64-encoded C hello world binary used to test
     2debug/buildinfo errors on non-Go binaries.
     3
     4The binary is base64 encoded to hide it from security scanners that might not
     5like it.
     6
     7Generate notgo.base64 on linux-amd64 with:
     8
     9$ cc -o notgo main.c
    10$ base64 notgo > notgo.base64
    11$ rm notgo
    12
    13The current binary was built with "gcc version 14.2.0 (Debian 14.2.0-3+build4)".
    14
    15TODO(prattmic): Ideally this would be built on the fly to better cover all
    16executable formats, but then we need to encode the intricacies of calling each
    17platform's C compiler.

View as plain text