From 08dbf7a1adf0bb57547034b3ddc3daaa0e3c749f Mon Sep 17 00:00:00 2001 From: moozzyk Date: Thu, 1 Oct 2015 15:37:13 -0700 Subject: [PATCH] Adding architectures to build command --- makefile.shade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile.shade b/makefile.shade index a96d136..73bf2f4 100644 --- a/makefile.shade +++ b/makefile.shade @@ -85,7 +85,7 @@ var FULL_VERSION = '${PRODUCT_VERSION + "-" + E("DNX_BUILD_VERSION")}' var sources = string.Join(" ", sourceFiles); Exec(CLANG, - string.Format("{0} -fPIC -shared -o {1} -I{2}/include -I{2}/src -Wall -Wextra -Wno-unused-parameter -g --std=gnu89 -pedantic -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1", + string.Format("{0} -fPIC -shared -o {1} -I{2}/include -I{2}/src -Wall -Wextra -Wno-unused-parameter -g --std=gnu89 -pedantic -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -arch i386 -arch x86_64", sources, outputPath, libuvRoot)); }