diff --git a/docs/Embed.md b/docs/Embed.md
index 68369bbe25733bd6f123e7d27bd19ce8b3adbc68..fe476ab935b1a76343cd812c3093c9f8ac5cf8f9 100644
--- a/docs/Embed.md
+++ b/docs/Embed.md
@@ -27,8 +27,8 @@ To compile it, put `mongoose.c`, `mongoose.h` and `app.c` into one
 folder, start terminal on UNIX or Visual Studio command line prompt on Windows,
 and run the following command:
 
-    cc app.c mongoose.c -o app    # on Unix
-    cl app.c mongoose.c /TC /MD   # on Windows
+    cc app.c mongoose.c -pthread -o app    # on Unix
+    cl app.c mongoose.c /TC /MD            # on Windows
 
 When run, this simple application opens port 8080 and serves static files,
 CGI files and lists directory content in the current working directory.