From mboxrd@z Thu Jan 1 00:00:00 1970 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=permanent DNS error (domain: linux.intel.com, ip: 134.134.136.20, mailfrom: stephano.cetola@linux.intel.com) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by groups.io with SMTP; Wed, 19 Jun 2019 09:57:44 -0700 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga004.jf.intel.com ([10.7.209.38]) by orsmga101.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 19 Jun 2019 09:57:43 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.63,392,1557212400"; d="scan'208";a="311401251" Received: from pequod.jf.intel.com ([134.134.244.162]) by orsmga004.jf.intel.com with ESMTP; 19 Jun 2019 09:57:43 -0700 From: "Stephano Cetola" To: devel@edk2.groups.io Cc: jordan.l.justen@intel.com, afish@apple.com, ray.ni@intel.com, Stephano Cetola Subject: [PATCH] EmulatorPkg: update HOST_TOOLS to xcode5 Date: Wed, 19 Jun 2019 09:57:20 -0700 Message-Id: <20190619165720.4452-1-stephano.cetola@linux.intel.com> X-Mailer: git-send-email 2.17.1 The last compiler flag change was for Xcode 5.0, not Xcode 3.2. As such the HOST_TOOLS should be set to XCODE5. Also, fix a small typo. This fixes bug 447: https://bugzilla.tianocore.org/show_bug.cgi?id=447 Signed-off-by: Stephano Cetola --- EmulatorPkg/build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/EmulatorPkg/build.sh b/EmulatorPkg/build.sh index 558b65e88b..c5bf0bd655 100755 --- a/EmulatorPkg/build.sh +++ b/EmulatorPkg/build.sh @@ -60,9 +60,9 @@ case `uname` in CLANG_VER=$(clang -ccc-host-triple x86_64-pc-win32-macho 2>&1 >/dev/null) || true if [[ "$CLANG_VER" == *-ccc-host-triple* ]] then - # only older versions of Xcode support -ccc-host-tripe, for newer versions + # only older versions of Xcode support -ccc-host-triple, for newer versions # it is -target - HOST_TOOLS=XCODE32 + HOST_TOOLS=XCODE5 TARGET_TOOLS=XCODE5 else HOST_TOOLS=XCODE32 -- 2.17.1