From 67e22296d7b6bb82dc05d8716b29ed493726883c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Ibarra=20Corretg=C3=A9?= Date: Fri, 12 Feb 2016 09:27:26 +0100 Subject: [PATCH] doc: describe how to make release builds on Unix Refs: https://github.com/libuv/libuv/issues/550 PR-URL: https://github.com/libuv/libuv/pull/722 Reviewed-By: Ben Noordhuis --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index dfd24ba79..152db52c4 100644 --- a/README.md +++ b/README.md @@ -156,11 +156,16 @@ project tree manually: ### Unix -Run: +For Debug builds (recommended) run: $ ./gyp_uv.py -f make $ make -C out +For Release builds run: + + $ ./gyp_uv.py -f make + $ BUILDTYPE=Release make -C out + Run `./gyp_uv.py -f make -Dtarget_arch=x32` to build [x32][] binaries. ### OS X