diff --git a/compiler/test_gen/src/helpers/dummy_libc_program.c b/compiler/test_gen/src/helpers/dummy_libc_program.c index 79ecd9ce07b..0d358ef2a71 100644 --- a/compiler/test_gen/src/helpers/dummy_libc_program.c +++ b/compiler/test_gen/src/helpers/dummy_libc_program.c @@ -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"); }