Edit dummy libc program

This commit is contained in:
Brian Carroll 2021-12-11 09:33:18 +00:00
parent 544caf0f43
commit e9343d8b2a

View file

@ -2,7 +2,6 @@
void main() {
printf("Hello, I am a C program and I use libc.\n");
printf("Would you like to use libc too, but just can't find the right path?\n");
printf("Well, simply compile me from build.rs using Zig's --global-cache-dir,\n");
printf("and have libc.a delivered right to your build directory!\n");
printf("If you compile me, you'll compile libc too. That's handy for cross-compilation including Wasm.\n");
printf("Use `zig build-exe` with `--global-cache-dir my/build/directory` to put libc.a where you want it.\n");
}