* Clarify doc about where to compile from
* Update examples/stream/README.md
* Update examples/stream/README.md
* Update README.md
---------
Co-authored-by: AI @ Home <>
Co-authored-by: bobqianic <redacted>
make stream\r
```\r
\r
+Ensure you are at the root of the repo when running `make stream`. Not within the `examples/stream` dir\r
+as the libraries needed like `common-sdl.h` are located within `examples`. Attempting to compile within\r
+`examples/steam` means your compiler cannot find them and it gives an error it cannot find the file.\r
+\r
+```bash\r
+whisper.cpp/examples/stream$ make stream\r
+g++ stream.cpp -o stream\r
+stream.cpp:6:10: fatal error: common/sdl.h: No such file or directory\r
+ 6 | #include "common/sdl.h"\r
+ | ^~~~~~~~~~~~~~\r
+compilation terminated.\r
+make: *** [<builtin>: stream] Error 1\r
+```\r
+\r
## Web version\r
\r
This tool can also run in the browser: [examples/stream.wasm](/examples/stream.wasm)\r