From 1a09de095671257f7ee69e161452e525bea7ebd3 Mon Sep 17 00:00:00 2001 From: Cheng Zhao Date: Tue, 10 Dec 2013 23:54:46 -0800 Subject: [PATCH] The 'ARCHS' key should be an array. The ninja generator only supports setting the 'ARCHS' key as array, and ninja does not support '$(ARCHS_STANDARD_64_BIT)' too. The 'x86_64' is accepted by both ninja and xcodebuild, and is also used by node. --- brightray/brightray.gypi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/brightray/brightray.gypi b/brightray/brightray.gypi index 226524620ad1..e2deae347a8a 100644 --- a/brightray/brightray.gypi +++ b/brightray/brightray.gypi @@ -31,7 +31,7 @@ 'target_defaults': { 'xcode_settings': { 'ALWAYS_SEARCH_USER_PATHS': 'NO', - 'ARCHS': '$(ARCHS_STANDARD_64_BIT)', + 'ARCHS': ['x86_64'], 'CLANG_CXX_LANGUAGE_STANDARD': 'gnu++11', 'CLANG_CXX_LIBRARY': 'libstdc++', 'COMBINE_HIDPI_IMAGES': 'YES',